bilingual-jekyll-resume-theme 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/analytics-body.html +28 -0
  3. data/_includes/analytics-head.html +41 -0
  4. data/_includes/ar-date.html +9 -0
  5. data/_includes/hreflang.html +45 -0
  6. data/_includes/main-head.html +2 -0
  7. data/_includes/print-social-links.html +76 -0
  8. data/_includes/resume-head-ar.html +14 -0
  9. data/_includes/resume-head-en.html +13 -0
  10. data/_includes/resume-section-ar.html +366 -0
  11. data/_includes/resume-section-en.html +366 -0
  12. data/_includes/shared-head.html +14 -0
  13. data/_includes/social-links.html +138 -0
  14. data/_includes/vendors/lineicons-v4.0/envelope.svg +8 -0
  15. data/_includes/vendors/lineicons-v4.0/phone.svg +13 -0
  16. data/_includes/vendors/lineicons-v4.0/postcard.svg +14 -0
  17. data/_includes/vendors/lineicons-v5.0/dev.svg +3 -0
  18. data/_includes/vendors/lineicons-v5.0/dribbble-symbol.svg +3 -0
  19. data/_includes/vendors/lineicons-v5.0/facebook.svg +3 -0
  20. data/_includes/vendors/lineicons-v5.0/flickr.svg +4 -0
  21. data/_includes/vendors/lineicons-v5.0/github.svg +3 -0
  22. data/_includes/vendors/lineicons-v5.0/globe-1.svg +3 -0
  23. data/_includes/vendors/lineicons-v5.0/instagram.svg +4 -0
  24. data/_includes/vendors/lineicons-v5.0/linkedin.svg +3 -0
  25. data/_includes/vendors/lineicons-v5.0/medium-alt.svg +3 -0
  26. data/_includes/vendors/lineicons-v5.0/pinterest.svg +3 -0
  27. data/_includes/vendors/lineicons-v5.0/telegram.svg +3 -0
  28. data/_includes/vendors/lineicons-v5.0/whatsapp.svg +3 -0
  29. data/_includes/vendors/lineicons-v5.0/x.svg +3 -0
  30. data/_includes/vendors/lineicons-v5.0/youtube.svg +3 -0
  31. data/_layouts/default.html +42 -1
  32. data/_layouts/resume-ar.html +167 -0
  33. data/_layouts/resume-en.html +167 -0
  34. data/_sass/_all-pages.scss +51 -0
  35. data/_sass/_base.scss +68 -0
  36. data/_sass/_layout.scss +78 -0
  37. data/_sass/_mixins.scss +111 -0
  38. data/_sass/_normalize.scss +379 -0
  39. data/_sass/_profile.scss +75 -0
  40. data/_sass/_resume-rtl.scss +69 -0
  41. data/_sass/_resume.scss +347 -0
  42. data/_sass/_variables.scss +33 -0
  43. data/assets/css/cv-ar.scss +19 -0
  44. data/assets/css/cv.scss +16 -0
  45. data/assets/css/main.scss +6 -0
  46. data/assets/favicon/resume/about.txt +6 -0
  47. data/assets/favicon/resume/android-chrome-192x192.png +0 -0
  48. data/assets/favicon/resume/android-chrome-512x512.png +0 -0
  49. data/assets/favicon/resume/apple-touch-icon.png +0 -0
  50. data/assets/favicon/resume/favicon-16x16.png +0 -0
  51. data/assets/favicon/resume/favicon-32x32.png +0 -0
  52. data/assets/favicon/resume/favicon.ico +0 -0
  53. data/assets/favicon/resume/site.webmanifest +1 -0
  54. metadata +65 -6
  55. data/_layouts/post.html +0 -5
  56. /data/_layouts/{page.html → profile.html} +0 -0
@@ -0,0 +1,366 @@
1
+ {% comment %}
2
+ This include renders a single resume section based on the 'section_name' parameter.
3
+ Usage: {% include resume-section.html section_name="experience" %}
4
+ {% endcomment %}
5
+
6
+ {% if include.section_name == "experience" and site.resume_section.experience %}
7
+ <!-- begin Experience -->
8
+ <section class="content-section">
9
+ <header class="section-header">
10
+ <h2>Experience</h2>
11
+ </header>
12
+
13
+ {%- assign active_jobs = resume_data.experience | where: "active", true -%}
14
+ {%- assign groups = active_jobs | group_by: "company" -%}
15
+
16
+ {%- for group in groups -%}
17
+ <div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
18
+ <h3 class="resume-item-title" itemprop="name">{{ group.name }}</h3>
19
+
20
+ {%- assign roles = group.items | sort: "startdate" | reverse -%}
21
+ {%- for role in roles -%}
22
+ <h4 class="resume-item-details" itemprop="description">
23
+ {{ role.position }} &bull;
24
+ {%- if role.durations -%}
25
+ {%- for time in role.durations -%} {{ time.duration }} {%- endfor -%}
26
+ {%- else -%}
27
+ {{ role.startdate | date: '%b %Y' }} &mdash;
28
+ {%- if role.enddate and role.enddate != 'Present' -%}
29
+ {{ role.enddate | date: '%b %Y' }}
30
+ {%- else -%}
31
+ Present
32
+ {%- endif -%}
33
+ {%- endif -%}
34
+ {%- if role.location -%}
35
+ &bull; {{ role.location }}
36
+ {%- endif -%}
37
+ </h4>
38
+
39
+ {%- if site.enable_summary == true and role.summary -%}
40
+ <div class="resume-item-copy">{{ role.summary }}</div>
41
+ {%- endif -%}
42
+ {%- endfor -%}
43
+ </div><!-- end of grouped resume-item -->
44
+ {%- endfor -%}
45
+ </section>
46
+ <!-- end Experience -->
47
+
48
+
49
+ {% elsif include.section_name == "education" and site.resume_section.education %}
50
+ <!-- begin Education -->
51
+ <section class="content-section">
52
+ <header class="section-header">
53
+ <h2>Education</h2>
54
+ </header>
55
+
56
+ {% for education in resume_data.education %}
57
+ {% if education.active == true %}
58
+ <div class="resume-item" itemscope itemprop="alumniOf" itemtype="http://schema.org/CollegeOrUniversity">
59
+ <h3 class="resume-item-title" itemprop="name">{{ education.uni }}</h3>
60
+ <h4 class="resume-item-details group" itemprop="description">{{ education.degree }} &bull; {{ education.year }} &bull; {{ education.location }}</h4>
61
+
62
+ {% if education.award %}
63
+ <h5 class="resume-item-details award-title" itemprop="description">{{ education.award }}</h5>
64
+ {% endif %}
65
+
66
+ <div class="resume-item-copy" itemprop="description">
67
+ <ul class="resume-item-list">
68
+ {% for award in education.awards %}
69
+ <li>{{ award.award }}</li>
70
+ {% endfor %}
71
+ </ul>
72
+ </div>
73
+
74
+ {% if education.summary %}
75
+ <p class="resume-item-copy">{{ education.summary }}</p>
76
+ {% endif %}
77
+ </div>
78
+ {% endif %}
79
+ {% endfor %}
80
+ </section>
81
+ <!-- end Education -->
82
+
83
+ {% elsif include.section_name == "certifications" and site.resume_section.certifications %}
84
+ <!-- begin Licenses & Certifications -->
85
+ <section class="content-section">
86
+ <header class="section-header">
87
+ <h2>Licenses & Certifications</h2>
88
+ </header>
89
+
90
+ {% for certification in resume_data.certifications %}
91
+ {% if certification.active == true %}
92
+ <div class="resume-item">
93
+ <h3 class="resume-item-title" itemprop="award">{{ certification.name }}</h3>
94
+ <h4 class="resume-item-details">
95
+ {{ certification.issuing_organization }} &bull; {{ certification.issue_date | date: '%b %d, %Y' }}
96
+ {% if certification.expiration %} &mdash; {{ certification.expiration | date: '%b %d, %Y' }} {% endif %}
97
+ &bull;
98
+ {% if certification.credential_id %}
99
+ <span class="resume-item-copy-license-cert-id">Credential ID:
100
+ {% if certification.credential_url %}
101
+ <a href="{{ certification.credential_url }}" target="_blank" rel="noopener nofollow noreferrer">{{ certification.credential_id }}</a>
102
+ <span class="print-only-inline">&nbsp;({{ certification.credential_url }})</span>
103
+ </span>
104
+ {% else %}
105
+ {{ certification.credential_id }}
106
+ {% endif %}
107
+ {% endif %}
108
+ </h4>
109
+ </div>
110
+ {% endif %}
111
+ {% endfor %}
112
+ </section>
113
+ <!-- end Licenses & Certifications -->
114
+
115
+ {% elsif include.section_name == "courses" and site.resume_section.courses %}
116
+ <!-- begin Courses -->
117
+ <section class="content-section">
118
+ <header class="section-header">
119
+ <h2>Courses</h2>
120
+ </header>
121
+
122
+ {% for course in resume_data.courses %}
123
+ {% if course.active == true %}
124
+ <div class="resume-item">
125
+ <h3 class="resume-item-title" itemprop="award">{{ course.name }}</h3>
126
+ <h4 class="resume-item-details">
127
+ {{ course.issuing_organization }} &bull; {{ course.startdate | date: '%b %d, %Y' }}
128
+ {% if course.enddate %} &mdash; {{ course.enddate | date: '%b %d, %Y' }} {% endif %}
129
+ </h4>
130
+
131
+ {% if site.enable_summary == true %}
132
+ <p class="resume-item-copy">{{ course.summary }}</p>
133
+ {% endif %}
134
+
135
+ {% if course.credential_id %}
136
+ <p class="resume-item-copy">Credential ID:
137
+ {% if course.credential_url %}
138
+ <a href="{{ course.credential_url }}" target="_blank" rel="noopener nofollow noreferrer">{{ course.credential_id }}</a>
139
+ <span class="print-only-inline">&nbsp;({{ course.credential_url }})</span>
140
+ {% else %}
141
+ {{ course.credential_id }}
142
+ {% endif %}
143
+ </p>
144
+ {% endif %}
145
+ </div>
146
+ {% endif %}
147
+ {% endfor %}
148
+ </section>
149
+ <!-- end Courses -->
150
+
151
+ {% elsif include.section_name == "volunteering" and site.resume_section.volunteering %}
152
+ <!-- begin Volunteering -->
153
+ <section class="content-section">
154
+ <header class="section-header">
155
+ <h2>Volunteering</h2>
156
+ </header>
157
+
158
+ {%- assign active_vol = resume_data.volunteering | where: "active", true -%}
159
+ {%- assign vgroups = active_vol | group_by: "company" -%}
160
+
161
+ {%- for vgroup in vgroups -%}
162
+ <div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
163
+ <h3 class="resume-item-title" itemprop="name">{{ vgroup.name }}</h3>
164
+
165
+ {%- assign vroles = vgroup.items | sort: "startdate" | reverse -%}
166
+ {%- for v in vroles -%}
167
+ <h4 class="resume-item-details" itemprop="description">
168
+ {{ v.position }} &bull;
169
+ {%- if v.durations -%}
170
+ {%- for time in v.durations -%} {{ time.duration }} {%- endfor -%}
171
+ {%- else -%}
172
+ {{ v.startdate | date: '%b %Y' }} &mdash;
173
+ {%- if v.enddate and v.enddate != 'Present' -%}
174
+ {{ v.enddate | date: '%b %Y' }}
175
+ {%- else -%}
176
+ Present
177
+ {%- endif -%}
178
+ {%- endif -%}
179
+ {%- if v.location -%}
180
+ &bull; {{ v.location }}
181
+ {%- endif -%}
182
+ </h4>
183
+
184
+ {%- if site.enable_summary == true and v.summary -%}
185
+ <div class="resume-item-copy">{{ v.summary }}</div>
186
+ {%- endif -%}
187
+ {%- endfor -%}
188
+ </div><!-- end of grouped volunteering item -->
189
+ {%- endfor -%}
190
+ </section>
191
+ <!-- end Volunteering -->
192
+
193
+ {% elsif include.section_name == "projects" and site.resume_section.projects %}
194
+ <!-- begin Projects -->
195
+ <section class="content-section">
196
+ <header class="section-header">
197
+ <h2>Projects</h2>
198
+ </header>
199
+
200
+ {% for project in resume_data.projects %}
201
+ {% if project.active == true %}
202
+ <div class="resume-item" itemscope itemtype="http://schema.org/CreativeWork">
203
+ <meta itemprop="creator" content="{{ site.name.first }} {{ site.name.middle }} {{ site.name.last }}" itemtype="http://schema.org/Person" />
204
+ <h3 class="resume-item-title" itemprop="name" style="display: inline-block;">
205
+ {% if project.url %}
206
+ <a href="{{ project.url }}" target="_blank" rel="noopener nofollow noreferrer" itemprop="url">{{ project.project }}</a>
207
+ {% else %}
208
+ {{ project.project }}
209
+ {% endif %}
210
+ </h3>
211
+
212
+ {% if project.url %}
213
+ <span class="print-only-inline" style="display: inline;">&nbsp;{{ project.url }}</span>
214
+ {% endif %}
215
+
216
+ <h4 class="resume-item-details" itemprop="description">{{ project.role }} &bull; {{ project.duration }}</h4>
217
+ <p class="resume-item-copy">{{ project.description }}</p>
218
+ </div>
219
+ {% endif %}
220
+ {% endfor %}
221
+ </section>
222
+ <!-- end Projects -->
223
+
224
+ {% elsif include.section_name == "skills" and site.resume_section.skills %}
225
+ <!-- begin Skills -->
226
+ <section class="content-section">
227
+ <header class="section-header">
228
+ <h2>Skills</h2>
229
+ </header>
230
+
231
+ {% for skill in resume_data.skills %}
232
+ {% if skill.active == true %}
233
+ <div class="resume-item">
234
+ <h4 class="resume-item-details">{{ skill.skill }}</h4>
235
+ <p class="resume-item-copy">{{ skill.description }}</p>
236
+ </div>
237
+ {% endif %}
238
+ {% endfor %}
239
+ </section>
240
+ <!-- end Skills -->
241
+
242
+ {% elsif include.section_name == "recognition" and site.resume_section.recognition %}
243
+ <!-- begin Recognition -->
244
+ <section class="content-section">
245
+ <header class="section-header">
246
+ <h2>Recognition</h2>
247
+ </header>
248
+
249
+ {% for recognition in resume_data.recognitions %}
250
+ {% if recognition.active == true %}
251
+ <div class="resume-item">
252
+ <h3 class="resume-item-title" itemprop="award">{{ recognition.award }}</h3>
253
+ <h4 class="resume-item-details">{{ recognition.organization }} &bull; {{ recognition.year }}</h4>
254
+ <p class="resume-item-copy">{{ recognition.summary }}</p>
255
+ </div>
256
+ {% endif %}
257
+ {% endfor %}
258
+ </section>
259
+ <!-- end Recognition -->
260
+
261
+ {% elsif include.section_name == "associations" and site.resume_section.associations %}
262
+ <!-- begin Associations -->
263
+ <section class="content-section">
264
+ <header class="section-header">
265
+ <h2>Associations</h2>
266
+ </header>
267
+
268
+ {% for association in resume_data.associations %}
269
+ {% if association.active == true %}
270
+ <div class="resume-item" itemscope itemprop="memberOf" itemtype="http://schema.org/Organization">
271
+ <h3 class="resume-item-title" itemprop="name" style="display: inline-block;">
272
+ {% if association.url %}
273
+ <a href="{{ association.url }}" target="_blank" rel="noopener nofollow noreferrer">{{ association.organization }}</a>
274
+ {% else %}
275
+ {{ association.organization }}
276
+ {% endif %}
277
+ </h3>
278
+
279
+ {% if association.url %}
280
+ <span class="print-only-inline" style="display: inline;">&nbsp;{{ association.url }}</span>
281
+ {% endif %}
282
+
283
+ <h4 class="resume-item-details" itemprop="description">{{ association.role }} &bull; {{ association.year }}</h4>
284
+ <p class="resume-item-copy">{{ association.summary }}</p>
285
+ </div>
286
+ {% endif %}
287
+ {% endfor %}
288
+ </section>
289
+ <!-- end Associations -->
290
+
291
+ {% elsif include.section_name == "interests" and site.resume_section.interests %}
292
+ <!-- begin Interests -->
293
+ <section class="content-section">
294
+ <header class="section-header">
295
+ <h2>Outside Interests</h2>
296
+ </header>
297
+
298
+ <div class="resume-item">
299
+ <ul class="resume-item-list">
300
+ {% for interest in resume_data.interests %}
301
+ <li>{{ interest.description }}</li>
302
+ {% endfor %}
303
+ </ul>
304
+ </div>
305
+ </section>
306
+ <!-- end Interests -->
307
+
308
+ {% elsif include.section_name == "languages" and site.resume_section.languages and site.resume_section.lang_header == false %}
309
+ <!-- begin Languages -->
310
+ <section class="content-section">
311
+ <header class="section-header">
312
+ <h2>Languages</h2>
313
+ </header>
314
+
315
+ {%- assign active_languages = resume_data.languages | where: "active", true -%}
316
+ <table class="languages-table">
317
+ <tbody>
318
+ {%- for lang in active_languages -%}
319
+ {%- assign mod = forloop.index0 | modulo: 2 -%}
320
+ {%- if mod == 0 -%}
321
+ <tr>
322
+ {%- endif -%}
323
+
324
+ <td class="lang-cell">
325
+ <p class="lang-entry">
326
+ <span class="resume-item-details">{{ lang.language }}</span>
327
+ &mdash;
328
+ <span class="resume-item-copy">{{ lang.description }}</span>
329
+ </p>
330
+ </td>
331
+
332
+ {%- if mod == 1 or forloop.last -%}
333
+ {%- if forloop.last and mod == 0 -%}
334
+ <td class="lang-cell"></td>
335
+ {%- endif -%}
336
+ </tr>
337
+ {%- endif -%}
338
+ {%- endfor -%}
339
+ </tbody>
340
+ </table>
341
+ </section>
342
+ <!-- end Languages -->
343
+
344
+ {% elsif include.section_name == "links" and site.resume_section.links %}
345
+ <!-- begin Links -->
346
+ <section class="content-section">
347
+ <header class="section-header">
348
+ <h2>Additional Links</h2>
349
+ </header>
350
+
351
+ <div class="resume-item">
352
+ <ul class="resume-item-list">
353
+ {% for link in resume_data.links %}
354
+ {% if link.active == true %}
355
+ <li>
356
+ <a href={{ link.url }} target="_blank" rel="noopener nofollow noreferrer" itemprop="url">{{ link.description }}</a>
357
+ <span class="print-only-inline">&nbsp;{{ link.url }}</span>
358
+ </li>
359
+ {% endif %}
360
+ {% endfor %}
361
+ </ul>
362
+ </div>
363
+ </section>
364
+ <!-- end Links -->
365
+
366
+ {% endif %}
@@ -0,0 +1,14 @@
1
+ <meta charset="UTF-8">
2
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, viewport-fit=cover">
4
+
5
+ <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
6
+ <link rel="icon" href="favicon.ico" type="image/x-icon">
7
+
8
+ <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
9
+
10
+ {% if page.noindex == true -%}
11
+ <meta name="robots" content="noindex noarchive nosnippet noimageindex">
12
+ {%- else -%}
13
+ <meta name="robots" content="all">
14
+ {%- endif -%}
@@ -0,0 +1,138 @@
1
+ {% if site.social_links.github %}
2
+ <!-- GitHub link -->
3
+ <li class="icon-link-item">
4
+ <a href="{{ site.social_links.github }}" class="icon-link" itemprop="sameAs" target="_blank" rel="noopener nofollow noreferrer">
5
+ {% include vendors/lineicons-v5.0/github.svg %}
6
+ </a>
7
+ </li>
8
+ {% endif %}
9
+
10
+
11
+ {% if site.social_links.linkedin %}
12
+ <!-- LinkedIn link -->
13
+ <li class="icon-link-item">
14
+ <a href="{{ site.social_links.linkedin }}" class="icon-link" itemprop="sameAs" target="_blank" rel="noopener nofollow noreferrer">
15
+ {% include vendors/lineicons-v5.0/linkedin.svg %}
16
+ </a>
17
+ </li>
18
+ {% endif %}
19
+
20
+
21
+ {% if site.social_links.telegram %}
22
+ <!-- Telegram link -->
23
+ <li class="icon-link-item">
24
+ <a href="{{ site.social_links.telegram }}" class="icon-link" itemprop="url" target="_blank" rel="noopener nofollow noreferrer">
25
+ {% include vendors/lineicons-v5.0/telegram.svg %}
26
+ </a>
27
+ </li>
28
+ {% endif %}
29
+
30
+
31
+ {% if site.social_links.twitter %}
32
+ <!-- Twitter link -->
33
+ <li class="icon-link-item">
34
+ <a href="{{ site.social_links.twitter }}" class="icon-link" itemprop="sameAs" target="_blank" rel="noopener nofollow noreferrer">
35
+ {% include vendors/lineicons-v5.0/x.svg %}
36
+ </a>
37
+ </li>
38
+ {% endif %}
39
+
40
+
41
+ {% if site.social_links.medium %}
42
+ <!-- Medium link -->
43
+ <li class="icon-link-item">
44
+ <a href="{{ site.social_links.medium }}" class="icon-link" itemprop="url" target="_blank" rel="noopener nofollow noreferrer">
45
+ {% include vendors/lineicons-v5.0/medium-alt.svg %}
46
+ </a>
47
+ </li>
48
+ {% endif %}
49
+
50
+
51
+ {% if site.social_links.dribbble %}
52
+ <!-- Dribbble link -->
53
+ <li class="icon-link-item">
54
+ <a href="{{ site.social_links.dribbble }}" class="icon-link" itemprop="sameAs" target="_blank" rel="noopener nofollow noreferrer">
55
+ {% include vendors/lineicons-v5.0/dribbble-symbol.svg %}
56
+ </a>
57
+ </li>
58
+ {% endif %}
59
+
60
+
61
+ {% if site.social_links.facebook %}
62
+ <!-- Facebook link -->
63
+ <li class="icon-link-item">
64
+ <a href="{{ site.social_links.facebook }}" class="icon-link" itemprop="sameAs" target="_blank" rel="noopener nofollow noreferrer">
65
+ {% include vendors/lineicons-v5.0/facebook.svg %}
66
+ </a>
67
+ </li>
68
+ {% endif %}
69
+
70
+
71
+ {% if site.social_links.instagram %}
72
+ <!-- Instagram link -->
73
+ <li class="icon-link-item">
74
+ <a href="{{ site.social_links.instagram }}" class="icon-link" itemprop="sameAs" target="_blank" rel="noopener nofollow noreferrer">
75
+ {% include vendors/lineicons-v5.0/instagram.svg %}
76
+ </a>
77
+ </li>
78
+ {% endif %}
79
+
80
+
81
+ {% if site.social_links.website %}
82
+ <!-- Website link -->
83
+ <li class="icon-link-item">
84
+ <a href="{{ site.social_links.website }}" class="icon-link" itemprop="url" target="_blank" rel="noopener nofollow noreferrer">
85
+ {% include vendors/lineicons-v5.0/globe-1.svg %}
86
+ </a>
87
+ </li>
88
+ {% endif %}
89
+
90
+
91
+ {% if site.social_links.whatsapp %}
92
+ <!-- Whatsapp link -->
93
+ <li class="icon-link-item">
94
+ <a href="{{ site.social_links.whatsapp }}" class="icon-link" itemprop="url" target="_blank" rel="noopener nofollow noreferrer">
95
+ {% include vendors/lineicons-v5.0/whatsapp.svg %}
96
+ </a>
97
+ </li>
98
+ {% endif %}
99
+
100
+
101
+ {% if site.social_links.devto %}
102
+ <!-- Devto link -->
103
+ <li class="icon-link-item">
104
+ <a href="{{ site.social_links.devto }}" class="icon-link" itemprop="url" target="_blank" rel="noopener nofollow noreferrer">
105
+ {% include vendors/lineicons-v5.0/dev.svg %}
106
+ </a>
107
+ </li>
108
+ {% endif %}
109
+
110
+
111
+ {% if site.social_links.flickr %}
112
+ <!-- Flickr link -->
113
+ <li class="icon-link-item">
114
+ <a href="{{ site.social_links.flickr }}" class="icon-link" itemprop="url" target="_blank" rel="noopener nofollow noreferrer">
115
+ {% include vendors/lineicons-v5.0/flickr.svg %}
116
+ </a>
117
+ </li>
118
+ {% endif %}
119
+
120
+
121
+ {% if site.social_links.pinterest %}
122
+ <!-- Pinterest link -->
123
+ <li class="icon-link-item">
124
+ <a href="{{ site.social_links.pinterest }}" class="icon-link" itemprop="url" target="_blank" rel="noopener nofollow noreferrer">
125
+ {% include vendors/lineicons-v5.0/pinterest.svg %}
126
+ </a>
127
+ </li>
128
+ {% endif %}
129
+
130
+
131
+ {% if site.social_links.youtube %}
132
+ <!-- Youtube link -->
133
+ <li class="icon-link-item">
134
+ <a href="{{ site.social_links.youtube }}" class="icon-link" itemprop="url" target="_blank" rel="noopener nofollow noreferrer">
135
+ {% include vendors/lineicons-v5.0/youtube.svg %}
136
+ </a>
137
+ </li>
138
+ {% endif %}
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="lni_lni-envelope" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
4
+ y="0px" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
5
+ <path d="M56,9.6H8c-3.4,0-6.3,2.8-6.3,6.3v32.4c0,3.4,2.8,6.3,6.3,6.3h48c3.4,0,6.3-2.8,6.3-6.3V15.8C62.3,12.4,59.4,9.6,56,9.6z
6
+ M56,14.1c0.1,0,0.2,0,0.3,0L32,29.7L7.7,14.1c0.1,0,0.2,0,0.3,0H56z M56,49.9H8c-1,0-1.8-0.8-1.8-1.8V18.5l23.4,15
7
+ c0.7,0.5,1.5,0.7,2.3,0.7c0.8,0,1.6-0.2,2.3-0.7l23.4-15v29.7C57.8,49.2,57,49.9,56,49.9z"/>
8
+ </svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="lni_lni-phone" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
4
+ y="0px" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
5
+ <g>
6
+ <path d="M48.6,60.9c-8.1,0-19.6-5.8-30.2-15.8C4,31.3-2.1,15.9,4.3,9.1c0.3-0.3,0.7-0.6,1.1-0.8l8.1-4.6c2.1-1.2,4.7-0.6,6.1,1.4
7
+ l5.9,8.4c0.7,1,1,2.2,0.7,3.4C26,18,25.3,19,24.3,19.7L20.8,22c2.7,3.9,10,13.6,21.6,20.5c0.1,0.1,0.2,0,0.2,0l2.5-3.4
8
+ c1.4-1.9,4.1-2.4,6.2-1.1l8.8,5.6c2.1,1.3,2.7,4,1.4,6.1l-4.8,7.7c-0.3,0.4-0.6,0.8-0.9,1.1C54,60.1,51.5,60.9,48.6,60.9z
9
+ M15.8,7.6C15.8,7.6,15.7,7.6,15.8,7.6l-8.2,4.6c-3.8,4.1,0.9,17.2,14,29.6c13.3,12.6,27,17.1,31.4,13.3l0,0c0,0,0,0,0,0l4.8-7.7
10
+ l-8.8-5.6c-0.1,0-0.2,0-0.2,0l-2.5,3.4c-1.4,1.9-4.1,2.4-6.1,1.2c-12.5-7.5-20.3-17.9-23.1-22c-0.7-1-0.9-2.2-0.7-3.3
11
+ c0.2-1.2,0.9-2.2,1.9-2.8l3.5-2.3l-5.8-8.3C15.9,7.7,15.8,7.6,15.8,7.6z"/>
12
+ </g>
13
+ </svg>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" id="lni_lni-postcard" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
4
+ y="0px" viewBox="0 0 64 64" style="enable-background:new 0 0 64 64;" xml:space="preserve">
5
+ <g>
6
+ <path d="M56,11.9H8c-3.4,0-6.2,2.8-6.2,6.2v27.7c0,3.4,2.8,6.2,6.2,6.2h48c3.4,0,6.2-2.8,6.2-6.2V18.2C62.2,14.7,59.4,11.9,56,11.9
7
+ z M57.8,45.8c0,1-0.8,1.8-1.8,1.8H8c-1,0-1.8-0.8-1.8-1.8V18.2c0-1,0.8-1.8,1.8-1.8h48c1,0,1.8,0.8,1.8,1.8V45.8z"/>
8
+ <path d="M32,20.9c-1.2,0-2.2,1-2.2,2.2v15.3c0,1.2,1,2.2,2.2,2.2c1.2,0,2.2-1,2.2-2.2V23.1C34.2,21.9,33.2,20.9,32,20.9z"/>
9
+ <path d="M11.6,33h8.9c1.2,0,2.2-1,2.2-2.2s-1-2.2-2.2-2.2h-8.9c-1.2,0-2.2,1-2.2,2.2S10.4,33,11.6,33z"/>
10
+ <path d="M52,20.9h-9.4c-1.5,0-2.6,1.2-2.6,2.6v9.4c0,1.4,1.2,2.6,2.6,2.6H52c1.4,0,2.6-1.2,2.6-2.6v-9.4C54.6,22,53.4,20.9,52,20.9
11
+ z M50.1,31h-5.7v-5.7h5.7V31z"/>
12
+ <path d="M23,36.1H11.6c-1.2,0-2.2,1-2.2,2.2s1,2.2,2.2,2.2H23c1.2,0,2.2-1,2.2-2.2S24.3,36.1,23,36.1z"/>
13
+ </g>
14
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.84839 10.0841C7.67419 9.968 7.52903 9.90994 7.35484 9.90994H6.65806V14.0616H7.35484C7.52903 14.0616 7.67419 14.0325 7.84839 13.8874C8.02258 13.7712 8.05161 13.597 8.05161 13.3648V10.5486C8.05161 10.3745 7.99355 10.2003 7.84839 10.0841ZM19.2 3.0293H4.8C3.8129 3.0293 3 3.8422 3 4.8293V19.2583C3 20.1583 3.8129 20.9712 4.8 20.9712H19.2581C20.2452 20.9712 21 20.1874 21 19.2293V4.8293C20.971 3.8422 20.1871 3.0293 19.2 3.0293ZM9.2129 13.3938C9.2129 14.1777 8.71935 15.3099 7.29677 15.3099H5.43871V8.66155H7.35484C8.77742 8.66155 9.27097 9.79381 9.27097 10.5777L9.2129 13.3938ZM13.1903 9.88091H11.071V11.4196H12.3774V12.6099H11.071V14.1486H13.1903V15.339H10.6935C10.2581 15.339 9.88064 15.0196 9.82258 14.5551V9.50349C9.82258 9.068 10.1419 8.69058 10.6065 8.63252H13.1903V9.88091ZM17.371 14.439C16.8484 15.6583 15.8903 15.4261 15.4548 14.439L13.9161 8.63252H15.2516L16.4419 13.1906L17.6323 8.66155H18.9387L17.371 14.439Z" fill="#323544"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.9835 2C6.46282 2 2 6.46281 2 11.9835C2 17.5041 6.46282 22 11.9835 22C17.5041 22 22 17.5041 22 11.9835C22 6.46281 17.5041 2 11.9835 2ZM20.4793 12.281C18.5289 12.1488 16.4793 12.3471 14.4628 12.843C14.1653 12.0496 13.8678 11.2893 13.5372 10.5289C15.6198 9.83471 17.5703 8.80992 19.2562 7.58678C20.0496 8.87603 20.4793 10.3967 20.4793 12.0165C20.5124 12.0826 20.4793 12.1818 20.4793 12.281ZM18.3636 6.36364C16.7769 7.55372 14.8926 8.5124 12.876 9.1405C11.8182 7.02479 10.6281 5.23967 9.37191 3.85124C10.1984 3.58678 11.0579 3.45455 11.9835 3.45455C14.5289 3.4876 16.8099 4.61157 18.3636 6.36364ZM7.91736 4.5124C9.17356 5.7686 10.3636 7.4876 11.4215 9.57025C8.80992 10.1983 6.13224 10.2975 3.71901 9.86777C4.34711 7.55372 5.86778 5.63636 7.91736 4.5124ZM3.4876 11.3223C4.57851 11.5537 5.70249 11.6529 6.82645 11.6529C8.54546 11.6529 10.3306 11.4215 12.0827 10.9587C12.4132 11.6859 12.7438 12.4463 13.0083 13.2397C10.0992 14.1653 7.52067 15.6198 5.47108 17.5041C4.24793 15.9835 3.4876 14.0661 3.4876 11.9835C3.4876 11.7521 3.4876 11.5537 3.4876 11.3223ZM6.52893 18.5289C8.41323 16.8099 10.8265 15.4545 13.5041 14.6281C13.6033 14.9587 13.7025 15.2893 13.8017 15.5868C14.2314 17.0744 14.562 18.562 14.7934 19.9835C13.9008 20.281 12.9752 20.4793 11.9835 20.4793C9.90083 20.5124 8.01654 19.7521 6.52893 18.5289ZM16.2149 19.3554C15.9835 18 15.6529 16.5785 15.2562 15.157C15.157 14.8264 15.0579 14.5289 14.9587 14.1983C16.7438 13.7686 18.595 13.6033 20.3141 13.7025C19.8182 16.1488 18.2645 18.1653 16.2149 19.3554Z" fill="#323544"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 2.53906C17.5229 2.53906 22 7.01621 22 12.5391C22 17.5304 18.3431 21.6674 13.5625 22.4176V15.4297H15.8926L16.3359 12.5391L13.5625 12.5387V10.6632C13.5625 10.657 13.5625 10.6509 13.5626 10.6447C13.5626 10.6354 13.5628 10.6262 13.5629 10.6169C13.578 9.84259 13.9742 9.10156 15.1921 9.10156H16.4531V6.64062C16.4531 6.64062 15.3087 6.44492 14.2146 6.44492C11.966 6.44492 10.4842 7.78652 10.4386 10.2193C10.4379 10.2578 10.4375 10.2965 10.4375 10.3355V12.5387H7.89844V15.4293L10.4375 15.4297V22.4172C5.65686 21.667 2 17.5304 2 12.5391C2 7.01621 6.47715 2.53906 12 2.53906Z" fill="#323544"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.6452 12.0003C10.6452 14.3877 8.70992 16.323 6.32261 16.323C3.9353 16.323 2 14.3877 2 12.0003C2 9.61304 3.9353 7.67773 6.32261 7.67773C8.70992 7.67773 10.6452 9.61304 10.6452 12.0003Z" fill="#323544"/>
3
+ <path d="M22 12.0003C22 14.3877 20.0647 16.323 17.6774 16.323C15.29 16.323 13.3548 14.3877 13.3548 12.0003C13.3548 9.61304 15.29 7.67773 17.6774 7.67773C20.0647 7.67773 22 9.61304 22 12.0003Z" fill="#323544"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 2.24902C6.51613 2.24902 2 6.70064 2 12.249C2 16.6361 4.87097 20.3781 8.87097 21.7329C9.3871 21.8297 9.54839 21.5071 9.54839 21.2813C9.54839 21.0555 9.54839 20.4103 9.51613 19.5393C6.74194 20.1845 6.16129 18.1845 6.16129 18.1845C5.70968 17.0555 5.03226 16.7329 5.03226 16.7329C4.12903 16.0877 5.06452 16.0877 5.06452 16.0877C6.06452 16.12 6.6129 17.12 6.6129 17.12C7.48387 18.6684 8.96774 18.2168 9.51613 17.9264C9.6129 17.2813 9.87097 16.8297 10.1613 16.5716C7.96774 16.3458 5.6129 15.4748 5.6129 11.6684C5.6129 10.5716 6.03226 9.70064 6.64516 9.02322C6.54839 8.79741 6.19355 7.76515 6.74194 6.37806C6.74194 6.37806 7.6129 6.11999 9.51613 7.41031C10.3226 7.18451 11.1613 7.05548 12.0323 7.05548C12.9032 7.05548 13.7742 7.15225 14.5484 7.41031C16.4516 6.15225 17.2903 6.37806 17.2903 6.37806C17.8387 7.73289 17.5161 8.79741 17.3871 9.02322C18.0323 9.70064 18.4194 10.6039 18.4194 11.6684C18.4194 15.4748 16.0645 16.3458 13.871 16.5716C14.2258 16.8942 14.5484 17.5393 14.5484 18.4426C14.5484 19.7974 14.5161 20.8619 14.5161 21.1845C14.5161 21.4426 14.7097 21.7329 15.1935 21.6361C19.129 20.3135 22 16.6039 22 12.1845C21.9677 6.70064 17.4839 2.24902 12 2.24902Z" fill="#323544"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.00312 12.1255C2.07025 17.59 6.52083 22.0001 12.0014 22.0001C17.5238 22.0001 22.0005 17.5224 22.0005 12.0002C22.0005 6.49245 17.5473 2.02384 12.0449 2.00038C12.0304 2.00013 12.0158 2 12.0012 2C11.9866 2 11.972 2.00013 11.9574 2.00038C6.49755 2.02389 2.07089 6.42415 2.00314 11.8733C2.00106 11.9151 2 11.9572 2 11.9996C2 12.0418 2.00105 12.0838 2.00312 12.1255ZM8.97906 8.97712C9.91568 8.83117 10.9326 8.75032 11.9996 8.75032C13.0679 8.75032 14.086 8.83136 15.0235 8.97764C15.1696 9.91466 15.2505 10.932 15.2505 11.9996C15.2505 13.0671 15.1696 14.0845 15.0235 15.0216C14.086 15.1678 13.0679 15.2489 11.9996 15.2489C10.9326 15.2489 9.91569 15.168 8.97906 15.0221C8.83291 14.0849 8.75196 13.0674 8.75196 11.9996C8.75196 10.9319 8.83291 9.91428 8.97906 8.97712ZM7.419 9.29819C7.30981 10.1594 7.25196 11.0661 7.25196 11.9996C7.25196 12.9331 7.30981 13.8398 7.419 14.701C6.8082 14.5418 6.25021 14.3524 5.75696 14.1391C4.976 13.8015 4.39155 13.4187 4.01306 13.0318C3.66763 12.6787 3.52335 12.3559 3.50265 12.072C3.50245 12.0481 3.50235 12.0242 3.50235 12.0002C3.50235 11.9758 3.50245 11.9514 3.50266 11.927C3.5234 11.6432 3.66769 11.3204 4.01306 10.9674C4.39155 10.5805 4.976 10.1978 5.75696 9.86009C6.25021 9.64683 6.8082 9.45746 7.419 9.29819ZM9.30032 7.4171C9.45948 6.80704 9.64869 6.24969 9.86173 5.75696C10.1994 4.976 10.5821 4.39155 10.969 4.01306C11.3419 3.64827 11.6811 3.50781 11.9761 3.50032L12.0014 3.50028L12.0263 3.50032C12.3214 3.5078 12.6606 3.64825 13.0335 4.01306C13.4203 4.39155 13.8031 4.976 14.1407 5.75696C14.3538 6.24981 14.5431 6.8073 14.7023 7.41753C13.8407 7.30824 12.9336 7.25032 11.9996 7.25032C11.0669 7.25032 10.1609 7.30808 9.30032 7.4171ZM16.5836 9.29907C17.1931 9.45816 17.7499 9.64723 18.2422 9.86009C19.0232 10.1978 19.6077 10.5805 19.9862 10.9674C20.3613 11.3509 20.4992 11.6987 20.4992 11.9996C20.4992 12.3005 20.3613 12.6483 19.9862 13.0318C19.6077 13.4187 19.0232 13.8015 18.2422 14.1391C17.7499 14.352 17.1931 14.5411 16.5836 14.7001C16.6927 13.8392 16.7505 12.9328 16.7505 11.9996C16.7505 11.0664 16.6927 10.16 16.5836 9.29907ZM14.7023 16.5817C14.5431 17.1919 14.3538 17.7494 14.1407 18.2422C13.8031 19.0232 13.4203 19.6077 13.0335 19.9861C12.65 20.3613 12.3021 20.4992 12.0012 20.4992C11.7003 20.4992 11.3525 20.3613 10.969 19.9862C10.5821 19.6077 10.1994 19.0232 9.86173 18.2422C9.64869 17.7495 9.45948 17.1922 9.30032 16.5821C10.1609 16.6911 11.0669 16.7489 11.9996 16.7489C12.9336 16.7489 13.8407 16.691 14.7023 16.5817ZM7.69311 16.3082C7.89575 17.2403 8.16319 18.0934 8.48491 18.8375C8.66253 19.2484 8.85983 19.6332 9.07661 19.9833C6.73603 19.1253 4.87777 17.2671 4.01951 14.9265C4.36866 15.1424 4.75227 15.3389 5.16168 15.5159C5.90633 15.8379 6.76016 16.1055 7.69311 16.3082ZM16.3095 16.3074C17.2411 16.1048 18.0938 15.8375 18.8375 15.5159C19.2488 15.3381 19.634 15.1406 19.9844 14.9236C19.1265 17.2657 17.2675 19.1252 14.9258 19.9835C15.1426 19.6333 15.3399 19.2484 15.5176 18.8375C15.8394 18.0932 16.1069 17.2399 16.3095 16.3074ZM19.9838 9.07529C19.6336 8.85838 19.2485 8.66098 18.8375 8.48327C18.0938 8.16171 17.2411 7.89437 16.3095 7.69177C16.1069 6.75934 15.8394 5.90596 15.5176 5.16168C15.3402 4.75137 15.1431 4.36698 14.9267 4.01722C17.2675 4.87548 19.1258 6.7342 19.9838 9.07529ZM7.69311 7.69102C6.76016 7.89372 5.90632 8.16132 5.16168 8.48327C4.75248 8.66019 4.36906 8.85663 4.02005 9.0724C4.87844 6.73282 6.73604 4.87536 9.0757 4.01737C8.85927 4.3671 8.66228 4.75144 8.48491 5.16168C8.16319 5.90577 7.89575 6.75888 7.69311 7.69102Z" fill="#323544"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.6672 12C8.6672 10.1591 10.1591 8.6664 12 8.6664C13.8409 8.6664 15.3336 10.1591 15.3336 12C15.3336 13.8409 13.8409 15.3336 12 15.3336C10.1591 15.3336 8.6672 13.8409 8.6672 12ZM6.86512 12C6.86512 14.836 9.164 17.1349 12 17.1349C14.836 17.1349 17.1349 14.836 17.1349 12C17.1349 9.164 14.836 6.86512 12 6.86512C9.164 6.86512 6.86512 9.164 6.86512 12ZM16.1382 6.66152C16.1381 6.89886 16.2084 7.13089 16.3401 7.32829C16.4719 7.52568 16.6593 7.67956 16.8785 7.77047C17.0977 7.86138 17.339 7.88525 17.5718 7.83904C17.8046 7.79283 18.0185 7.67862 18.1863 7.51087C18.3542 7.34311 18.4686 7.12934 18.515 6.89658C18.5614 6.66382 18.5377 6.42253 18.447 6.20322C18.3563 5.98392 18.2025 5.79644 18.0052 5.6645C17.808 5.53257 17.576 5.4621 17.3386 5.462H17.3382C17.02 5.46215 16.715 5.58856 16.49 5.81347C16.265 6.03837 16.1384 6.34339 16.1382 6.66152ZM7.96 20.1398C6.98504 20.0954 6.45512 19.933 6.10296 19.7958C5.63608 19.614 5.30296 19.3975 4.95272 19.0478C4.60248 18.698 4.38568 18.3652 4.20472 17.8983C4.06744 17.5463 3.90504 17.0162 3.86072 16.0413C3.81224 14.9872 3.80256 14.6706 3.80256 12.0001C3.80256 9.3296 3.81304 9.01384 3.86072 7.95888C3.90512 6.98392 4.06872 6.45488 4.20472 6.10184C4.38648 5.63496 4.60296 5.30184 4.95272 4.9516C5.30248 4.60136 5.63528 4.38456 6.10296 4.2036C6.45496 4.06632 6.98504 3.90392 7.96 3.8596C9.01408 3.81112 9.33072 3.80144 12 3.80144C14.6693 3.80144 14.9862 3.81192 16.0412 3.8596C17.0162 3.904 17.5452 4.0676 17.8982 4.2036C18.3651 4.38456 18.6982 4.60184 19.0485 4.9516C19.3987 5.30136 19.6147 5.63496 19.7965 6.10184C19.9338 6.45384 20.0962 6.98392 20.1405 7.95888C20.189 9.01384 20.1986 9.3296 20.1986 12.0001C20.1986 14.6706 20.189 14.9863 20.1405 16.0413C20.0961 17.0162 19.9329 17.5462 19.7965 17.8983C19.6147 18.3652 19.3982 18.6983 19.0485 19.0478C18.6987 19.3972 18.3651 19.614 17.8982 19.7958C17.5462 19.933 17.0162 20.0954 16.0412 20.1398C14.9871 20.1882 14.6705 20.1979 12 20.1979C9.32952 20.1979 9.01376 20.1882 7.96 20.1398ZM7.8772 2.06056C6.81264 2.10904 6.0852 2.27784 5.44992 2.52504C4.792 2.78032 4.23504 3.1228 3.67848 3.67848C3.12192 4.23416 2.78032 4.792 2.52504 5.44992C2.27784 6.0856 2.10904 6.81264 2.06056 7.8772C2.01128 8.94344 2 9.28432 2 12C2 14.7157 2.01128 15.0566 2.06056 16.1228C2.10904 17.1874 2.27784 17.9144 2.52504 18.5501C2.78032 19.2076 3.122 19.7661 3.67848 20.3215C4.23496 20.877 4.792 21.219 5.44992 21.475C6.0864 21.7222 6.81264 21.891 7.8772 21.9394C8.944 21.9879 9.28432 22 12 22C14.7157 22 15.0566 21.9887 16.1228 21.9394C17.1874 21.891 17.9144 21.7222 18.5501 21.475C19.2076 21.219 19.765 20.8772 20.3215 20.3215C20.8781 19.7658 21.219 19.2076 21.475 18.5501C21.7222 17.9144 21.8918 17.1874 21.9394 16.1228C21.9879 15.0558 21.9992 14.7157 21.9992 12C21.9992 9.28432 21.9879 8.94344 21.9394 7.8772C21.891 6.81256 21.7222 6.0852 21.475 5.44992C21.219 4.7924 20.8772 4.23504 20.3215 3.67848C19.7658 3.12192 19.2076 2.78032 18.5509 2.52504C17.9144 2.27784 17.1874 2.10824 16.1236 2.06056C15.0574 2.01208 14.7165 2 12.0008 2C9.28512 2 8.944 2.01128 7.8772 2.06056Z" fill="#323544"/>
3
+ <path d="M8.6672 12C8.6672 10.1591 10.1591 8.6664 12 8.6664C13.8409 8.6664 15.3336 10.1591 15.3336 12C15.3336 13.8409 13.8409 15.3336 12 15.3336C10.1591 15.3336 8.6672 13.8409 8.6672 12ZM6.86512 12C6.86512 14.836 9.164 17.1349 12 17.1349C14.836 17.1349 17.1349 14.836 17.1349 12C17.1349 9.164 14.836 6.86512 12 6.86512C9.164 6.86512 6.86512 9.164 6.86512 12ZM16.1382 6.66152C16.1381 6.89886 16.2084 7.13089 16.3401 7.32829C16.4719 7.52568 16.6593 7.67956 16.8785 7.77047C17.0977 7.86138 17.339 7.88525 17.5718 7.83904C17.8046 7.79283 18.0185 7.67862 18.1863 7.51087C18.3542 7.34311 18.4686 7.12934 18.515 6.89658C18.5614 6.66382 18.5377 6.42253 18.447 6.20322C18.3563 5.98392 18.2025 5.79644 18.0052 5.6645C17.808 5.53257 17.576 5.4621 17.3386 5.462H17.3382C17.02 5.46215 16.715 5.58856 16.49 5.81347C16.265 6.03837 16.1384 6.34339 16.1382 6.66152ZM7.96 20.1398C6.98504 20.0954 6.45512 19.933 6.10296 19.7958C5.63608 19.614 5.30296 19.3975 4.95272 19.0478C4.60248 18.698 4.38568 18.3652 4.20472 17.8983C4.06744 17.5463 3.90504 17.0162 3.86072 16.0413C3.81224 14.9872 3.80256 14.6706 3.80256 12.0001C3.80256 9.3296 3.81304 9.01384 3.86072 7.95888C3.90512 6.98392 4.06872 6.45488 4.20472 6.10184C4.38648 5.63496 4.60296 5.30184 4.95272 4.9516C5.30248 4.60136 5.63528 4.38456 6.10296 4.2036C6.45496 4.06632 6.98504 3.90392 7.96 3.8596C9.01408 3.81112 9.33072 3.80144 12 3.80144C14.6693 3.80144 14.9862 3.81192 16.0412 3.8596C17.0162 3.904 17.5452 4.0676 17.8982 4.2036C18.3651 4.38456 18.6982 4.60184 19.0485 4.9516C19.3987 5.30136 19.6147 5.63496 19.7965 6.10184C19.9338 6.45384 20.0962 6.98392 20.1405 7.95888C20.189 9.01384 20.1986 9.3296 20.1986 12.0001C20.1986 14.6706 20.189 14.9863 20.1405 16.0413C20.0961 17.0162 19.9329 17.5462 19.7965 17.8983C19.6147 18.3652 19.3982 18.6983 19.0485 19.0478C18.6987 19.3972 18.3651 19.614 17.8982 19.7958C17.5462 19.933 17.0162 20.0954 16.0412 20.1398C14.9871 20.1882 14.6705 20.1979 12 20.1979C9.32952 20.1979 9.01376 20.1882 7.96 20.1398ZM7.8772 2.06056C6.81264 2.10904 6.0852 2.27784 5.44992 2.52504C4.792 2.78032 4.23504 3.1228 3.67848 3.67848C3.12192 4.23416 2.78032 4.792 2.52504 5.44992C2.27784 6.0856 2.10904 6.81264 2.06056 7.8772C2.01128 8.94344 2 9.28432 2 12C2 14.7157 2.01128 15.0566 2.06056 16.1228C2.10904 17.1874 2.27784 17.9144 2.52504 18.5501C2.78032 19.2076 3.122 19.7661 3.67848 20.3215C4.23496 20.877 4.792 21.219 5.44992 21.475C6.0864 21.7222 6.81264 21.891 7.8772 21.9394C8.944 21.9879 9.28432 22 12 22C14.7157 22 15.0566 21.9887 16.1228 21.9394C17.1874 21.891 17.9144 21.7222 18.5501 21.475C19.2076 21.219 19.765 20.8772 20.3215 20.3215C20.8781 19.7658 21.219 19.2076 21.475 18.5501C21.7222 17.9144 21.8918 17.1874 21.9394 16.1228C21.9879 15.0558 21.9992 14.7157 21.9992 12C21.9992 9.28432 21.9879 8.94344 21.9394 7.8772C21.891 6.81256 21.7222 6.0852 21.475 5.44992C21.219 4.7924 20.8772 4.23504 20.3215 3.67848C19.7658 3.12192 19.2076 2.78032 18.5509 2.52504C17.9144 2.27784 17.1874 2.10824 16.1236 2.06056C15.0574 2.01208 14.7165 2 12.0008 2C9.28512 2 8.944 2.01128 7.8772 2.06056Z" fill="#323544"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.7065 3H4.34844C3.62264 3 3.04199 3.58065 3.04199 4.30645V19.6935C3.04199 20.3903 3.62264 21 4.34844 21H19.6485C20.3743 21 20.9549 20.4194 20.9549 19.6935V4.27742C21.013 3.58065 20.4323 3 19.7065 3ZM8.35491 18.3H5.71297V9.73548H8.35491V18.3ZM7.01942 8.54516C6.14846 8.54516 5.4807 7.84839 5.4807 7.00645C5.4807 6.16452 6.17749 5.46774 7.01942 5.46774C7.86136 5.46774 8.55813 6.16452 8.55813 7.00645C8.55813 7.84839 7.91942 8.54516 7.01942 8.54516ZM18.371 18.3H15.7291V14.1484C15.7291 13.1613 15.7001 11.8548 14.3356 11.8548C12.942 11.8548 12.7388 12.9581 12.7388 14.0613V18.3H10.0968V9.73548H12.6807V10.9258H12.7097C13.0872 10.229 13.9291 9.53226 15.2356 9.53226C17.9356 9.53226 18.4291 11.2742 18.4291 13.6548V18.3H18.371Z" fill="#323544"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.64516 6.32227C10.7742 6.32227 13.2903 8.87065 13.2903 11.9997C13.2903 15.1287 10.7419 17.6771 7.64516 17.6771C4.54839 17.6771 2 15.1287 2 11.9997C2 8.87065 4.54839 6.32227 7.64516 6.32227ZM16.6452 6.64485C18.1935 6.64485 19.4516 9.0642 19.4516 11.9997C19.4516 14.9674 18.1935 17.3545 16.6452 17.3545C15.0968 17.3545 13.8387 14.9352 13.8387 11.9997C13.8387 9.0642 15.0968 6.64485 16.6452 6.64485ZM21 7.22549C21.5484 7.22549 22 9.35452 22 11.9997C22 14.6448 21.5484 16.7739 21 16.7739C20.4516 16.7739 20 14.6448 20 11.9997C20 9.35452 20.4516 7.22549 21 7.22549Z" fill="#323544"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.24876 12.0294C2.31334 15.0323 3.70182 18.0353 6.05898 19.8436C6.80165 20.3925 7.6089 20.7154 8.44844 21.0706C8.09325 18.778 8.96508 16.4854 9.44944 14.2251C9.51402 13.9991 9.54631 13.7407 9.54631 13.4824C9.54631 13.1272 9.41715 12.772 9.32028 12.4169C9.22341 11.8356 9.28799 11.2221 9.54631 10.6732C9.9015 9.93052 10.741 9.3493 11.4837 9.63991C12.1618 9.89823 12.4201 10.8024 12.291 11.5127C12.1618 12.2554 11.7743 12.9012 11.5806 13.6116C11.3545 14.322 11.3868 15.1938 11.9035 15.6782C12.3878 16.1302 13.1628 16.1625 13.7763 15.9042C14.6804 15.5167 15.2616 14.6126 15.6168 13.7085C16.2626 12.0294 16.1335 9.89823 14.8096 8.67121C14.2607 8.12228 13.4857 7.76709 12.6462 7.63793C11.2254 7.4119 9.67547 7.83167 8.67447 8.86495C7.67348 9.89823 7.22142 11.4804 7.64119 12.8366C7.77035 13.2887 8.02867 13.7407 8.12554 14.1928C8.22241 14.6449 8.19012 15.2261 7.86722 15.549C7.83493 15.5813 7.80264 15.6136 7.73806 15.6459C7.67348 15.6782 7.57661 15.6136 7.51203 15.5813C6.89852 15.1938 6.41417 14.5803 6.12356 13.9345C5.21944 11.9648 5.6715 9.51075 7.09226 7.89625C8.51302 6.28175 10.8056 5.50678 12.9368 5.79739C14.9387 6.05571 16.9084 7.25045 17.748 9.09098C18.2646 10.1888 18.3615 11.4482 18.1678 12.6429C17.974 13.8699 17.4897 15.0324 16.6824 15.9688C15.8752 16.9052 14.7127 17.551 13.4857 17.6156C12.4847 17.6801 11.4191 17.3249 10.9025 16.4854C10.5796 18.2291 9.96608 19.9404 9.06195 21.4581C9.02966 21.5227 11.1285 21.9747 11.3223 21.9747C13.7117 22.1685 16.2626 21.232 18.1355 19.7467C23.3019 15.6459 22.7529 7.79938 17.6511 3.92458C15.0033 1.8903 11.8712 1.50282 8.77134 2.60069C7.83493 2.92359 6.9631 3.47252 6.15585 4.05374C4.86426 5.02243 3.83098 6.28175 3.15288 7.7348C2.47479 9.05869 2.21647 10.544 2.24876 12.0294Z" fill="#323544"/>
3
+ </svg>