File size: 68,893 Bytes
723f01e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>AddProgressBarGroundTruthC_ProjectManagementWorkflowInfographic</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=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=Montserrat:wght@700;800&display=swap">
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;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">
  <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>AddProgressBarGroundTruthC_ProjectManagementWorkflowInfographic</h1>
  <div class="meta">10 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:48" style="width: 1920.0px; height: 1080.0px; background-color: rgba(248,248,248,1.0); background-image: linear-gradient(rgba(248,248,248,1.0), rgba(248,248,248,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:49" style="position: absolute; left: 0.0px; top: 0.0px; width: 1920.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:50" style="position: absolute; left: 60.0px; top: 60.0px; width: 1800.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 30.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:51" style="position: absolute; left: 60.0px; top: 60.0px; width: 1275.0px; height: 840.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:52" style="position: absolute; left: 0.0px; top: 0.0px; width: 277.3555603027344px; height: 56.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="I1:52;4846:63" style="position: absolute; left: 0.0px; top: 0.0px; width: 277.3555603027344px; height: 56.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/1b7a95123a3d580953e08b11f74009a519281a46.png'); background-size: cover; background-position: center; background-repeat: no-repeat;"></div>
</div>
<div class="ft" data-id="1:53" style="position: absolute; left: 0.0px; top: 56.0px; width: 1275.0px; height: 784.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 150.0px; font-family: 'Montserrat', '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: 800; letter-spacing: 0.0px; line-height: 165.0px; text-align: left; color: rgba(34,34,34,1.0)">Brand<br>Guidelines</div></div>
</div>
<div data-id="1:54" style="position: absolute; left: 1335.0px; top: 60.0px; width: 405.0px; height: 840.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:55" style="position: absolute; left: 272.0px; top: 0.0px; width: 133.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 26.400001525878906px; text-align: right; white-space: nowrap; color: rgba(34,34,34,1.0)">Version 1.0</div></div>
<div class="ft" data-id="1:56" style="position: absolute; left: 252.0px; top: 814.0px; width: 153.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 24.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 26.400001525878906px; text-align: right; white-space: nowrap; color: rgba(34,34,34,1.0)">March, 2024</div></div>
</div>
</div>
</div>
<div data-id="1:57" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1920.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,230,230,1.0); background-image: linear-gradient(rgba(230,230,230,1.0), rgba(230,230,230,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:58" style="position: absolute; left: 0.0px; top: 1072.0px; width: 192.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(51,127,229,1.0); background-image: linear-gradient(rgba(51,127,229,1.0), rgba(51,127,229,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></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:59" style="width: 1920.0px; height: 1080.0px; background-color: rgba(248,248,248,1.0); background-image: linear-gradient(rgba(248,248,248,1.0), rgba(248,248,248,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:60" style="position: absolute; left: 0.0px; top: 0.0px; width: 1920.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:61" style="position: absolute; left: 60.0px; top: 60.0px; width: 560.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:62" style="position: absolute; left: 0.0px; top: 0.0px; width: 560.0px; height: 960.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(217,217,217,1.0); background-image: linear-gradient(rgba(217,217,217,1.0), rgba(217,217,217,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:63" style="position: absolute; left: -9.0px; top: -38.0px; width: 692.0px; height: 1036.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/91ff1849358a78a3efe9b398577259ca8a4d42c7.png'); background-size: cover; background-position: center; background-repeat: no-repeat;"></div>
</div>
</div>
<div data-id="1:64" style="position: absolute; left: 680.0px; top: 60.0px; width: 1180.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:65" style="position: absolute; left: 60.0px; top: 60.0px; width: 1060.0px; height: 180.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: 500.0px; height: 180.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 26.400001525878906px; text-align: left; color: rgba(34,34,34,1.0)">Kara /<br>Brand Guidelines</div></div>
<div data-id="1:67" style="position: absolute; left: 500.0px; top: 0.0px; width: 560.0px; height: 180.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:68" style="position: absolute; left: 0.0px; top: 0.0px; width: 502.0px; height: 180.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Open Sans', '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: 0.0px; line-height: 36.0px; text-align: left; color: rgba(34,34,34,1.0)">About Brand<br>Main Logo<br>Brand Colors<br>Brand Typography<br>Brand Applications</div></div>
<div class="ft" data-id="1:69" style="position: absolute; left: 532.0px; top: 0.0px; width: 28.0px; height: 180.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Open Sans', '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: 0.0px; line-height: 36.0px; text-align: right; white-space: nowrap; color: rgba(34,34,34,1.0)">01<br>02<br>03<br>04<br>05</div></div>
</div>
</div>
<div class="ft" data-id="1:70" style="position: absolute; left: 60.0px; top: 688.0px; width: 1060.0px; height: 212.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 96.0px; font-family: 'Montserrat', '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: 800; letter-spacing: 0.0px; line-height: 105.60000610351562px; text-align: left; color: rgba(34,34,34,1.0)">Table of<br>Contents</div></div>
</div>
</div>
<div data-id="1:71" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1920.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,230,230,1.0); background-image: linear-gradient(rgba(230,230,230,1.0), rgba(230,230,230,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:72" style="position: absolute; left: 0.0px; top: 1072.0px; width: 384.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(51,127,229,1.0); background-image: linear-gradient(rgba(51,127,229,1.0), rgba(51,127,229,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>

        </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:73" style="width: 1920.0px; height: 1080.0px; background-color: rgba(248,248,248,1.0); background-image: linear-gradient(rgba(248,248,248,1.0), rgba(248,248,248,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:74" style="position: absolute; left: 0.0px; top: 0.0px; width: 1920.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:75" style="position: absolute; left: 60.0px; top: 60.0px; width: 1800.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:76" style="position: absolute; left: 60.0px; top: 60.0px; width: 810.0px; height: 840.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:77" style="position: absolute; left: 0.0px; top: 0.0px; width: 810.0px; height: 52.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 26.400001525878906px; text-align: left; color: rgba(34,34,34,1.0)">Kara /<br>Brand Guidelines</div></div>
<div class="ft" data-id="1:78" style="position: absolute; left: 0.0px; top: 52.0px; width: 810.0px; height: 788.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 96.0px; font-family: 'Montserrat', '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: 800; letter-spacing: 0.0px; line-height: 105.60000610351562px; text-align: left; color: rgba(34,34,34,1.0)">Intro-<br>duction.</div></div>
</div>
<div data-id="1:79" style="position: absolute; left: 930.0px; top: 60.0px; width: 810.0px; height: 840.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:80" style="position: absolute; left: 0.0px; top: 0.0px; width: 810.0px; height: 52.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 26.400001525878906px; text-align: left; color: rgba(34,34,34,1.0)">March, 2024.<br>Version 1.0</div></div>
<div class="ft" data-id="1:81" style="position: absolute; left: 0.0px; top: 756.0px; width: 810.0px; height: 84.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 20.0px; font-family: 'Open Sans', '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.0px; line-height: 28.0px; text-align: left; color: rgba(34,34,34,1.0)">This document serves as a comprehensive guide to maintaining consistency and integrity across all brand communications and visuals. By adhering to these guidelines, we ensure that Kara's brand essence remains strong and resonates with our audience.</div></div>
</div>
</div>
</div>
<div data-id="1:82" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1920.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,230,230,1.0); background-image: linear-gradient(rgba(230,230,230,1.0), rgba(230,230,230,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:83" style="position: absolute; left: 0.0px; top: 1072.0px; width: 576.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(51,127,229,1.0); background-image: linear-gradient(rgba(51,127,229,1.0), rgba(51,127,229,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></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:84" style="width: 1920.0px; height: 1080.0px; background-color: rgba(248,248,248,1.0); background-image: linear-gradient(rgba(248,248,248,1.0), rgba(248,248,248,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:85" style="position: absolute; left: 0.0px; top: 0.0px; width: 1920.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:86" style="position: absolute; left: 60.0px; top: 60.0px; width: 1800.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:87" style="position: absolute; left: 60.0px; top: 60.0px; width: 487.0px; height: 840.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:88" style="position: absolute; left: 0.0px; top: 0.0px; width: 487.0px; height: 52.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 26.400001525878906px; text-align: left; color: rgba(34,34,34,1.0)">Kara /<br>Brand Guidelines</div></div>
<div class="ft" data-id="1:89" style="position: absolute; left: 0.0px; top: 52.0px; width: 487.0px; height: 788.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 96.0px; font-family: 'Montserrat', '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: 800; letter-spacing: 0.0px; line-height: 105.60000610351562px; text-align: left; color: rgba(34,34,34,1.0)">01 /<br>Brand<br>Overview</div></div>
</div>
<div data-id="1:90" style="position: absolute; left: 607.0px; top: 60.0px; width: 1133.0px; height: 840.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:91" style="position: absolute; left: 0.0px; top: 0.0px; width: 1133.0px; height: 840.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 24.0px; background-color: rgba(217,217,217,1.0); background-image: linear-gradient(rgba(217,217,217,1.0), rgba(217,217,217,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:92" style="position: absolute; left: -49.0px; top: -34.0px; width: 1362.0px; height: 908.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/f94ab5bc53e532cb395286d5f67ba8036d10a419.png'); background-size: cover; background-position: center; background-repeat: no-repeat;"></div>
</div>
</div>
</div>
</div>
<div data-id="1:93" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1920.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,230,230,1.0); background-image: linear-gradient(rgba(230,230,230,1.0), rgba(230,230,230,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:94" style="position: absolute; left: 0.0px; top: 1072.0px; width: 768.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(51,127,229,1.0); background-image: linear-gradient(rgba(51,127,229,1.0), rgba(51,127,229,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></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:95" style="width: 1920.0px; height: 1080.0px; background-color: rgba(248,248,248,1.0); background-image: linear-gradient(rgba(248,248,248,1.0), rgba(248,248,248,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:96" style="position: absolute; left: 0.0px; top: 0.0px; width: 1920.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:97" style="position: absolute; left: 60.0px; top: 60.0px; width: 560.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:98" style="position: absolute; left: 0.0px; top: 0.0px; width: 560.0px; height: 620.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(217,217,217,1.0); background-image: linear-gradient(rgba(217,217,217,1.0), rgba(217,217,217,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:99" style="position: absolute; left: -47.0px; top: -180.0px; width: 654.0px; height: 981.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/445ce5369585958204338f3b12e13f2b5b2f14c0.png'); background-size: cover; background-position: center; background-repeat: no-repeat;"></div>
</div>
</div>
<div data-id="1:100" style="position: absolute; left: 680.0px; top: 60.0px; width: 1180.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:101" style="position: absolute; left: 60.0px; top: 60.0px; width: 1060.0px; height: 640.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: 1060.0px; height: 52.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 26.400001525878906px; text-align: left; color: rgba(34,34,34,1.0)">Kara /<br>Brand Guidelines</div></div>
<div data-id="1:103" style="position: absolute; left: 500.0px; top: 378.0px; width: 560.0px; height: 262.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:104" style="position: absolute; left: 0.0px; top: 0.0px; width: 560.0px; height: 36.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Open Sans', '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: 0.0px; line-height: 36.0px; text-align: justify; white-space: nowrap; color: rgba(34,34,34,1.0)">Empowering Creativity</div></div>
<div class="ft" data-id="1:105" style="position: absolute; left: 0.0px; top: 66.0px; width: 560.0px; height: 196.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: 'Open Sans', '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.0px; line-height: 28.0px; text-align: left; color: rgba(34,34,34,1.0)">At Kara, we believe in the transformative power of creativity. Our brand is more than just a name; it's a symbol of innovation, empowerment, and endless possibilities.<br><br>Praesent id enim est. Donec sodales consequat sapien sollicitudin venenatis. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div></div>
</div>
</div>
<div class="ft" data-id="1:106" style="position: absolute; left: 60.0px; top: 760.0px; width: 1060.0px; height: 140.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 64.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 70.4000015258789px; text-align: left; color: rgba(34,34,34,1.0)">Who<br>We Are?</div></div>
</div>
</div>
<div data-id="1:107" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1920.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,230,230,1.0); background-image: linear-gradient(rgba(230,230,230,1.0), rgba(230,230,230,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:108" style="position: absolute; left: 0.0px; top: 1072.0px; width: 960.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(51,127,229,1.0); background-image: linear-gradient(rgba(51,127,229,1.0), rgba(51,127,229,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></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:109" style="width: 1920.0px; height: 1080.0px; background-color: rgba(248,248,248,1.0); background-image: linear-gradient(rgba(248,248,248,1.0), rgba(248,248,248,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:110" style="position: absolute; left: 0.0px; top: 0.0px; width: 1920.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:111" style="position: absolute; left: 60.0px; top: 60.0px; width: 560.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div class="ft" data-id="1:112" style="position: absolute; left: 60.0px; top: 60.0px; width: 440.0px; height: 840.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 64.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 70.4000015258789px; text-align: left; color: rgba(34,34,34,1.0)">Our<br>Story</div></div>
</div>
<div data-id="1:113" style="position: absolute; left: 680.0px; top: 60.0px; width: 1180.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:114" style="position: absolute; left: 60.0px; top: 60.0px; width: 1060.0px; height: 280.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:115" style="position: absolute; left: 0.0px; top: 0.0px; width: 1060.0px; height: 52.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 26.400001525878906px; text-align: left; color: rgba(34,34,34,1.0)">Kara /<br>Brand Guidelines</div></div>
<div class="ft" data-id="1:116" style="position: absolute; left: 0.0px; top: 112.0px; width: 1060.0px; height: 168.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: 'Open Sans', '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.0px; line-height: 28.0px; text-align: left; color: rgba(34,34,34,1.0)">Founded with a vision to empower individuals to unleash their full creative potential, Kara was born out of a passion for innovation and a drive to make a difference. We understand that creativity knows no bounds and that everyone has a unique spark waiting to be ignited.<br><br>Praesent id enim est. Donec sodales consequat sapien sollicitudin venenatis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris et laoreet dolor, non gravida velit.</div></div>
</div>
<div data-id="1:117" style="position: absolute; left: 60.0px; top: 400.0px; width: 1060.0px; height: 500.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 24.0px; background-color: rgba(217,217,217,1.0); background-image: linear-gradient(rgba(217,217,217,1.0), rgba(217,217,217,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:118" style="position: absolute; left: -16.0px; top: -114.0px; width: 1092.0px; height: 729.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/33bb4aee7378af07403043d8621c6ad1a6d4e638.png'); background-size: cover; background-position: center; background-repeat: no-repeat;"></div>
</div>
</div>
</div>
<div data-id="1:119" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1920.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,230,230,1.0); background-image: linear-gradient(rgba(230,230,230,1.0), rgba(230,230,230,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:120" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1152.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(51,127,229,1.0); background-image: linear-gradient(rgba(51,127,229,1.0), rgba(51,127,229,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:121" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1920.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,230,230,1.0); background-image: linear-gradient(rgba(230,230,230,1.0), rgba(230,230,230,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></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:122" style="width: 1920.0px; height: 1080.0px; background-color: rgba(248,248,248,1.0); background-image: linear-gradient(rgba(248,248,248,1.0), rgba(248,248,248,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:123" style="position: absolute; left: 0.0px; top: 0.0px; width: 1920.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:124" style="position: absolute; left: 60.0px; top: 60.0px; width: 1800.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div class="ft" data-id="1:125" style="position: absolute; left: 60.0px; top: 60.0px; width: 1680.0px; height: 140.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 64.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 70.4000015258789px; text-align: left; color: rgba(34,34,34,1.0)">Brand Vision<br>&amp; Mission</div></div>
<div data-id="1:126" style="position: absolute; left: 60.0px; top: 412.0px; width: 1680.0px; height: 192.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:127" style="position: absolute; left: 0.0px; top: 0.0px; width: 810.0px; height: 192.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:128" style="position: absolute; left: 0.0px; top: 0.0px; width: 810.0px; height: 28.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: 'Open Sans', '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.0px; line-height: 28.0px; text-align: left; white-space: nowrap; color: rgba(34,34,34,1.0)">Vision</div></div>
<div class="ft" data-id="1:129" style="position: absolute; left: 0.0px; top: 88.0px; width: 810.0px; height: 52.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 26.400001525878906px; text-align: left; color: rgba(34,34,34,1.0)">Our vision is to empower individuals to unleash their full potential through innovative solutions.</div></div>
</div>
<div data-id="1:130" style="position: absolute; left: 870.0px; top: 0.0px; width: 810.0px; height: 192.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:131" style="position: absolute; left: 0.0px; top: 0.0px; width: 810.0px; height: 28.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: 'Open Sans', '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.0px; line-height: 28.0px; text-align: left; white-space: nowrap; color: rgba(34,34,34,1.0)">Mission</div></div>
<div class="ft" data-id="1:132" style="position: absolute; left: 0.0px; top: 88.0px; width: 810.0px; height: 104.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 26.400001525878906px; text-align: left; color: rgba(34,34,34,1.0)">We provide tools, resources, and inspiration that enable individuals to express themselves freely, think outside the box, and bring their ideas to life. We're here to support creators, innovators, and dreamers on their journey to success.</div></div>
</div>
</div>
<div class="ft" data-id="1:133" style="position: absolute; left: 60.0px; top: 816.0px; width: 1680.0px; height: 84.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: 'Open Sans', '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.0px; line-height: 28.0px; text-align: left; color: rgba(34,34,34,1.0)">Both the brand vision and mission guide the brand's overall strategy, decisions, and actions, helping it stay aligned with its long-term goals and its commitment to its customers and stakeholders. Praesent id enim est. Donec sodales consequat sapien sollicitudin venenatis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris et laoreet dolor, non gravida velit.</div></div>
</div>
</div>
<div data-id="1:134" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1920.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,230,230,1.0); background-image: linear-gradient(rgba(230,230,230,1.0), rgba(230,230,230,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:135" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1344.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(51,127,229,1.0); background-image: linear-gradient(rgba(51,127,229,1.0), rgba(51,127,229,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></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:136" style="width: 1920.0px; height: 1080.0px; background-color: rgba(248,248,248,1.0); background-image: linear-gradient(rgba(248,248,248,1.0), rgba(248,248,248,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:137" style="position: absolute; left: 0.0px; top: 0.0px; width: 1920.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:138" style="position: absolute; left: 60.0px; top: 60.0px; width: 870.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div class="ft" data-id="1:139" style="position: absolute; left: 60.0px; top: 60.0px; width: 750.0px; height: 70.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 64.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 70.4000015258789px; text-align: left; white-space: nowrap; color: rgba(34,34,34,1.0)">Primary Logo</div></div>
<div data-id="1:140" style="position: absolute; left: 60.0px; top: 190.0px; width: 750.0px; height: 710.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:141" style="position: absolute; left: 0.0px; top: 0.0px; width: 750.0px; height: 36.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Open Sans', '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: 0.0px; line-height: 36.0px; text-align: justify; white-space: nowrap; color: rgba(34,34,34,1.0)">Vertical Logo</div></div>
<div class="ft" data-id="1:142" style="position: absolute; left: 0.0px; top: 66.0px; width: 750.0px; height: 308.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: 'Open Sans', '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.0px; line-height: 28.0px; text-align: left; color: rgba(34,34,34,1.0)">The vertical primary logo is the cornerstone of Kara’s brand identity, featuring the full "Kara" name in a rich, dark green hue. The vertical arrangement provides a strong and upright presence, making it ideal for formal brand communications, large-scale prints, and contexts where vertical space is ample. The dark green color ensures a sophisticated and grounded appearance.<br><br>Suspendisse lacinia dictum odio, non facilisis mi tincidunt ac. Maecenas non eleifend metus, ut lacinia erat. Ut bibendum condimentum nunc at finibus. Quisque hendrerit posuere lectus a vulputate. Fusce bibendum eu diam vitae finibus. Pellentesque ultrices ultrices orci, eu malesuada urna mollis vel. Duis eget porttitor nunc.</div></div>
</div>
</div>
<div data-id="1:143" style="position: absolute; left: 990.0px; top: 60.0px; width: 870.0px; height: 960.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:144" style="position: absolute; left: 60.0px; top: 60.0px; width: 750.0px; height: 840.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 24.0px; border: 1.0px solid rgba(217,217,217,1.0);">
<div data-id="1:145" style="position: absolute; left: 172.3268585205078px; top: 180.00001525878906px; width: 405.3462829589844px; height: 479.9999694824219px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="I1:145;4846:65" style="position: absolute; left: 0.0px; top: 0.0px; width: 405.3462829589844px; height: 479.9999694824219px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/85e2af2e078e87aa5f4d83c01c984143d2b61a96.png'); background-size: cover; background-position: center; background-repeat: no-repeat;"></div>
</div>
</div>
</div>
</div>
<div data-id="1:146" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1536.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(51,127,229,1.0); background-image: linear-gradient(rgba(51,127,229,1.0), rgba(51,127,229,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></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:147" style="width: 1920.0px; height: 1080.0px; background-color: rgba(248,248,248,1.0); background-image: linear-gradient(rgba(248,248,248,1.0), rgba(248,248,248,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:148" style="position: absolute; left: 0.0px; top: 0.0px; width: 1920.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:149" style="position: absolute; left: 60.0px; top: 60.0px; width: 560.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div class="ft" data-id="1:150" style="position: absolute; left: 60.0px; top: 60.0px; width: 440.0px; height: 140.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 64.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 70.4000015258789px; text-align: left; color: rgba(34,34,34,1.0)">Kara Color Palette</div></div>
<div data-id="1:151" style="position: absolute; left: 60.0px; top: 260.0px; width: 440.0px; height: 640.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: 440.0px; height: 36.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Open Sans', '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: 0.0px; line-height: 36.0px; text-align: justify; white-space: nowrap; color: rgba(34,34,34,1.0)">Accent Colors</div></div>
<div class="ft" data-id="1:153" style="position: absolute; left: 0.0px; top: 66.0px; width: 440.0px; height: 308.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: 'Open Sans', '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.0px; line-height: 28.0px; text-align: left; color: rgba(34,34,34,1.0)">The Kara color palette is designed to reflect our brand's dynamic, innovative, and approachable personality. Each color plays a specific role in conveying our brand values and ensuring consistency across all visual communications.<br><br>By adhering to this color palette, Kara ensures a cohesive and recognizable visual identity that effectively communicates our brand values and personality across all touchpoints.</div></div>
</div>
</div>
<div data-id="1:154" style="position: absolute; left: 680.0px; top: 60.0px; width: 1180.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(255,255,255,1.0); background-image: linear-gradient(rgba(255,255,255,1.0), rgba(255,255,255,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:155" style="position: absolute; left: 60.0px; top: 60.0px; width: 1060.0px; height: 397.5px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:156" style="position: absolute; left: 0.0px; top: 0.0px; width: 500.0px; height: 397.5px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 24.0px; background-color: rgba(5,45,35,1.0); background-image: linear-gradient(rgba(5,45,35,1.0), rgba(5,45,35,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
</div>
<div data-id="1:157" style="position: absolute; left: 560.0px; top: 0.0px; width: 454.0px; height: 397.5px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:158" style="position: absolute; left: 0.0px; top: 104.75px; width: 454.0px; height: 36.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Open Sans', '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: 0.0px; line-height: 36.0px; text-align: left; white-space: nowrap; color: rgba(34,34,34,1.0)">Kara Green</div></div>
<div data-id="1:159" style="position: absolute; left: 0.0px; top: 180.75px; width: 454.0px; height: 112.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:160" style="position: absolute; left: 0.0px; top: 0.0px; width: 73.0px; height: 56.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 20.0px; font-family: 'Open Sans', '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.0px; line-height: 28.0px; text-align: left; color: rgba(34,34,34,1.0)">HEX<br>RGB</div></div>
<div class="ft" data-id="1:161" style="position: absolute; left: 163.0px; top: 0.0px; width: 291.0px; height: 112.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 20.0px; font-family: 'Open Sans', '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.0px; line-height: 28.0px; text-align: left; color: rgba(34,34,34,1.0)">#228B22<br>34, 139, 34<br>A dark green symbolizing growth, stability, and harmony.</div></div>
</div>
</div>
</div>
<div data-id="1:162" style="position: absolute; left: 60.0px; top: 502.5px; width: 1060.0px; height: 397.5px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:163" style="position: absolute; left: 0.0px; top: 0.0px; width: 500.0px; height: 397.5px; opacity: 1.0; overflow: visible; box-sizing: border-box; border-radius: 24.0px; background-color: rgba(218,255,153,1.0); background-image: linear-gradient(rgba(218,255,153,1.0), rgba(218,255,153,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
</div>
<div data-id="1:164" style="position: absolute; left: 560.0px; top: 0.0px; width: 454.0px; height: 397.5px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:165" style="position: absolute; left: 0.0px; top: 104.75px; width: 454.0px; height: 36.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Open Sans', '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: 0.0px; line-height: 36.0px; text-align: left; white-space: nowrap; color: rgba(34,34,34,1.0)">Kara Yellow</div></div>
<div data-id="1:166" style="position: absolute; left: 0.0px; top: 180.75px; width: 454.0px; height: 112.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:167" style="position: absolute; left: 0.0px; top: 0.0px; width: 73.0px; height: 56.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 20.0px; font-family: 'Open Sans', '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.0px; line-height: 28.0px; text-align: left; color: rgba(34,34,34,1.0)">HEX<br>RGB</div></div>
<div class="ft" data-id="1:168" style="position: absolute; left: 163.0px; top: 0.0px; width: 291.0px; height: 112.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 20.0px; font-family: 'Open Sans', '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.0px; line-height: 28.0px; text-align: left; color: rgba(34,34,34,1.0)">#363636<br>(0%, 0%, 0%, 79%)<br>A bright green representing energy, optimism, and clarity.</div></div>
</div>
</div>
</div>
</div>
</div>
<div data-id="1:169" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1920.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,230,230,1.0); background-image: linear-gradient(rgba(230,230,230,1.0), rgba(230,230,230,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:170" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1728.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(51,127,229,1.0); background-image: linear-gradient(rgba(51,127,229,1.0), rgba(51,127,229,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></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:171" style="width: 1920.0px; height: 1080.0px; background-color: rgba(248,248,248,1.0); background-image: linear-gradient(rgba(248,248,248,1.0), rgba(248,248,248,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat; position: relative; overflow: hidden;">
          <div data-id="1:172" style="position: absolute; left: 0.0px; top: 0.0px; width: 1920.0px; height: 1080.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:173" style="position: absolute; left: 60.0px; top: 60.0px; width: 1184.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div data-id="1:174" style="position: absolute; left: 0.0px; top: 0.0px; width: 1184.0px; height: 960.0px; opacity: 1.0; overflow: hidden; box-sizing: border-box; border-radius: 32.0px; background-color: rgba(217,217,217,1.0); background-image: linear-gradient(rgba(217,217,217,1.0), rgba(217,217,217,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;">
<div data-id="1:175" style="position: absolute; left: -38.0px; top: -52.0px; width: 1261.0px; height: 1065.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-image: url('images/e469709c959aaf36ded1342bf81b02f7f76bfbeb.png'); background-size: cover; background-position: center; background-repeat: no-repeat;"></div>
</div>
</div>
<div data-id="1:176" style="position: absolute; left: 1304.0px; top: 60.0px; width: 556.0px; height: 960.0px; opacity: 1.0; overflow: visible; box-sizing: border-box">
<div class="ft" data-id="1:177" style="position: absolute; left: 0.0px; top: 0.0px; width: 556.0px; height: 52.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-start"><div style="font-size: 24.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 26.400001525878906px; text-align: right; color: rgba(34,34,34,1.0)">Kara /<br>Brand Guidelines</div></div>
<div class="ft" data-id="1:178" style="position: absolute; left: 0.0px; top: 52.0px; width: 556.0px; height: 882.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: center"><div style="font-size: 150.0px; font-family: 'Montserrat', '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: 800; letter-spacing: 0.0px; line-height: 165.0px; text-align: right; color: rgba(34,34,34,1.0)">Thank-<br>you.</div></div>
<div class="ft" data-id="1:179" style="position: absolute; left: 0.0px; top: 934.0px; width: 556.0px; height: 26.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; display: flex; flex-direction: column; justify-content: flex-end"><div style="font-size: 24.0px; font-family: 'Montserrat', '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: 0.0px; line-height: 26.400001525878906px; text-align: right; white-space: nowrap; color: rgba(34,34,34,1.0)">Version 1.0</div></div>
</div>
</div>
<div data-id="1:180" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1920.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(230,230,230,1.0); background-image: linear-gradient(rgba(230,230,230,1.0), rgba(230,230,230,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>
<div data-id="1:181" style="position: absolute; left: 0.0px; top: 1072.0px; width: 1920.0px; height: 8.0px; opacity: 1.0; overflow: visible; box-sizing: border-box; background-color: rgba(51,127,229,1.0); background-image: linear-gradient(rgba(51,127,229,1.0), rgba(51,127,229,1.0)); background-size: auto; background-position: 0 0; background-repeat: repeat;"></div>

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

  <div class="images-section"><h2>Images</h2><div class="images-grid">

      <div class="image-card">
        <img src="images/1b7a95123a3d580953e08b11f74009a519281a46.png" alt="1b7a95123a3d580953e08b11f74009a519281a46">
        <div class="image-label">1b7a95123a3d580953e08b11f74009a519281a46.png</div>
      </div>

      <div class="image-card">
        <img src="images/33bb4aee7378af07403043d8621c6ad1a6d4e638.png" alt="33bb4aee7378af07403043d8621c6ad1a6d4e638">
        <div class="image-label">33bb4aee7378af07403043d8621c6ad1a6d4e638.png</div>
      </div>

      <div class="image-card">
        <img src="images/445ce5369585958204338f3b12e13f2b5b2f14c0.png" alt="445ce5369585958204338f3b12e13f2b5b2f14c0">
        <div class="image-label">445ce5369585958204338f3b12e13f2b5b2f14c0.png</div>
      </div>

      <div class="image-card">
        <img src="images/85e2af2e078e87aa5f4d83c01c984143d2b61a96.png" alt="85e2af2e078e87aa5f4d83c01c984143d2b61a96">
        <div class="image-label">85e2af2e078e87aa5f4d83c01c984143d2b61a96.png</div>
      </div>

      <div class="image-card">
        <img src="images/91ff1849358a78a3efe9b398577259ca8a4d42c7.png" alt="91ff1849358a78a3efe9b398577259ca8a4d42c7">
        <div class="image-label">91ff1849358a78a3efe9b398577259ca8a4d42c7.png</div>
      </div>

      <div class="image-card">
        <img src="images/e469709c959aaf36ded1342bf81b02f7f76bfbeb.png" alt="e469709c959aaf36ded1342bf81b02f7f76bfbeb">
        <div class="image-label">e469709c959aaf36ded1342bf81b02f7f76bfbeb.png</div>
      </div>

      <div class="image-card">
        <img src="images/f94ab5bc53e532cb395286d5f67ba8036d10a419.png" alt="f94ab5bc53e532cb395286d5f67ba8036d10a419">
        <div class="image-label">f94ab5bc53e532cb395286d5f67ba8036d10a419.png</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>