-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1574 lines (1205 loc) · 86.9 KB
/
index.html
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
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Aliya Budimir, interior and graphic designer by profession, dreamer, adventurer and potion maker at heart"/>
<meta name="keywords" content="10 years of experience, interior design, graphical design, branding, packaging, wall painting, illustrations, 3D, sketching"/>
<meta name="theme-color" content="#ffffff">
<meta name="author" content="Ante Budimir">
<!-- Img preview for sharing -->
<meta property="og:image" content="./img/thumb/MC_3_ed-thumb.jpg">
<meta property="og:title" content="Aliya Budimir | Interior & Graphic Designer"/>
<meta property="og:description" content="Aliya Budimir, interior and graphic designer by profession, dreamer, adventurer and potion maker at heart"/>
<title>Aliya Budimir | Interior & Graphic Designer</title>
<!-- Stylesheet -->
<link rel="preload" href="./css/main.css" as="style">
<link rel="stylesheet" href="./css/main.css">
<!-- Tobii lightbox -->
<link rel="stylesheet" href="./css/tobii.min.css">
<!-- Font Awesome -->
<link rel="preconnect" href="https://ka-f.fontawesome.com">
<script src="https://kit.fontawesome.com/61d247919a.js" crossorigin="anonymous"></script>
<!-- Browser tab icon -->
<link rel="shortcut icon" href="img/icon.png" type="image/x-icon"/>
</head>
<body id="home-page">
<!-- Header -->
<header id="header">
<h1 class="hidden-visually">Aliya Budimir Designs</h1>
<!-- Menu -->
<nav id="nav">
<ul id="menu">
<li class="menu-item"><a class="menu-link" href="index.html" title="Home of Beautiful Designs"><i class="fa fa-camera"></i><br>Gallery</a></li>
<li class="menu-item"><a class="menu-link" href="about.html" title="Get to Know Me"><i class="fa fa-file-text"></i><br>About Me</a></li>
</ul>
</nav>
</header>
<!-- Logo -->
<div id="logo">
<a href="index.html" title="Aliya Budimir Designs"><img class="logo-img" src="./img/logo.png" alt="Aliya Budimir Designs logo"></a>
</div>
<!-- Portfolio gallery -->
<main id="gallery">
<!-- Filters -->
<section id="filters">
<h2 class="hidden-visually">Filter buttons</h2>
<button class="filter-btn" title="All my projects">All</button>
<button class="filter-btn" title="Branding projects">Branding</button>
<button class="filter-btn" title="Graphical Design">Graphical Design</button>
<button class="filter-btn" title="Interior Design">Interior Design</button>
<button class="filter-btn" title="Illustrations">Illustrations</button>
<button class="filter-btn" title="Arts">Arts</button>
</section>
<!-- Gallery -->
<section id="grid-gallery">
<h2 class="hidden-visually">Projects Gallery</h2>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/SG_9.jpg"><img class="image-thumb" src="./img/thumb/SG_9.jpg" loading="lazy" alt="Office Reception">
<div class="project-details">
<h3 class="image-title">Reception</h3>
<p class="summary">Project: Office Space Design;
<br>
Area: 500m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">An office space design for an
international logistics company with loft accents and
panoramic view. Large windows that let in a lot of sunlight
were the starting point for the design concept- to maintain the
airiness and lots of light, yet zone each particular
department. The monochrome color palette is complented by touches
of green plants, brining some color and nature into the
office space.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/SG_6.jpg"><img class="image-thumb" src="./img/thumb/SG_6.jpg" loading="lazy" alt="CEO’s office">
<div class="project-details">
<h3 class="image-title">CEO’s office</h3>
<p class="summary">Project: Office Space Design;
<br>
Area: 500m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">An office space design for an
international logistics company with loft accents and
panoramic view. Large windows that let in a lot of sunlight
were the starting point for the design concept- to maintain the
airiness and lots of light, yet zone each particular
department. The monochrome color palette is complented by touches
of green plants, brining some color and nature into the
office space.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/SG_5.jpg"><img class="image-thumb" src="./img/thumb/SG_5.jpg" loading="lazy" alt="Canteen">
<div class="project-details">
<h3 class="image-title">Canteen</h3>
<p class="summary">Project: Office Space Design;
<br>
Area: 500m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">An office space design for an
international logistics company with loft accents and
panoramic view. Large windows that let in a lot of sunlight
were the starting point for the design concept- to maintain the
airiness and lots of light, yet zone each particular
department. The monochrome color palette is complented by touches
of green plants, brining some color and nature into the
office space.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/SG_3.jpg"><img class="image-thumb" src="./img/thumb/SG_3.jpg" loading="lazy" alt="Open space">
<div class="project-details">
<h3 class="image-title">Open space</h3>
<p class="summary">Project: Office Space Design;
<br>
Area: 500m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">An office space design for an
international logistics company with loft accents and
panoramic view. Large windows that let in a lot of sunlight
were the starting point for the design concept- to maintain the
airiness and lots of light, yet zone each particular
department. The monochrome color palette is complented by touches
of green plants, brining some color and nature into the
office space.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/MD_6.jpg"><img class="image-thumb" src="./img/thumb/MD_6.jpg" loading="lazy" alt="Kitchen to hall">
<div class="project-details">
<h3 class="image-title">Kitchen to hall</h3>
<p class="summary">Project: Apartment Interior Design;
<br>
Area: 94m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A 94m<sup class="square">2</sup> apartment with studio living room and
two bedrooms was turned into an artsy space with bold concrete
ceilings and overall industrial feeling, which is softened by warm
wooden floors and pastel color touches. The initial grid-style layout
was redesigned, skewing the walls of the bedroom and creating irregular
angles, which added a sense of more space and broke the monotonous
continuity of the corridor.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/MD_5.jpg"><img class="image-thumb" src="./img/thumb/MD_5.jpg" loading="lazy" alt="Kitchen">
<div class="project-details">
<h3 class="image-title">Kitchen</h3>
<p class="summary">Project: Apartment Interior Design;
<br>
Area: 94m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A 94m<sup class="square">2</sup> apartment with studio living room and
two bedrooms was turned into an artsy space with bold concrete
ceilings and overall industrial feeling, which is softened by warm
wooden floors and pastel color touches. The initial grid-style layout
was redesigned, skewing the walls of the bedroom and creating irregular
angles, which added a sense of more space and broke the monotonous
continuity of the corridor.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/MD_7.jpg"><img class="image-thumb" src="./img/thumb/MD_7.jpg" loading="lazy" alt="Living room view 1">
<div class="project-details">
<h3 class="image-title">Living room view 1</h3>
<p class="summary">Project: Apartment Interior Design;
<br>
Area: 94m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A 94m<sup class="square">2</sup> apartment with studio living room and
two bedrooms was turned into an artsy space with bold concrete
ceilings and overall industrial feeling, which is softened by warm
wooden floors and pastel color touches. The initial grid-style layout
was redesigned, skewing the walls of the bedroom and creating irregular
angles, which added a sense of more space and broke the monotonous
continuity of the corridor.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/MD_8.jpg"><img class="image-thumb" src="./img/thumb/MD_8.jpg" loading="lazy" alt="Living room view 2">
<div class="project-details">
<h3 class="image-title">Living room view 2</h3>
<p class="summary">Project: Apartment Interior Design;
<br>
Area: 94m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A 94m<sup class="square">2</sup> apartment with studio living room and
two bedrooms was turned into an artsy space with bold concrete
ceilings and overall industrial feeling, which is softened by warm
wooden floors and pastel color touches. The initial grid-style layout
was redesigned, skewing the walls of the bedroom and creating irregular
angles, which added a sense of more space and broke the monotonous
continuity of the corridor.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/CA_1.jpg"><img class="image-thumb" src="./img/thumb/CA_1.jpg" loading="lazy" alt="Tennis room view 1">
<div class="project-details">
<h3 class="image-title">Tennis room view 1</h3>
<p class="summary">Project: Common space design;
<br>
Area: 120m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A common space for a residential complex with a
variety of different zones to facilitate the residents in physical
and mental activities within one space. The core design idea lies in
creating a flexible space that can be divided into smaller spaces with
the help of sound absorbing curtains, when necessary.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/CA_3.jpg"><img class="image-thumb" src="./img/thumb/CA_3.jpg" loading="lazy" alt="Study area view 1">
<div class="project-details">
<h3 class="image-title">Study area view 1</h3>
<p class="summary">Project: Common space design;
<br>
Area: 120m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A common space for a residential complex with a
variety of different zones to facilitate the residents in physical
and mental activities within one space. The core design idea lies in
creating a flexible space that can be divided into smaller spaces with
the help of sound absorbing curtains, when necessary.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/CA_10.jpg"><img class="image-thumb" src="./img/thumb/CA_10.jpg" loading="lazy" alt="Yoga and dance studio">
<div class="project-details">
<h3 class="image-title">Yoga and dance studio</h3>
<p class="summary">Project: Common space design;
<br>
Area: 120m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A common space for a residential complex with a
variety of different zones to facilitate the residents in physical
and mental activities within one space. The core design idea lies in
creating a flexible space that can be divided into smaller spaces with
the help of sound absorbing curtains, when necessary.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/CA_8.jpg"><img class="image-thumb" src="./img/thumb/CA_8.jpg" loading="lazy" alt="Meeting area View 1">
<div class="project-details">
<h3 class="image-title">Meeting area View 1</h3>
<p class="summary">Project: Common space design;
<br>
Area: 120m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A common space for a residential complex with a
variety of different zones to facilitate the residents in physical
and mental activities within one space. The core design idea lies in
creating a flexible space that can be divided into smaller spaces with
the help of sound absorbing curtains, when necessary.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/MC_1_ed.jpg"><img class="image-thumb" src="./img/thumb/MC_1_ed.jpg" loading="lazy" alt="Private House Façade">
<div class="project-details">
<h3 class="image-title">View 1</h3>
<p class="summary">Project: Private House Façade;
<br>
Area: 500m<sup class="square">2</sup>;
<br>
Location: Moscow, Russia</p>
<p class="description">A design concept of a facade for a private house
with a spice of eastern culture. The objective was to select finishes
and create a design of a facade for an already built house, that would
suit the visual style of the complex it was located in. It was important
to keep the visual unity with the rest of the complex, while accentuating
the unique architectural features of the house.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/MC_2_ed.jpg"><img class="image-thumb" src="./img/thumb/MC_2_ed.jpg" loading="lazy" alt="Private House Façade">
<div class="project-details">
<h3 class="image-title">View 2</h3>
<p class="summary">Project: Private House Façade;
<br>
Area: 500m<sup class="square">2</sup>;
<br>
Location: Moscow, Russia</p>
<p class="description">A design concept of a facade for a private house
with a spice of eastern culture. The objective was to select finishes
and create a design of a facade for an already built house, that would
suit the visual style of the complex it was located in. It was important
to keep the visual unity with the rest of the complex, while accentuating
the unique architectural features of the house.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/MC_4_ed.jpg"><img class="image-thumb" src="./img/thumb/MC_4_ed.jpg" loading="lazy" alt="Private House Façade">
<div class="project-details">
<h3 class="image-title">View 3</h3>
<p class="summary">Project: Private House Façade;
<br>
Area: 500m<sup class="square">2</sup>;
<br>
Location: Moscow, Russia</p>
<p class="description">A design concept of a facade for a private house
with a spice of eastern culture. The objective was to select finishes
and create a design of a facade for an already built house, that would
suit the visual style of the complex it was located in. It was important
to keep the visual unity with the rest of the complex, while accentuating
the unique architectural features of the house.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/MC_3_ed.jpg"><img class="image-thumb" src="./img/thumb/MC_3_ed.jpg" loading="lazy" alt="Private House Façade">
<div class="project-details">
<h3 class="image-title">View 4</h3>
<p class="summary">Project: Private House Façade;
<br>
Area: 500m<sup class="square">2</sup>;
<br>
Location: Moscow, Russia</p>
<p class="description">A design concept of a facade for a private house
with a spice of eastern culture. The objective was to select finishes
and create a design of a facade for an already built house, that would
suit the visual style of the complex it was located in. It was important
to keep the visual unity with the rest of the complex, while accentuating
the unique architectural features of the house.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Branding">
<a class="lightbox" href="./img/full/BSC1.jpg"><img class="image-thumb" src="./img/thumb/BSC1.jpg" loading="lazy" alt="Business card">
<div class="project-details">
<h3 class="image-title">Business card</h3>
<p class="summary">Project: Maternity Clothes Boutique</p>
<p class="description">A boutique for maternity clothes and accessories. The task
was to visually communicate the new stage the woman was entering, the gentleness,
the care and the love.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Branding">
<a class="lightbox" href="./img/full/LG1.jpg"><img class="image-thumb" src="./img/thumb/LG1.jpg" loading="lazy" alt="Boutique signboard">
<div class="project-details">
<h3 class="image-title">Boutique signboard</h3>
<p class="summary">Project: Maternity Clothes Boutique Logo Design</p>
<p class="description">A boutique for maternity clothes and accessories. The task
was to visually communicate the new stage the woman was entering, the gentleness,
the care and the love.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Branding">
<a class="lightbox" href="./img/full/LG3.jpg"><img class="image-thumb" src="./img/thumb/LG3.jpg" loading="lazy" alt="Events Planning Studio">
<div class="project-details">
<h3 class="image-title">Boutique signboard</h3>
<p class="summary">Project: Events Planning Studio</p>
<p class="description">A creative studio for events planning and decoration. The logo
communicates attentiveness to details and individual approach to each client in its
intricate logo details.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Branding">
<a class="lightbox" href="./img/full/LG2.jpg"><img class="image-thumb" src="./img/thumb/LG2.jpg" loading="lazy" alt="Logo Design">
<div class="project-details">
<h3 class="image-title">Logo Design</h3>
<p class="summary">Project: Organic Cosmetics Branding</p>
<p class="description">Branding design for a young and developing oragnic cosmetics brand,
including logo and packaging design for the products. The aim was to keep the design in
a fresh color palette, easy-to-read and appealing.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Graphical Design">
<a class="lightbox" href="./img/full/SVG.jpg"><img class="image-thumb" src="./img/thumb/SVG.jpg" loading="lazy" alt="Magazine layout design">
<div class="project-details">
<h3 class="image-title">Magazine layout design</h3>
<p class="summary">Project: Sauvage fashion magazine; Layout design and preparation for printing</p>
<p class="description">A new layout design approach for a montly fashion magazine's special
edition. The task was to create a new, more modern and visually appealing approach to a
layout design, yet keeping the general style of an in-between magazine and a newspaper.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Graphical Design">
<a class="lightbox" href="./img/full/SVG_2.jpg"><img class="image-thumb" src="./img/thumb/SVG_2.jpg" loading="lazy" alt="Magazine layout design">
<div class="project-details">
<h3 class="image-title">Magazine layout design</h3>
<p class="summary">Project: Sauvage fashion magazine; Layout design and preparation for printing</p>
<p class="description">A new layout design approach for a montly fashion magazine's special
edition. The task was to create a new, more modern and visually appealing approach to a
layout design, yet keeping the general style of an in-between magazine and a newspaper.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Graphical Design">
<a class="lightbox" href="./img/full/SVG_3.jpg"><img class="image-thumb" src="./img/thumb/SVG_3.jpg" loading="lazy" alt="Magazine layout design">
<div class="project-details">
<h3 class="image-title">Magazine layout design</h3>
<p class="summary">Project: Sauvage fashion magazine; Layout design and preparation for printing</p>
<p class="description">A new layout design approach for a montly fashion magazine's special
edition. The task was to create a new, more modern and visually appealing approach to a
layout design, yet keeping the general style of an in-between magazine and a newspaper.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Graphical Design">
<a class="lightbox" href="./img/full/INV1.jpg"><img class="image-thumb" src="./img/thumb/INV1.jpg" loading="lazy" alt="Wedding invitation design">
<div class="project-details">
<h3 class="image-title">Wedding invitation design</h3>
<p class="summary">Project: Aliya and Ante's wedding</p>
<p class="description">The invitation reflects the easy atmosphere of the wedding with
personal touches to the details and design elements, yet keeping it simple and light.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Graphical Design">
<a class="lightbox" href="./img/full/INV2.jpg"><img class="image-thumb" src="./img/thumb/INV2.jpg" loading="lazy" alt="Wedding invitation design">
<div class="project-details">
<h3 class="image-title">Wedding invitation design</h3>
<p class="summary">Project: Vintage voyage wedding</p>
<p class="description">The invitation communicates to the guests the general theme of wedding
through design, font, location information and decor elements.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Graphical Design">
<a class="lightbox" href="./img/full/MO.jpg"><img class="image-thumb" src="./img/thumb/MO.jpg" loading="lazy" alt="Website layout design">
<div class="project-details">
<h3 class="image-title">Website layout design</h3>
<p class="summary">Project: Little Olympian sports academy for preschool and lower school children;
<br>
See the entire project: https://www.maliolimpijac.antebudimir.com/</p>
<p class="description">A simple and unbiased to any particular theme design for a landing page
of a sports club for little children. The color scheme and fonts clearly state the purpose
of the club, the clear visual communications and division into sections gives a quick and easy
navigation throughout the page.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Branding">
<a class="lightbox" href="./img/full/green_pesto.jpg"><img class="image-thumb" src="./img/thumb/green_pesto.jpg" loading="lazy" alt="Green pesto packaging">
<div class="project-details">
<h3 class="image-title">Green pesto packaging</h3>
<p class="summary">Project: Be Happy organic food products</p>
<p class="description">Branding design for a young and developing organic foods brand, including
logo and packaging design for the products. The client wanted to communicate with potential
customers through blackboard and chalk doodles-like design, yet making it universal for all
the brand products.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Branding">
<a class="lightbox" href="./img/full/chips.jpg"><img class="image-thumb" src="./img/thumb/chips.jpg" loading="lazy" alt="Fruit chips packaging">
<div class="project-details">
<h3 class="image-title">Fruit chips packaging</h3>
<p class="summary">Project: Be Happy organic food products</p>
<p class="description">Branding design for a young and developing organic foods brand, including
logo and packaging design for the products. The client wanted to communicate with potential
customers through blackboard and chalk doodles-like design, yet making it universal for all
the brand products.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Branding">
<a class="lightbox" href="./img/full/plum.jpg"><img class="image-thumb" src="./img/thumb/plum.jpg" loading="lazy" alt="Sun-dried plum packaging">
<div class="project-details">
<h3 class="image-title">Sun-dried plum packaging</h3>
<p class="summary">Project: Be Happy organic food products</p>
<p class="description">Branding design for a young and developing organic foods brand, including
logo and packaging design for the products. The client wanted to communicate with potential
customers through blackboard and chalk doodles-like design, yet making it universal for all
the brand products.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Branding">
<a class="lightbox" href="./img/full/04_PESTO.jpg"><img class="image-thumb" src="./img/thumb/04_PESTO.jpg" loading="lazy" alt="Red pesto packaging">
<div class="project-details">
<h3 class="image-title">Red pesto packaging</h3>
<p class="summary">Project: Be Happy organic food products</p>
<p class="description">Branding design for a young and developing organic foods brand, including
logo and packaging design for the products. The client wanted to communicate with potential
customers through blackboard and chalk doodles-like design, yet making it universal for all
the brand products.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/TC_4.jpg"><img class="image-thumb" src="./img/thumb/TC_4.jpg" loading="lazy" alt="Car washing bay">
<div class="project-details">
<h3 class="image-title">Car washing bay and waiting area</h3>
<p class="summary">Project: Underground Parking Car Wash;
<br>
Area: 135m<sup class="square">2</sup>;
<br>
Location: Astana, Kazakhstan</p>
<p class="description">A design concept for an undeground parking lot car wash, that would reflect
architectural and design features of the complex it is located in. The eye-catching reception
and washing bay entrances not only reflect on the general design of the complex, but also stand
out in the monotonous car parking space.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/TC_5.jpg"><img class="image-thumb" src="./img/thumb/TC_5.jpg" loading="lazy" alt="Car washing Reception">
<div class="project-details">
<h3 class="image-title">Reception</h3>
<p class="summary">Project: Underground Parking Car Wash;
<br>
Area: 135m<sup class="square">2</sup>;
<br>
Location: Astana, Kazakhstan</p>
<p class="description">A design concept for an undeground parking lot car wash, that would reflect
architectural and design features of the complex it is located in. The eye-catching reception
and washing bay entrances not only reflect on the general design of the complex, but also stand
out in the monotonous car parking space.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/TC_6.jpg"><img class="image-thumb" src="./img/thumb/TC_6.jpg" loading="lazy" alt="Receptionist desk">
<div class="project-details">
<h3 class="image-title">Receptionist desk</h3>
<p class="summary">Project: Underground Parking Car Wash;
<br>
Area: 135m<sup class="square">2</sup>;
<br>
Location: Astana, Kazakhstan</p>
<p class="description">A design concept for an undeground parking lot car wash, that would reflect
architectural and design features of the complex it is located in. The eye-catching reception
and washing bay entrances not only reflect on the general design of the complex, but also stand
out in the monotonous car parking space.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/TC_3.jpg"><img class="image-thumb" src="./img/thumb/TC_3.jpg" loading="lazy" alt="Car washing bays">
<div class="project-details">
<h3 class="image-title">Car washing bays</h3>
<p class="summary">Project: Underground Parking Car Wash;
<br>
Area: 135m<sup class="square">2</sup>;
<br>
Location: Astana, Kazakhstan</p>
<p class="description">A design concept for an undeground parking lot car wash, that would reflect
architectural and design features of the complex it is located in. The eye-catching reception
and washing bay entrances not only reflect on the general design of the complex, but also stand
out in the monotonous car parking space.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/SG_8.jpg"><img class="image-thumb" src="./img/thumb/SG_8.jpg" loading="lazy" alt="Lawyer’s office">
<div class="project-details">
<h3 class="image-title">Lawyer’s office</h3>
<p class="summary">Project: Office Space Design;
<br>
Area: 500m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">An office space design for an international logistics company with loft
accents and panoramic view. Large windows that let in a lot of sunlight were the starting
point for the design concept- to maintain the airiness and lots of light, yet zone each
particular department. The monochrome color palette is complented by touches of green plants,
brining some color and nature into the office space.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/SG_7.jpg"><img class="image-thumb" src="./img/thumb/SG_7.jpg" loading="lazy" alt="CEO’s office meeting area">
<div class="project-details">
<h3 class="image-title">CEO’s office meeting area</h3>
<p class="summary">Project: Office Space Design;
<br>
Area: 500m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">An office space design for an international logistics company with loft
accents and panoramic view. Large windows that let in a lot of sunlight were the starting
point for the design concept- to maintain the airiness and lots of light, yet zone each
particular department. The monochrome color palette is complented by touches of green plants,
brining some color and nature into the office space.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/SG_2.jpg"><img class="image-thumb" src="./img/thumb/SG_2.jpg" loading="lazy" alt="Private meeting area">
<div class="project-details">
<h3 class="image-title">Private meeting area</h3>
<p class="summary">Project: Office Space Design;
<br>
Area: 500m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">An office space design for an international logistics company with loft
accents and panoramic view. Large windows that let in a lot of sunlight were the starting
point for the design concept- to maintain the airiness and lots of light, yet zone each
particular department. The monochrome color palette is complented by touches of green plants,
brining some color and nature into the office space.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/SG_4.jpg"><img class="image-thumb" src="./img/thumb/SG_4.jpg" loading="lazy" alt="Open space view 2">
<div class="project-details">
<h3 class="image-title">Open space view 2</h3>
<p class="summary">Project: Office Space Design;
<br>
Area: 500m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">An office space design for an international logistics company with loft
accents and panoramic view. Large windows that let in a lot of sunlight were the starting
point for the design concept- to maintain the airiness and lots of light, yet zone each
particular department. The monochrome color palette is complented by touches of green plants,
brining some color and nature into the office space.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/CA_2.jpg"><img class="image-thumb" src="./img/thumb/CA_2.jpg" loading="lazy" alt="Tennis room view 2">
<div class="project-details">
<h3 class="image-title">Tennis room view 2</h3>
<p class="summary">Project: Common space design;
<br>
Area: 120m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A common space for a residential complex with a variety of different zones to
facilitate the residents in physical and mental activities within one space. The core design idea
lies in creating a flexible space that can be opened or closed with the help of sound absorbing
curtains, that create a series of smaller spaces from one bigger space when necessary.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/CA_6.jpg"><img class="image-thumb" src="./img/thumb/CA_6.jpg" loading="lazy" alt="Study area view 2">
<div class="project-details">
<h3 class="image-title">Study area view 2</h3>
<p class="summary">Project: Common space design;
<br>
Area: 120m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A common space for a residential complex with a variety of different zones to
facilitate the residents in physical and mental activities within one space. The core design idea
lies in creating a flexible space that can be opened or closed with the help of sound absorbing
curtains, that create a series of smaller spaces from one bigger space when necessary.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/CA_9.jpg"><img class="image-thumb" src="./img/thumb/CA_9.jpg" loading="lazy" alt="Kitchen">
<div class="project-details">
<h3 class="image-title">Kitchen</h3>
<p class="summary">Project: Common space design;
<br>
Area: 120m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A common space for a residential complex with a variety of different zones to
facilitate the residents in physical and mental activities within one space. The core design idea
lies in creating a flexible space that can be opened or closed with the help of sound absorbing
curtains, that create a series of smaller spaces from one bigger space when necessary.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/CA_7.jpg"><img class="image-thumb" src="./img/thumb/CA_7.jpg" loading="lazy" alt="Meeting area View 2">
<div class="project-details">
<h3 class="image-title">Meeting area View 2</h3>
<p class="summary">Project: Common space design;
<br>
Area: 120m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A common space for a residential complex with a variety of different zones to
facilitate the residents in physical and mental activities within one space. The core design idea
lies in creating a flexible space that can be opened or closed with the help of sound absorbing
curtains, that create a series of smaller spaces from one bigger space when necessary.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/CA_5.jpg"><img class="image-thumb" src="./img/thumb/CA_5.jpg" loading="lazy" alt="Changing room View 1">
<div class="project-details">
<h3 class="image-title">Changing room View 1</h3>
<p class="summary">Project: Common space design;
<br>
Area: 120m<sup class="square">2</sup>;
<br>
Location: Almaty, Kazakhstan</p>
<p class="description">A common space for a residential complex with a variety of different zones to
facilitate the residents in physical and mental activities within one space. The core design idea
lies in creating a flexible space that can be opened or closed with the help of sound absorbing
curtains, that create a series of smaller spaces from one bigger space when necessary.</p>
<span class="hide-on-desktop">Tap for Full Size</span>
</div>
</a>
</div>
<div class="placeholder" data-filter="Interior Design">
<a class="lightbox" href="./img/full/CA_4.jpg"><img class="image-thumb" src="./img/thumb/CA_4.jpg" loading="lazy" alt="Changing room View 2">
<div class="project-details">
<h3 class="image-title">Changing room View 2</h3>
<p class="summary">Project: Common space design;