File size: 109,705 Bytes
9bfdad6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>AddAgendaSlide_TestA</title>
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Akkurat+Mono+LL:wght@700&display=swap">
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap">
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Oswald:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap">
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap">
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roobert+PRO+TRIAL:wght@400;500&display=swap">
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #1a1a2e;
      color: #e0e0e0;
      padding: 40px 20px;
    }
    h1 {
      text-align: center;
      margin-bottom: 8px;
      font-size: 28px;
      color: #fff;
    }
    .meta {
      text-align: center;
      margin-bottom: 40px;
      color: #888;
      font-size: 14px;
    }
    .slide-container {
      margin: 0 auto 60px auto;
      max-width: 100%;
    }
    .slide-label {
      text-align: center;
      margin-bottom: 12px;
      font-size: 16px;
      font-weight: 600;
      color: #aaa;
    }
    .slide-wrapper {
      display: flex;
      justify-content: center;
      overflow-x: auto;
    }
    .slide {
      flex-shrink: 0;
      transform-origin: top left;
      box-shadow: 0 4px 24px rgba(0,0,0,0.5);
    }
    .images-section {
      max-width: 1400px;
      margin: 60px auto;
    }
    .images-section h2 {
      text-align: center;
      margin-bottom: 24px;
      color: #fff;
    }
    .images-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }
    .image-card {
      background: #16213e;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }
    .image-card img {
      width: 100%;
      height: 200px;
      object-fit: contain;
      background: #0f0f23;
      padding: 8px;
    }
    .image-label {
      padding: 8px 12px;
      font-size: 11px;
      color: #888;
      word-break: break-all;
    }
    @media (max-width: 1920px) {
      .slide {
        transform: scale(0.5);
        margin-bottom: -25%;
      }
      .slide-wrapper {
        max-height: 600px;
      }
    }
    @media (min-width: 1921px) {
      .slide {
        transform: scale(0.75);
        margin-bottom: -12%;
      }
    }
  </style>
</head>
<body>
  <h1>AddAgendaSlide_TestA</h1>
  <div class="meta">16 slide(s)</div>
  
    <div class="slide-container">
      <div class="slide-label">Slide 0 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:23" style="width: 1920.0px; height: 1080.0px; background-color: rgba(231,205,168,1.0); background-image: linear-gradient(rgba(231,205,168,1.0), rgba(231,205,168,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div class="ft" data-id="1:24" style="position: absolute; left: 200.0px; top: 792.0px; width: 1410.0px; height: 160.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 160.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: -3.5200000762939454px; line-height: 160.0px; text-align: left; white-space: nowrap; color: rgba(30,30,30,1.0)">Team handbook</div></div>
<div data-id="1:25" style="position: absolute; left: 0.0px; top: -5.0px; width: 77.0px; height: 1085.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
</div>
<div class="ft" data-id="1:26" style="position: absolute; left: 22.0px; top: 1052.0px; width: 319.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: left; text-transform: uppercase; color: rgba(255,242,223,1.0)">0000.00.00</div></div>
<div class="ft" data-id="1:27" style="position: absolute; left: 22.000024795532227px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(255,242,223,1.0)">ZACHT.STUDIO</div></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 1 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:28" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,242,223,1.0); background-image: linear-gradient(rgba(255,242,223,1.0), rgba(255,242,223,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:29" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<svg data-id="1:30" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div class="ft" data-id="1:31" style="position: absolute; left: 200.0px; top: 128.0px; width: 1520.0px; height: 819.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 76.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.6720000362396241px; line-height: 91.20000457763672px; text-align: left; color: rgba(0,0,0,1.0)">Welcome! 👋 This handbook is a compass that guides all our work — everything from who we are, what our values are, and more. We’re always evolving and improving so while this is new and probably missing things, that’s okay! We’re not perfect and we don’t expect anyone to be. The goal of this is to answer some questions you may have and give you with the tools you need to flourish. ✨</div></div>
<div class="ft" data-id="1:32" style="position: absolute; left: 22.0px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(38,38,38,0.5)">INTRO</div></div>
<div class="ft" data-id="1:33" style="position: absolute; left: 1787.0px; top: 1003.0px; width: 77.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">01</div></div>
<svg data-id="1:34" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 2 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:35" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,242,223,1.0); background-image: linear-gradient(rgba(255,242,223,1.0), rgba(255,242,223,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:36" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<svg data-id="1:37" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div data-id="1:38" style="position: absolute; left: 200.0px; top: 128.0px; width: 684.0px; height: 824.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border: 1.0px solid rgba(0,0,0,1.0);">
<div data-id="1:39" style="position: absolute; left: 24.0px; top: 24.0px; width: 636.0px; height: 635.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-image: linear-gradient(rgba(255,237,189,1.0) 0.0%, rgba(239,157,109,1.0) 100.0%); background-size: auto; background-position: 0 0; background-repeat: no-repeat;">
</div>
</div>
<div class="ft" data-id="1:40" style="position: absolute; left: 244.0px; top: 815.0px; width: 440.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: left; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">short caption goes here</div></div>
<div class="ft" data-id="1:41" style="position: absolute; left: 271.0px; top: 892.0px; width: 569.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">DATE</div></div>
<div data-id="1:42" style="position: absolute; left: 960.0px; top: 218.0px; width: 760.0px; height: 734.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:43" style="position: absolute; left: 0.0px; top: 0.0px; width: 569.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: left; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">FOUNDING STORY</div></div>
<div class="ft" data-id="1:44" style="position: absolute; left: 0.0px; top: 80.0px; width: 760.0px; height: 654.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 48.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.0560000228881836px; line-height: 57.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">We started with a vision for a better agency-client relationship and a funny name. <br>Our founding team—Zach, Dona, Chi, Nick, and Savannah—set the mold for company culture and built our initial North Star product. With that, we've scaled as a remote-first, four-day-workweek agency that collaborates seamlessly with our clients, who we love.</div></div>
</div>
<div class="ft" data-id="1:45" style="position: absolute; left: 22.0px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(38,38,38,0.5)">INTRO</div></div>
<div data-id="1:46" style="position: absolute; left: 391.0px; top: 410.0px; width: 301.0px; height: 120.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 8.0px; background-image: linear-gradient(rgba(255,255,255,0.4000000059604645), rgba(255,255,255,0.4000000059604645)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div class="ft" data-id="1:47" style="position: absolute; left: 44.0px; top: 44.0px; width: 213.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: left; white-space: nowrap; text-transform: uppercase; color: rgba(0,0,0,1.0)">INSERT IMAGE</div></div>
</div>
<div class="ft" data-id="1:48" style="position: absolute; left: 1787.0px; top: 1003.0px; width: 77.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">02</div></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 3 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:49" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,242,223,1.0); background-image: linear-gradient(rgba(255,242,223,1.0), rgba(255,242,223,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <svg data-id="1:50" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div data-id="1:51" style="position: absolute; left: 200.0px; top: 582.0px; width: 1000.0px; height: 370.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:52" style="position: absolute; left: -4.824369324711066e-16px; top: 0.0px; width: 569.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: left; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">MISSION</div></div>
<div class="ft" data-id="1:53" style="position: absolute; left: 0.0px; top: 80.0px; width: 1000.0px; height: 290.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 48.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.0560000228881836px; line-height: 57.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">At Zacht Studios, we believe in people first. We care about each other, our team as a whole, and the work that we do. We strive to leave a positive impression with our clients and, more importantly, each other.</div></div>
</div>
<div class="ft" data-id="1:54" style="position: absolute; left: 22.0px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(38,38,38,0.5)">WELCOME</div></div>
<div data-id="1:55" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:56" style="position: absolute; left: 1787.0px; top: 1003.0px; width: 77.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">03</div></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 4 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:57" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,242,223,1.0); background-image: linear-gradient(rgba(255,242,223,1.0), rgba(255,242,223,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <svg data-id="1:58" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div class="ft" data-id="1:59" style="position: absolute; left: 200.0px; top: 270.0px; width: 569.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: left; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">TEAM VALUES</div></div>
<div class="ft" data-id="1:60" style="position: absolute; left: 200.0px; top: 655.0px; width: 569.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: left; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">CLIENT VALUES</div></div>
<div class="ft" data-id="1:61" style="position: absolute; left: 200.0px; top: 353.0px; width: 838.0px; height: 58.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 48.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.0560000228881836px; line-height: 57.60000228881836px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">For ourselves and each other, we are</div></div>
<div class="ft" data-id="1:62" style="position: absolute; left: 200.0px; top: 738.0px; width: 838.0px; height: 58.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 48.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.0560000228881836px; line-height: 57.60000228881836px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">For clients, we are</div></div>
<div class="ft" data-id="1:63" style="position: absolute; left: 22.0px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(38,38,38,0.5)">INTRO</div></div>
<div data-id="1:64" style="position: absolute; left: 200.0px; top: 461.0px; width: 358.0px; height: 107.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 100.0px; border: 2.0px solid rgba(30,30,30,1.0);">
<div data-id="1:65" style="position: absolute; left: 44.0px; top: 32.0px; width: 270.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:66" style="position: absolute; left: 0.0px; top: 0.0px; width: 36.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 36.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.7920000171661377px; line-height: 43.20000076293945px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">🧱</div></div>
<div class="ft" data-id="1:67" style="position: absolute; left: 60.0px; top: 0.0px; width: 210.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.401782116788624px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.7128392220197234px; line-height: 38.88213922682962px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Collaborative</div></div>
</div>
</div>
<div data-id="1:68" style="position: absolute; left: 200.0px; top: 844.0px; width: 382.0px; height: 107.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 100.0px; border: 2.0px solid rgba(30,30,30,1.0);">
<div data-id="1:69" style="position: absolute; left: 44.0px; top: 32.0px; width: 294.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:70" style="position: absolute; left: 0.0px; top: 0.0px; width: 36.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 35.11053317083355px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.772431746500345px; line-height: 42.13264054908946px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">🖊️</div></div>
<div class="ft" data-id="1:71" style="position: absolute; left: 60.0px; top: 0.0px; width: 234.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 32.34906904274291px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.7116795343655822px; line-height: 38.81888353685763px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Detail-focused</div></div>
</div>
</div>
<div data-id="1:72" style="position: absolute; left: 610.0px; top: 844.0px; width: 266.0px; height: 107.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 100.0px; border: 2.0px solid rgba(30,30,30,1.0);">
<div data-id="1:73" style="position: absolute; left: 44.0px; top: 32.0px; width: 178.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:74" style="position: absolute; left: 0.0px; top: 0.0px; width: 36.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 35.11053317083355px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.772431746500345px; line-height: 42.13264054908946px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">↪️</div></div>
<div class="ft" data-id="1:75" style="position: absolute; left: 60.0px; top: 0.0px; width: 118.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 36.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.7920000171661377px; line-height: 43.20000076293945px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Flexible</div></div>
</div>
</div>
<div data-id="1:76" style="position: absolute; left: 904.0px; top: 844.0px; width: 399.0px; height: 107.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 100.0px; border: 2.0px solid rgba(30,30,30,1.0);">
<div data-id="1:77" style="position: absolute; left: 44.0px; top: 32.0px; width: 311.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:78" style="position: absolute; left: 0.0px; top: 0.0px; width: 36.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 36.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.7920000171661377px; line-height: 43.20000076293945px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">💬</div></div>
<div class="ft" data-id="1:79" style="position: absolute; left: 60.0px; top: 0.0px; width: 251.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 36.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.7920000171661377px; line-height: 43.20000076293945px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Communicative</div></div>
</div>
</div>
<div data-id="1:80" style="position: absolute; left: 586.0px; top: 461.0px; width: 320.0px; height: 107.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 100.0px; border: 2.0px solid rgba(30,30,30,1.0);">
<div data-id="1:81" style="position: absolute; left: 44.0px; top: 32.0px; width: 232.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:82" style="position: absolute; left: 0.0px; top: 0.0px; width: 36.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 36.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.7920000171661377px; line-height: 43.20000076293945px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">🌱</div></div>
<div class="ft" data-id="1:83" style="position: absolute; left: 60.0px; top: 0.0px; width: 172.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 36.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.7920000171661377px; line-height: 43.20000076293945px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Supportive</div></div>
</div>
</div>
<div data-id="1:84" style="position: absolute; left: 934.0px; top: 461.0px; width: 220.0px; height: 107.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 100.0px; border: 2.0px solid rgba(30,30,30,1.0);">
<div data-id="1:85" style="position: absolute; left: 44.0px; top: 32.0px; width: 132.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:86" style="position: absolute; left: 0.0px; top: 0.0px; width: 36.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 35.11053317083355px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.772431746500345px; line-height: 42.13264054908946px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">❤️</div></div>
<div class="ft" data-id="1:87" style="position: absolute; left: 60.0px; top: 0.0px; width: 72.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 36.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.7920000171661377px; line-height: 43.20000076293945px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Kind</div></div>
</div>
</div>
<div data-id="1:88" style="position: absolute; left: 1331.0px; top: 844.0px; width: 220.0px; height: 107.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 100.0px; border: 2.0px solid rgba(30,30,30,1.0);">
<div data-id="1:89" style="position: absolute; left: 44.0px; top: 32.0px; width: 132.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:90" style="position: absolute; left: 0.0px; top: 0.0px; width: 36.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 35.11053317083355px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.772431746500345px; line-height: 42.13264054908946px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">❤️</div></div>
<div class="ft" data-id="1:91" style="position: absolute; left: 60.0px; top: 0.0px; width: 72.0px; height: 43.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 36.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.7920000171661377px; line-height: 43.20000076293945px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Kind</div></div>
</div>
</div>
<div data-id="1:92" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:93" style="position: absolute; left: 1787.0px; top: 1003.0px; width: 77.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">04</div></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 5 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:94" style="width: 1920.0px; height: 1080.0px; background-color: rgba(231,205,168,1.0); background-image: linear-gradient(rgba(231,205,168,1.0), rgba(231,205,168,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div class="ft" data-id="1:95" style="position: absolute; left: 200.0px; top: 792.0px; width: 1410.0px; height: 160.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 160.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: -3.5200000762939454px; line-height: 160.0px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Tools</div></div>
<svg data-id="1:96" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div data-id="1:97" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 6 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:98" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,242,223,1.0); background-image: linear-gradient(rgba(255,242,223,1.0), rgba(255,242,223,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <svg data-id="1:99" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<svg data-id="1:100" style="position: absolute; left: 960.0px; top: 0.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div data-id="1:101" style="position: absolute; left: 200.0px; top: 753.0px; width: 711.0px; height: 199.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:102" style="position: absolute; left: 0.0px; top: 0.0px; width: 711.0px; height: 91.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 76.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.6720000362396241px; line-height: 91.20000457763672px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Communication</div></div>
<div class="ft" data-id="1:103" style="position: absolute; left: 0.0px; top: 131.0px; width: 680.0px; height: 68.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">We use a lot of different tools to get our work done. Short summary about how your team uses these tools.</div></div>
</div>
<div data-id="1:104" style="position: absolute; left: 1040.0px; top: 130.0px; width: 680.0px; height: 290.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:105" style="position: absolute; left: 0.0px; top: 0.0px; width: 680.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 60.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: -1.3200000286102296px; line-height: 72.0px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Meeting software</div></div>
<div class="ft" data-id="1:106" style="position: absolute; left: 0.0px; top: 104.0px; width: 680.0px; height: 186.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">Provide a brief description of your tool here and why your team uses it. It can consist a few sentences or a few paragraphs.<br>You can include a <span style="font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-size: 28.0px; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-decoration: underline">link</span> like this to help team members access resources easily.</div></div>
</div>
<div data-id="1:107" style="position: absolute; left: 1040.0px; top: 480.0px; width: 680.0px; height: 206.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:108" style="position: absolute; left: 0.0px; top: 0.0px; width: 680.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 60.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: -1.3200000286102296px; line-height: 72.0px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">File sharing software</div></div>
<div class="ft" data-id="1:109" style="position: absolute; left: 0.0px; top: 104.0px; width: 680.0px; height: 102.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">Provide a brief description of your tool here and why your team uses it. It can consist a few sentences or a few paragraphs.</div></div>
</div>
<div data-id="1:110" style="position: absolute; left: 1040.0px; top: 746.0px; width: 680.0px; height: 206.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:111" style="position: absolute; left: 0.0px; top: 0.0px; width: 680.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 60.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: -1.3200000286102296px; line-height: 72.0px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Messaging software</div></div>
<div class="ft" data-id="1:112" style="position: absolute; left: 0.0px; top: 104.0px; width: 680.0px; height: 102.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">Provide a brief description of your tool here and why your team uses it. It can consist a few sentences or a few paragraphs.</div></div>
</div>
<div class="ft" data-id="1:113" style="position: absolute; left: 22.0px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(38,38,38,0.5)">TOOLS</div></div>
<div data-id="1:114" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:115" style="position: absolute; left: 1787.0px; top: 1003.0px; width: 77.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">06</div></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 7 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:116" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,242,223,1.0); background-image: linear-gradient(rgba(255,242,223,1.0), rgba(255,242,223,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <svg data-id="1:117" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<svg data-id="1:118" style="position: absolute; left: 960.0px; top: 0.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div data-id="1:119" style="position: absolute; left: 200.0px; top: 753.0px; width: 711.0px; height: 199.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:120" style="position: absolute; left: 0.0px; top: 0.0px; width: 711.0px; height: 91.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 76.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.6720000362396241px; line-height: 91.20000457763672px; text-align: left; white-space: nowrap; color: rgba(0,0,0,0.10000000149011612)">Communication</div></div>
<div class="ft" data-id="1:121" style="position: absolute; left: 0.0px; top: 131.0px; width: 680.0px; height: 68.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">We use a lot of different tools to get our work done. Short summary about how your team uses these tools.</div></div>
</div>
<div data-id="1:122" style="position: absolute; left: 1040.0px; top: 275.0px; width: 680.0px; height: 290.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:123" style="position: absolute; left: 0.0px; top: 0.0px; width: 680.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 60.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: -1.3200000286102296px; line-height: 72.0px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Email client</div></div>
<div class="ft" data-id="1:124" style="position: absolute; left: 0.0px; top: 104.0px; width: 680.0px; height: 186.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">Provide a brief description of your tool here and why your team uses it. It can consist a few sentences or a few paragraphs.<br>You can include a <span style="font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-size: 28.0px; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-decoration: underline">link</span> like this to help team members access resources easily.</div></div>
</div>
<div class="ft" data-id="1:125" style="position: absolute; left: 22.0px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(38,38,38,0.5)">TOOLS</div></div>
<div data-id="1:126" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div data-id="1:127" style="position: absolute; left: 1040.0px; top: 605.0px; width: 680.0px; height: 347.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 8.0px; background-image: linear-gradient(rgba(255,237,189,1.0) 0.0%, rgba(239,157,109,1.0) 100.0%); background-size: auto; background-position: 0 0; background-repeat: no-repeat;">
<div data-id="1:128" style="position: absolute; left: 144.0px; top: 114.0px; width: 392.0px; height: 120.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 8.0px; background-image: linear-gradient(rgba(255,255,255,0.4000000059604645), rgba(255,255,255,0.4000000059604645)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div class="ft" data-id="1:129" style="position: absolute; left: 44.0px; top: 44.0px; width: 304.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: left; white-space: nowrap; text-transform: uppercase; color: rgba(0,0,0,1.0)">INSERT IMAGE HERE</div></div>
</div>
</div>
<div class="ft" data-id="1:130" style="position: absolute; left: 1787.0px; top: 1003.0px; width: 77.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">07</div></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 8 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:131" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,242,223,1.0); background-image: linear-gradient(rgba(255,242,223,1.0), rgba(255,242,223,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <svg data-id="1:132" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<svg data-id="1:133" style="position: absolute; left: 960.0px; top: 0.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div data-id="1:134" style="position: absolute; left: 200.0px; top: 753.0px; width: 711.0px; height: 199.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:135" style="position: absolute; left: 0.0px; top: 0.0px; width: 711.0px; height: 91.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 76.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.6720000362396241px; line-height: 91.20000457763672px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Design</div></div>
<div class="ft" data-id="1:136" style="position: absolute; left: 0.0px; top: 131.0px; width: 680.0px; height: 68.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">We use a lot of different tools to get our work done. Short summary about how your team uses these tools.</div></div>
</div>
<div data-id="1:137" style="position: absolute; left: 1040.0px; top: 662.0px; width: 680.0px; height: 290.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:138" style="position: absolute; left: 0.0px; top: 0.0px; width: 680.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 60.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: -1.3200000286102296px; line-height: 72.0px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Figma</div></div>
<div class="ft" data-id="1:139" style="position: absolute; left: 0.0px; top: 104.0px; width: 680.0px; height: 186.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">Provide a brief description of your tool here and why your team uses it. It can consist a few sentences or a few paragraphs.<br>You can include a <span style="font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-size: 28.0px; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-decoration: underline">link</span> like this to help team members access resources easily.</div></div>
</div>
<div class="ft" data-id="1:140" style="position: absolute; left: 22.0px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(38,38,38,0.5)">TOOLS</div></div>
<div data-id="1:141" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:142" style="position: absolute; left: 1787.0px; top: 1003.0px; width: 77.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">08</div></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 9 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:143" style="width: 1920.0px; height: 1080.0px; background-color: rgba(231,205,168,1.0); background-image: linear-gradient(rgba(231,205,168,1.0), rgba(231,205,168,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div class="ft" data-id="1:144" style="position: absolute; left: 200.0px; top: 792.0px; width: 1410.0px; height: 160.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 160.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: -3.5200000762939454px; line-height: 160.0px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Process</div></div>
<svg data-id="1:145" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div data-id="1:146" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 10 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:147" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,242,223,1.0); background-image: linear-gradient(rgba(255,242,223,1.0), rgba(255,242,223,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <svg data-id="1:148" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<svg data-id="1:149" style="position: absolute; left: 960.0px; top: 0.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div class="ft" data-id="1:150" style="position: absolute; left: 200.0px; top: 861.0px; width: 711.0px; height: 91.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 76.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.6720000362396241px; line-height: 91.20000457763672px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Time</div></div>
<div data-id="1:151" style="position: absolute; left: 1040.0px; top: 378.0px; width: 680.0px; height: 240.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:152" style="position: absolute; left: 0.0px; top: 0.0px; width: 680.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 60.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: -1.3200000286102296px; line-height: 72.0px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Work hours</div></div>
<div class="ft" data-id="1:153" style="position: absolute; left: 0.0px; top: 104.0px; width: 680.0px; height: 136.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">We all set our own work hours. I don't subscribe to the 9-to-5, so I don't expect it of anyone else. The hope is that we can all be online during most of the team meetings which are just one hour a week.</div></div>
</div>
<div data-id="1:154" style="position: absolute; left: 1040.0px; top: 678.0px; width: 680.0px; height: 274.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:155" style="position: absolute; left: 0.0px; top: 0.0px; width: 680.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 60.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: -1.3200000286102296px; line-height: 72.0px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Time-zone-conscious</div></div>
<div class="ft" data-id="1:156" style="position: absolute; left: 0.0px; top: 104.0px; width: 680.0px; height: 170.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">Not only do we all work in different places, but most of our clients are in a different time zone as well. When you suggest times to meet, please indicate time zones every time. If possible, include the client's own time zone as well.</div></div>
</div>
<div class="ft" data-id="1:157" style="position: absolute; left: 22.0px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(38,38,38,0.5)">PROCESS</div></div>
<div data-id="1:158" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:159" style="position: absolute; left: 1787.0px; top: 1003.0px; width: 77.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">10</div></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 11 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:160" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,242,223,1.0); background-image: linear-gradient(rgba(255,242,223,1.0), rgba(255,242,223,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <svg data-id="1:161" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<svg data-id="1:162" style="position: absolute; left: 960.0px; top: 0.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div class="ft" data-id="1:163" style="position: absolute; left: 200.0px; top: 770.0px; width: 711.0px; height: 182.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 76.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.6720000362396241px; line-height: 91.20000457763672px; text-align: left; color: rgba(0,0,0,1.0)">Getting and giving feedback</div></div>
<div data-id="1:164" style="position: absolute; left: 1040.0px; top: 154.0px; width: 680.0px; height: 798.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:165" style="position: absolute; left: 0.0px; top: 0.0px; width: 680.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 60.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: -1.3200000286102296px; line-height: 72.0px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Getting feedback</div></div>
<div class="ft" data-id="1:166" style="position: absolute; left: 0.0px; top: 104.0px; width: 680.0px; height: 694.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">t's often challenging to share your work publicly. Putting yourself out there, awaiting criticism from people you may not even know. Asking for feedback as a designer—especially earlier in your career—can be intimidatingly difficult. That's why we put together this guide on presenting your work with context and specific requests for the types of feedback you want to receive.<br>The most important goal is helping each other learn and grow. Second to that is making great work that our clients will love. When submitting any design work for critique, it's helpful to tell a story. Otherwise, it will be missing the context around the work, which often leads to unhelpful comments, such as, "I like the colors."<br>Tell your critiquing audience what you are showing them, who is it for, what the constraints were. Anything that would be helpful in providing context for them to base their understanding of your work.<br>For example, "Here is a landing page of a marketing website I created for a blueberry farm, targeted at </div></div>
</div>
<div class="ft" data-id="1:167" style="position: absolute; left: 22.0px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(38,38,38,0.5)">PROCESS</div></div>
<div data-id="1:168" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:169" style="position: absolute; left: 1787.0px; top: 1003.0px; width: 77.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">11</div></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 12 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:170" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,242,223,1.0); background-image: linear-gradient(rgba(255,242,223,1.0), rgba(255,242,223,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <svg data-id="1:171" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<svg data-id="1:172" style="position: absolute; left: 960.0px; top: 0.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div class="ft" data-id="1:173" style="position: absolute; left: 200.0px; top: 770.0px; width: 711.0px; height: 182.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 76.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.6720000362396241px; line-height: 91.20000457763672px; text-align: left; color: rgba(0,0,0,0.10000000149011612)">Getting and giving feedback</div></div>
<div class="ft" data-id="1:174" style="position: absolute; left: 1040.0px; top: 140.0px; width: 680.0px; height: 812.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">bodega owners in the New York City area. The client needed a desktop and mobile version of the website."<br>"I am looking for feedback on spacing, type size, readability, background color, and would love any references you could point me towards in regards to comments you have." Asking for references can be very helpful, especially if you are receiving feedback online, rather than in-person where you may have a better chance of asking clarifying questions.<br>Providing options to react to can be a useful way to make it easier for others to provide feedback. For instance, rather than "is this the color you had in mind?", show a few options to choose from and get the conversation started. That way, you're removing the friction to get responses back.<br>When seeking feedback from our clients, keep in mind that the majority of them do not have design backgrounds and are often not used to providing design critique. <br>Part of design is exposing yourself to criticism and failure on a daily basis. And it is crucial to our work, as it lets us improve it and better serve our customers. You </div></div>
<div class="ft" data-id="1:175" style="position: absolute; left: 22.0px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(38,38,38,0.5)">PROCESS</div></div>
<div data-id="1:176" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:177" style="position: absolute; left: 1787.0px; top: 1003.0px; width: 77.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">12</div></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 13 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:178" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,242,223,1.0); background-image: linear-gradient(rgba(255,242,223,1.0), rgba(255,242,223,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <svg data-id="1:179" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<svg data-id="1:180" style="position: absolute; left: 960.0px; top: 0.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div class="ft" data-id="1:181" style="position: absolute; left: 200.0px; top: 770.0px; width: 711.0px; height: 182.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 76.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.6720000362396241px; line-height: 91.20000457763672px; text-align: left; color: rgba(0,0,0,0.10000000149011612)">Getting and giving feedback</div></div>
<div class="ft" data-id="1:182" style="position: absolute; left: 1040.0px; top: 546.0px; width: 680.0px; height: 406.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">should expect and even welcome critique of your design work—invited or otherwise. Be prepared to defend your work, explain the decisions you made, and welcome improvements.<br>Don’t take it personally. Criticism should be constructive. That ensures that the person is trying to help you improve as a designer, and help you serve your customers better. That’s why we give constructive criticism too.<br>(Provide more detail with your team’s approach to feedback.)</div></div>
<div class="ft" data-id="1:183" style="position: absolute; left: 22.0px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(38,38,38,0.5)">PROCESS</div></div>
<div data-id="1:184" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div class="ft" data-id="1:185" style="position: absolute; left: 1787.0px; top: 1003.0px; width: 77.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">13</div></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 14 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:186" style="width: 1920.0px; height: 1080.0px; background-color: rgba(255,242,223,1.0); background-image: linear-gradient(rgba(255,242,223,1.0), rgba(255,242,223,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <svg data-id="1:187" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<svg data-id="1:188" style="position: absolute; left: 960.0px; top: 0.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div class="ft" data-id="1:189" style="position: absolute; left: 200.0px; top: 770.0px; width: 711.0px; height: 182.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 76.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -1.6720000362396241px; line-height: 91.20000457763672px; text-align: left; color: rgba(0,0,0,0.10000000149011612)">Getting and giving feedback</div></div>
<div class="ft" data-id="1:190" style="position: absolute; left: 1040.0px; top: 497.0px; width: 680.0px; height: 68.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">Here's a helpful team meeting recording around our project workflow.</div></div>
<div class="ft" data-id="1:191" style="position: absolute; left: 22.0px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(38,38,38,0.5)">PROCESS</div></div>
<div data-id="1:192" style="position: absolute; left: 26.0px; top: 1026.0px; width: 26.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;; border-radius: 50%"></div>
<div data-id="1:193" style="position: absolute; left: 1040.0px; top: 605.0px; width: 680.0px; height: 347.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 8.0px; background-image: linear-gradient(rgba(255,237,189,1.0) 0.0%, rgba(239,157,109,1.0) 100.0%); background-size: auto; background-position: 0 0; background-repeat: no-repeat;">
<div data-id="1:194" style="position: absolute; left: 189.0px; top: 114.0px; width: 301.0px; height: 120.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 8.0px; background-image: linear-gradient(rgba(255,255,255,0.4000000059604645), rgba(255,255,255,0.4000000059604645)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div class="ft" data-id="1:195" style="position: absolute; left: 44.0px; top: 44.0px; width: 213.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: left; white-space: nowrap; text-transform: uppercase; color: rgba(0,0,0,1.0)">INSERT VIDEO</div></div>
</div>
</div>
<div class="ft" data-id="1:196" style="position: absolute; left: 1787.0px; top: 1003.0px; width: 77.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: rotate(1.6081230200044232e-16rad); transform-origin: center center; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; white-space: nowrap; text-transform: uppercase; color: rgba(38,38,38,0.5)">14</div></div>

        </div>
      </div>
    </div>

    <div class="slide-container">
      <div class="slide-label">Slide 15 &mdash; Frame</div>
      <div class="slide-wrapper">
        <div class="slide" data-slide-id="1:197" style="width: 1920.0px; height: 1080.0px; background-color: rgba(231,205,168,1.0); background-image: linear-gradient(rgba(231,205,168,1.0), rgba(231,205,168,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <svg data-id="1:198" style="position: absolute; left: 77.0px; top: 4.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<svg data-id="1:199" style="position: absolute; left: 960.0px; top: 0.0px; width: 1px; height: 1080.0px; opacity: 1.0; overflow: visible" viewBox="0 0 1 1080.0" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0L-0.5 0L-0.5 1080L0 1080L0.5 1080L0.5 0L0 0Z" fill="rgba(0,0,0,0.5)" fill-rule="nonzero"/></svg>
<div data-id="1:200" style="position: absolute; left: 77.0px; top: 0.0px; width: 883.0px; height: 1080.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-image: linear-gradient(rgba(255,237,189,1.0) 0.0%, rgba(239,157,109,1.0) 100.0%); background-size: auto; background-position: 0 0; background-repeat: no-repeat;">
<div data-id="1:201" style="position: absolute; left: 291.0px; top: 480.0px; width: 301.0px; height: 120.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 8.0px; background-image: linear-gradient(rgba(255,255,255,0.4000000059604645), rgba(255,255,255,0.4000000059604645)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div class="ft" data-id="1:202" style="position: absolute; left: 44.0px; top: 44.0px; width: 213.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: left; white-space: nowrap; text-transform: uppercase; color: rgba(0,0,0,1.0)">INSERT IMAGE</div></div>
</div>
</div>
<div class="ft" data-id="1:203" style="position: absolute; left: 1040.0px; top: 780.0px; width: 680.0px; height: 72.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 60.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: -1.3200000286102296px; line-height: 72.0px; text-align: left; white-space: nowrap; color: rgba(0,0,0,1.0)">Closing message</div></div>
<div class="ft" data-id="1:204" style="position: absolute; left: 1040.0px; top: 884.0px; width: 680.0px; height: 68.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 28.0px; font-family: 'Roobert PRO TRIAL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 400; letter-spacing: -0.6160000133514405px; line-height: 33.60000228881836px; text-align: left; color: rgba(0,0,0,1.0)">Include contact information, action items, or any other next steps.</div></div>
<div data-id="1:205" style="position: absolute; left: 0.0px; top: -5.0px; width: 77.0px; height: 1085.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; background-color: rgba(30,30,30,1.0); background-image: linear-gradient(rgba(30,30,30,1.0), rgba(30,30,30,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
</div>
<div class="ft" data-id="1:206" style="position: absolute; left: 22.0px; top: 1052.0px; width: 319.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: left; text-transform: uppercase; color: rgba(255,242,223,1.0)">0000.00.00</div></div>
<div class="ft" data-id="1:207" style="position: absolute; left: 22.000030517578125px; top: 589.0px; width: 566.0px; height: 32.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; transform: matrix(-4.371138828673793e-08, -1.0, 1.0, -4.371138828673793e-08, 0, 0); transform-origin: 0 0; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 20.0px; font-family: 'Akkurat Mono LL', 'Oswald', 'Inter', 'Noto Sans', 'Helvetica Neue', 'Hiragino Sans', 'Yu Gothic', 'Apple SD Gothic Neo', 'Malgun Gothic', 'PingFang SC', 'Microsoft YaHei', Helvetica, Arial, sans-serif; font-weight: 700; letter-spacing: 5.8px; line-height: 32.0px; text-align: right; text-transform: uppercase; color: rgba(255,242,223,1.0)">ZACHT.STUDIO</div></div>

        </div>
      </div>
    </div>

  
  <script>
  // Shrink-to-fit: when a custom font fails to load and the fallback is wider/taller, the rendered text overflows the Figma bbox. The shrink is SLACK-AWARE — each text is allowed to overflow into the empty space between it and its nearest neighbor in the overflow direction. Figma sizes text containers tightly around the original font's glyph extent, but the surrounding layout often leaves visual breathing room (e.g. 56px gaps between nav labels). Squeezing every label into its tight bbox makes them look weak; letting them grow into the gap keeps the design closer to the source while still preventing actual overlap.
  (function() {
    // Per-element "how far can I overflow before hitting a neighbor" computed once. Position-fixed: depends only on bbox layout, not on font shrink state.
    var slackCache = new WeakMap();
    function computeSlack(container) {
      if (slackCache.has(container)) return slackCache.get(container);
      var slide = container.closest('.slide');
      var er = container.getBoundingClientRect();
      var sliderc = slide ? slide.getBoundingClientRect() : null;
      var leftS = Infinity, rightS = Infinity, topS = Infinity, botS = Infinity;
      if (slide) {
        // Collide against other text labels only — overlapping decorative shapes/backgrounds is usually fine and often intentional. Text-on-text is what creates unreadable layouts.
        slide.querySelectorAll('.ft').forEach(function(other) {
          if (other === container || container.contains(other) || other.contains(container)) return;
          var or = other.getBoundingClientRect();
          var vertOverlap = or.top < er.bottom - 0.5 && or.bottom > er.top + 0.5;
          var horzOverlap = or.left < er.right - 0.5 && or.right > er.left + 0.5;
          if (vertOverlap) {
            if (or.left >= er.right - 0.5) rightS = Math.min(rightS, or.left - er.right);
            if (or.right <= er.left + 0.5) leftS = Math.min(leftS, er.left - or.right);
          }
          if (horzOverlap) {
            if (or.top >= er.bottom - 0.5) botS = Math.min(botS, or.top - er.bottom);
            if (or.bottom <= er.top + 0.5) topS = Math.min(topS, er.top - or.bottom);
          }
        });
      }
      if (sliderc) {
        leftS = Math.min(leftS, Math.max(0, er.left - sliderc.left));
        rightS = Math.min(rightS, Math.max(0, sliderc.right - er.right));
        topS = Math.min(topS, Math.max(0, er.top - sliderc.top));
        botS = Math.min(botS, Math.max(0, sliderc.bottom - er.bottom));
      }
      var scale = er.width / (container.clientWidth || 1); // rendered-px → layout-px
      var toLayout = function(v) { return v === Infinity ? 99999 : Math.max(0, v / (scale || 1)); };
      var s = { left: toLayout(leftS), right: toLayout(rightS), top: toLayout(topS), bottom: toLayout(botS) };
      slackCache.set(container, s);
      return s;
    }
    function fitOne(container) {
      var inner = container.firstElementChild;
      if (!inner) return;
      var cw = container.clientWidth, ch = container.clientHeight;
      if (!cw || !ch) return;
      if (inner.dataset.origFs) {
        inner.style.fontSize = inner.dataset.origFs;
        if (inner.dataset.origLs) inner.style.letterSpacing = inner.dataset.origLs;
        if (inner.dataset.origLh) inner.style.lineHeight = inner.dataset.origLh;
      } else {
        inner.dataset.origFs = getComputedStyle(inner).fontSize;
        inner.dataset.origLs = getComputedStyle(inner).letterSpacing;
        inner.dataset.origLh = getComputedStyle(inner).lineHeight;
      }
      var origFs = parseFloat(inner.dataset.origFs);
      var origLs = parseFloat(inner.dataset.origLs) || 0;
      var origLh = parseFloat(inner.dataset.origLh) || 0;
      // Single-line text (white-space: nowrap, or no <br> in the source) only needs to fit its WIDTH — the fallback font's natural line-box (ascender + descender) is usually a few px taller than the Figma bbox even at the correct font, and that's expected, not an overflow to fix.
      var isSingleLine = getComputedStyle(inner).whiteSpace === 'nowrap' || !/<br/i.test(inner.innerHTML);
      var slack = computeSlack(container);
      var align = getComputedStyle(inner).textAlign;
      // Effective allowed width: bbox + slack on the side(s) the text actually overflows toward, per text-align.
      var allowedW;
      if (align === 'right' || align === 'end') allowedW = cw + slack.left;
      else if (align === 'center') allowedW = cw + 2 * Math.min(slack.left, slack.right);
      else allowedW = cw + slack.right; // left / start / justify
      var allowedH = ch + slack.bottom; // text typically grows downward when wrapping
      var fs = origFs;
      for (var iter = 0; iter < 8; iter++) {
        var iw = inner.scrollWidth, ih = inner.scrollHeight;
        var rw = iw > allowedW + 0.5 ? allowedW / iw : 1;
        var rh = (!isSingleLine && ih > allowedH + 0.5) ? allowedH / ih : 1;
        var r = Math.min(rw, rh);
        if (r > 0.998) break;
        var newFs = Math.max(6, fs * r);
        if (newFs >= fs - 0.05) break;
        fs = newFs;
        inner.style.fontSize = fs + 'px';
        // Scale letter-spacing AND line-height proportionally so they shrink with font-size — otherwise the absolute-px values dominate at small sizes.
        if (origLs) inner.style.letterSpacing = (origLs * fs / origFs) + 'px';
        if (origLh) inner.style.lineHeight = (origLh * fs / origFs) + 'px';
      }
    }
    function fitAll() { document.querySelectorAll('.ft').forEach(fitOne); }
    if (document.fonts && document.fonts.ready) {
      document.fonts.ready.then(fitAll);
    } else {
      window.addEventListener('load', fitAll);
    }
    var t;
    window.addEventListener('resize', function() { clearTimeout(t); t = setTimeout(fitAll, 150); });
  })();
  </script>
</body>
</html>