-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
1082 lines (1018 loc) · 108 KB
/
contact.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">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="src/sass/krediet.style.css">
<title>Document</title>
</head>
<body>
<nav class="main-nav d-flex justify-content-between">
<div class="d-flex">
<a href="index.html" class="main-nav__logo">
<img src="assets/images/logo.svg" alt="logo">
</a>
</div>
<ul class="main-nav__list d-flex flex-fill ">
<li class="main-nav__list__item main-nav__list__item-home flex-fill ">
<a href="lening-simulatie.html" class="nav-link">Simulatie</a>
</li>
<li class="main-nav__list__item flex-fill hide-for-tablet">
<a href="woonkrediet.html" class="nav-link">woonkrediet</a>
</li>
<li class="main-nav__list__item flex-fill hide-for-tablet">
<a href="lening-op-afbetaling.html" class="nav-link">lening</a>
</li>
<li class="main-nav__list__item flex-fill hide-for-tablet">
<a href="blog.html" class="nav-link">blog</a>
</li>
<li class="main-nav__list__item flex-fill hide-for-tablet">
<a href="kantoren.html" class="nav-link">kantoren</a>
</li>
<li class="main-nav__list__item flex-fill hide-for-tablet">
<a href="contact.html" class="nav-link">contact</a>
</li>
<li class="main-nav__list__item hide-for-desktop">
<a href="#" class="nav-link mobile-nav__item__link hamburger" id="hamburger-1">
<span class="line"></span>
<span class="line"></span>
<span class="line"></span>
</a>
</li>
<li class="main-nav__list__item hide-for-desktop hide-for-mobile">
<a href="#" class="nav-link mobile-nav__item__link">FR</a>
</li>
</ul>
</nav>
<div class="mobile-nav hide-for-desktop">
<div class="h-100 d-flex flex-column justify-content-between">
<ul class="mobile-nav__list">
<li class="mobile-nav__list__item">
<a href="woonkrediet.html" class="nav-link">woonkrediet</a>
</li>
<li class="mobile-nav__list__item">
<a href="lening-op-afbetaling.html" class="nav-link">lening</a>
</li>
<li class="mobile-nav__list__item">
<a href="blog.html" class="nav-link">blog</a>
</li>
<li class="mobile-nav__list__item">
<a href="kantoren.html" class="nav-link">kantoren</a>
</li>
<li class="mobile-nav__list__item">
<a href="contact.html" class="nav-link">contact</a>
</li>
</ul>
<div class="show-for-mobile-only">
<ul class="mobile-nav__language-container d-flex justify-content-center align-items-center">
<li class="mobile-nav__language__item">
<a class="mobile-nav__language__item__link mobile-nav__language__item__link-left" href="">NL</a>
</li>
<li class="mobile-nav__language__item">
<a class="mobile-nav__language__item__link mobile-nav__language__item__link-right mobile-nav__language__item__link-active" href="">FR</a>
</li>
</ul>
</div>
</div>
</div>
<div class="hidden-nav"></div>
<section class="contact-form intro">
<h1 class="text-center">contacteer ons</h1>
<div class="container">
<form action="">
<div class="row">
<div class="col-12 col-sm-6 col-lg6">
<div class="form__item">
<label class="form__item__label">Voornaam</label>
<input class="form__item__input" type="text" placeholder="">
</div>
</div>
<div class="col-12 col-sm-6 col-lg6">
<div class="form__item">
<label class="form__item__label">Achternaam</label>
<input class="form__item__input" type="text" placeholder="">
</div>
</div>
<div class="col-12 col-sm-6 col-lg6">
<div class="form__item">
<label class="form__item__label">Emailadres</label>
<input class="form__item__input" type="email" placeholder="">
</div>
</div>
<div class="col-12 col-sm-6 col-lg6">
<div class="form__item">
<label class="form__item__label">GSM/Telefoon</label>
<input class="form__item__input" type="text" placeholder="">
</div>
</div>
<div class="col-12 col-sm-6 col-lg6">
<div class="form__item">
<label class="form__item__label">Postcode</label>
<input class="form__item__input" type="text" placeholder="">
</div>
</div>
</div>
<div class="row contact-form__radio">
<div class="col-12 col-sm-12 col-md-6 col-lg-6 checkbox__woonkrediet">
<p class="contact-form__select__title">Woonkrediet</p>
<div class="select d-flex flex-wrap justify-content-space">
<label for="woonkrediet" class="checkbox">
<input type="checkbox" name="woonkrediet" id="woonkrediet" class="hidden" value="Aankoop">
<span class="label"></span>Aankoop
</label>
<label for="woonkrediet2" class="checkbox">
<input type="checkbox" name="woonkrediet" id="woonkrediet2" class="hidden" value="Overbrugging">
<span class="label"></span>Overbrugging
</label>
<label for="woonkrediet3" class="checkbox">
<input type="checkbox" name="woonkrediet" id="woonkrediet3" class="hidden" value="Overbrugging">
<span class="label"></span>Herfinanciering
</label>
<label for="woonkrediet4" class="checkbox">
<input type="checkbox" name="woonkrediet" id="woonkrediet4" class="hidden" value="Overbrugging">
<span class="label"></span>Erfenis
</label>
<label for="woonkrediet5" class="checkbox">
<input type="checkbox" name="woonkrediet" id="woonkrediet5" class="hidden" value="Overbrugging">
<span class="label"></span>Uitkopen
</label>
<label for="woonkrediet6" class="checkbox">
<input type="checkbox" name="woonkrediet" id="woonkrediet6" class="hidden" value="Overbrugging">
<span class="label"></span>Hergroeperen
</label>
<label for="woonkrediet7" class="checkbox">
<input type="checkbox" name="woonkrediet" id="woonkrediet7" class="hidden" value="Overbrugging">
<span class="label"></span>Opbrengsteigendom
</label>
<label for="woonkrediet8" class="checkbox">
<input type="checkbox" name="woonkrediet" id="woonkrediet8" class="hidden" value="Overbrugging">
<span class="label"></span>renovatie
</label>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-6 checkbox__lening-op-afbetaling">
<p class="contact-form__select__title">Lening op afbetaling</p>
<div class="select d-flex flex-wrap justify-content-space">
<label for="lening-op-afbetaling" class="checkbox">
<input type="checkbox" name="lening-op-afbetaling" id="lening-op-afbetaling" class="hidden" value="Aankoop">
<span class="label"></span>Aankoop
</label>
<label for="lening-op-afbetaling2" class="checkbox">
<input type="checkbox" name="lening-op-afbetaling" id="lening-op-afbetaling2" class="hidden" value="Overbrugging">
<span class="label"></span>Overbrugging
</label>
<label for="lening-op-afbetaling3" class="checkbox">
<input type="checkbox" name="lening-op-afbetaling" id="lening-op-afbetaling3" class="hidden" value="Overbrugging">
<span class="label"></span>Herfinanciering
</label>
<label for="lening-op-afbetaling4" class="checkbox">
<input type="checkbox" name="lening-op-afbetaling" id="lening-op-afbetaling4" class="hidden" value="Overbrugging">
<span class="label"></span>Erfenis
</label>
<label for="lening-op-afbetaling5" class="checkbox">
<input type="checkbox" name="lening-op-afbetaling" id="lening-op-afbetaling5" class="hidden" value="Overbrugging">
<span class="label"></span>Uitkopen
</label>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-sm-12 col-lg-12">
<div class="form__item">
<label class="form__item__label">Licht jouw vraag toe</label>
<textarea rows="8" cols="30"></textarea>
</div>
</div>
<input type="submit" value="verzend je aanvraag">
</div>
<!-- </div> -->
</form>
</div>
</section>
<section class="offices">
<div class="container">
<div class="row">
<div class="col-12 col-sm-6 col-lg-3">
<div class="office">
<a class="office__link" href=""></a>
<div class="d-flex align-items-end">
<svg class="office__image" width="23px" height="34px" viewBox="0 0 23 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>pin</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-151.000000, -915.000000)" stroke="#0A51A1" stroke-width="2">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="pin" transform="translate(16.000000, 16.000000)">
<path d="M10.6666667,0.946666667 C16.1895142,0.946666667 20.6666667,5.42381917 20.6666667,10.9466667 C20.6666667,15.676 13.3333333,27.4546667 11.228,30.7466667 C11.1054293,30.9379712 10.8938692,31.0536816 10.6666667,31.0536816 C10.4394641,31.0536816 10.227904,30.9379712 10.1053333,30.7466667 C8,27.456 0.666666667,15.676 0.666666667,10.9466667 C0.666666667,5.42381917 5.14381917,0.946666667 10.6666667,0.946666667 Z" id="Path"></path>
<circle id="Oval" cx="10.6666667" cy="10.9466667" r="4"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>
<h4 class="office__name">Kantoornaam</h4>
</div>
<p class="office__address">
Ditiseenstraat 336
<br>
2100 Plaatsnaam
</p>
<div class="d-flex align-items-center">
<a class="office__phone" href="tel:2476248">
<svg class="office__image" width="19px" height="16px" viewBox="0 0 19 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>phone-incoming-call</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -788.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM">
<g id="phone-incoming-call" transform="translate(16.000000, 124.000000)">
<path d="M16.7041667,9.4216 L16.7041667,9.4216 C11.9506226,8.438823 7.04937744,8.438823 2.29583333,9.4216 C0.988428891,9.71164747 0.0427845264,10.8616609 0,12.2136 L0,13.4136 C1.3386168e-16,14.5181695 0.886103099,15.4136 1.97916667,15.4136 L4.35416667,15.4136 C5.44723023,15.4136 6.33333333,14.5181695 6.33333333,13.4136 L6.33333333,12.9776 C8.44031071,12.788799 10.5596893,12.788799 12.6666667,12.9776 L12.6666667,13.4136 C12.6666667,14.5181695 13.5527698,15.4136 14.6458333,15.4136 L17.0208333,15.4136 C18.1138969,15.4136 19,14.5181695 19,13.4136 L19,12.2136 C18.9572155,10.8616609 18.0115711,9.71164747 16.7041667,9.4216 Z" id="Path"></path>
<path d="M9.10416667,6.4136 C9.65069845,6.4136 10.09375,5.96588475 10.09375,5.4136 L10.09375,1.5864 C10.09375,1.03411525 9.65069845,0.5864 9.10416667,0.5864 C8.55763488,0.5864 8.11458333,1.03411525 8.11458333,1.5864 L8.11458333,5.4136 C8.11458333,5.96588475 8.55763488,6.4136 9.10416667,6.4136 L9.10416667,6.4136 Z" id="Path"></path>
<path d="M12.7925417,7.68 C13.056656,7.6805004 13.3099193,7.57386324 13.4955417,7.384 L16.1405,4.6888 C16.525477,4.29645691 16.5228187,3.66302939 16.1345625,3.27400001 C15.7463063,2.88497064 15.119477,2.88765693 14.7345,3.28 L12.0895417,5.9776 C11.8082967,6.26430834 11.7252324,6.69378412 11.8789583,7.06640001 C12.0326842,7.43901591 12.393046,7.68168076 12.7925417,7.6816 L12.7925417,7.68 Z" id="Path"></path>
<path d="M4.71279167,7.3856 C5.09755004,7.77794309 5.72420215,7.78080846 6.11245833,7.392 C6.50071451,7.00319154 6.50355004,6.36994309 6.11879167,5.9776 L3.47383333,3.28 C3.08907496,2.88765693 2.46242285,2.88479156 2.07416668,3.27360001 C1.68591051,3.66240847 1.68307497,4.29565691 2.06783333,4.688 L4.71279167,7.3856 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
03/366 03 63
</a>
</div>
<div class="d-flex align-items-center">
<a class="office__mail" href="mailto:[email protected]">
<svg class="office__image" width="19px" height="12px" viewBox="0 0 19 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>envelope</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -1060.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="envelope" transform="translate(16.000000, 160.000000)">
<path d="M8.79388995,8.02973502 C9.1837569,8.40034474 9.81464737,8.40034474 10.2045143,8.02973502 L17.9326295,0.661792375 C18.0396409,0.560139853 18.0772497,0.409580122 18.029784,0.272853164 C17.9823183,0.136126206 17.8579208,0.0366879201 17.7084296,0.0159753906 C17.6326123,0.00532476514 17.5560783,-1.42906077e-05 17.4794425,1.11892691e-06 L1.52215326,1.11892691e-06 C1.44498481,-8.88796185e-05 1.3679146,0.00525037558 1.29157043,0.0159753906 C1.14207916,0.0366879201 1.01768173,0.136126206 0.970216006,0.272853164 C0.92275028,0.409580122 0.960359132,0.560139853 1.06737052,0.661792375 L8.79388995,8.02973502 Z" id="Path"></path>
<path d="M18.9113324,0.934388621 C18.8571995,0.911710866 18.7945295,0.923767305 18.752999,0.964848732 L13.844666,5.80722525 C13.7675748,5.88369567 13.7675748,6.00723892 13.844666,6.08370933 L17.8370407,10.0224359 C17.9914586,10.1694367 18.0534635,10.3871989 17.9992238,10.5920261 C17.9449842,10.7968533 17.782941,10.9568698 17.5753752,11.0105737 C17.3678093,11.0642776 17.1470227,11.0033113 16.9978741,10.8511071 L13.0054993,6.91238054 C12.9683685,6.87565592 12.9179518,6.85501643 12.8653743,6.85501643 C12.8127969,6.85501643 12.7623802,6.87565592 12.7252493,6.91238054 L11.0397911,8.57519015 C10.1896858,9.4134033 8.81189659,9.4134033 7.96179126,8.57519015 L6.27474968,6.9139426 C6.19723768,6.83788739 6.07201169,6.83788739 5.99449969,6.9139426 L2.0021249,10.8526692 C1.76904426,11.0745543 1.3987184,11.0712084 1.16979593,10.8451491 C0.940873462,10.6190898 0.937831202,10.2537372 1.16295827,10.023998 L5.15533307,6.08527139 C5.2324242,6.00880097 5.2324242,5.88525772 5.15533307,5.80878731 L0.246999987,0.966410789 C0.205688376,0.924926083 0.142750275,0.912818073 0.0886666621,0.935950678 C0.035502453,0.957800719 0.000634345428,1.00878578 0,1.0656014 L0,10.4379431 C1.23085801e-16,11.3006433 0.708882443,12 1.58333325,12 L17.4166658,12 C18.2911166,12 18.999999,11.3006433 18.999999,10.4379431 L18.999999,1.0656014 C19.0002138,1.00815253 18.965167,0.956288778 18.9113324,0.934388621 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="office">
<a class="office__link" href=""></a>
<div class="d-flex align-items-end">
<svg class="office__image" width="23px" height="34px" viewBox="0 0 23 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>pin</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-151.000000, -915.000000)" stroke="#0A51A1" stroke-width="2">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="pin" transform="translate(16.000000, 16.000000)">
<path d="M10.6666667,0.946666667 C16.1895142,0.946666667 20.6666667,5.42381917 20.6666667,10.9466667 C20.6666667,15.676 13.3333333,27.4546667 11.228,30.7466667 C11.1054293,30.9379712 10.8938692,31.0536816 10.6666667,31.0536816 C10.4394641,31.0536816 10.227904,30.9379712 10.1053333,30.7466667 C8,27.456 0.666666667,15.676 0.666666667,10.9466667 C0.666666667,5.42381917 5.14381917,0.946666667 10.6666667,0.946666667 Z" id="Path"></path>
<circle id="Oval" cx="10.6666667" cy="10.9466667" r="4"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>
<h4 class="office__name">Kantoornaam</h4>
</div>
<p class="office__address">
Ditiseenstraat 336
<br>
2100 Plaatsnaam
</p>
<div class="d-flex align-items-center">
<a class="office__phone" href="tel:2476248">
<svg class="office__image" width="19px" height="16px" viewBox="0 0 19 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>phone-incoming-call</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -788.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM">
<g id="phone-incoming-call" transform="translate(16.000000, 124.000000)">
<path d="M16.7041667,9.4216 L16.7041667,9.4216 C11.9506226,8.438823 7.04937744,8.438823 2.29583333,9.4216 C0.988428891,9.71164747 0.0427845264,10.8616609 0,12.2136 L0,13.4136 C1.3386168e-16,14.5181695 0.886103099,15.4136 1.97916667,15.4136 L4.35416667,15.4136 C5.44723023,15.4136 6.33333333,14.5181695 6.33333333,13.4136 L6.33333333,12.9776 C8.44031071,12.788799 10.5596893,12.788799 12.6666667,12.9776 L12.6666667,13.4136 C12.6666667,14.5181695 13.5527698,15.4136 14.6458333,15.4136 L17.0208333,15.4136 C18.1138969,15.4136 19,14.5181695 19,13.4136 L19,12.2136 C18.9572155,10.8616609 18.0115711,9.71164747 16.7041667,9.4216 Z" id="Path"></path>
<path d="M9.10416667,6.4136 C9.65069845,6.4136 10.09375,5.96588475 10.09375,5.4136 L10.09375,1.5864 C10.09375,1.03411525 9.65069845,0.5864 9.10416667,0.5864 C8.55763488,0.5864 8.11458333,1.03411525 8.11458333,1.5864 L8.11458333,5.4136 C8.11458333,5.96588475 8.55763488,6.4136 9.10416667,6.4136 L9.10416667,6.4136 Z" id="Path"></path>
<path d="M12.7925417,7.68 C13.056656,7.6805004 13.3099193,7.57386324 13.4955417,7.384 L16.1405,4.6888 C16.525477,4.29645691 16.5228187,3.66302939 16.1345625,3.27400001 C15.7463063,2.88497064 15.119477,2.88765693 14.7345,3.28 L12.0895417,5.9776 C11.8082967,6.26430834 11.7252324,6.69378412 11.8789583,7.06640001 C12.0326842,7.43901591 12.393046,7.68168076 12.7925417,7.6816 L12.7925417,7.68 Z" id="Path"></path>
<path d="M4.71279167,7.3856 C5.09755004,7.77794309 5.72420215,7.78080846 6.11245833,7.392 C6.50071451,7.00319154 6.50355004,6.36994309 6.11879167,5.9776 L3.47383333,3.28 C3.08907496,2.88765693 2.46242285,2.88479156 2.07416668,3.27360001 C1.68591051,3.66240847 1.68307497,4.29565691 2.06783333,4.688 L4.71279167,7.3856 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
03/366 03 63
</a>
</div>
<div class="d-flex align-items-center">
<a class="office__mail" href="mailto:[email protected]">
<svg class="office__image" width="19px" height="12px" viewBox="0 0 19 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>envelope</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -1060.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="envelope" transform="translate(16.000000, 160.000000)">
<path d="M8.79388995,8.02973502 C9.1837569,8.40034474 9.81464737,8.40034474 10.2045143,8.02973502 L17.9326295,0.661792375 C18.0396409,0.560139853 18.0772497,0.409580122 18.029784,0.272853164 C17.9823183,0.136126206 17.8579208,0.0366879201 17.7084296,0.0159753906 C17.6326123,0.00532476514 17.5560783,-1.42906077e-05 17.4794425,1.11892691e-06 L1.52215326,1.11892691e-06 C1.44498481,-8.88796185e-05 1.3679146,0.00525037558 1.29157043,0.0159753906 C1.14207916,0.0366879201 1.01768173,0.136126206 0.970216006,0.272853164 C0.92275028,0.409580122 0.960359132,0.560139853 1.06737052,0.661792375 L8.79388995,8.02973502 Z" id="Path"></path>
<path d="M18.9113324,0.934388621 C18.8571995,0.911710866 18.7945295,0.923767305 18.752999,0.964848732 L13.844666,5.80722525 C13.7675748,5.88369567 13.7675748,6.00723892 13.844666,6.08370933 L17.8370407,10.0224359 C17.9914586,10.1694367 18.0534635,10.3871989 17.9992238,10.5920261 C17.9449842,10.7968533 17.782941,10.9568698 17.5753752,11.0105737 C17.3678093,11.0642776 17.1470227,11.0033113 16.9978741,10.8511071 L13.0054993,6.91238054 C12.9683685,6.87565592 12.9179518,6.85501643 12.8653743,6.85501643 C12.8127969,6.85501643 12.7623802,6.87565592 12.7252493,6.91238054 L11.0397911,8.57519015 C10.1896858,9.4134033 8.81189659,9.4134033 7.96179126,8.57519015 L6.27474968,6.9139426 C6.19723768,6.83788739 6.07201169,6.83788739 5.99449969,6.9139426 L2.0021249,10.8526692 C1.76904426,11.0745543 1.3987184,11.0712084 1.16979593,10.8451491 C0.940873462,10.6190898 0.937831202,10.2537372 1.16295827,10.023998 L5.15533307,6.08527139 C5.2324242,6.00880097 5.2324242,5.88525772 5.15533307,5.80878731 L0.246999987,0.966410789 C0.205688376,0.924926083 0.142750275,0.912818073 0.0886666621,0.935950678 C0.035502453,0.957800719 0.000634345428,1.00878578 0,1.0656014 L0,10.4379431 C1.23085801e-16,11.3006433 0.708882443,12 1.58333325,12 L17.4166658,12 C18.2911166,12 18.999999,11.3006433 18.999999,10.4379431 L18.999999,1.0656014 C19.0002138,1.00815253 18.965167,0.956288778 18.9113324,0.934388621 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="office">
<a class="office__link" href=""></a>
<div class="d-flex align-items-end">
<svg class="office__image" width="23px" height="34px" viewBox="0 0 23 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>pin</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-151.000000, -915.000000)" stroke="#0A51A1" stroke-width="2">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="pin" transform="translate(16.000000, 16.000000)">
<path d="M10.6666667,0.946666667 C16.1895142,0.946666667 20.6666667,5.42381917 20.6666667,10.9466667 C20.6666667,15.676 13.3333333,27.4546667 11.228,30.7466667 C11.1054293,30.9379712 10.8938692,31.0536816 10.6666667,31.0536816 C10.4394641,31.0536816 10.227904,30.9379712 10.1053333,30.7466667 C8,27.456 0.666666667,15.676 0.666666667,10.9466667 C0.666666667,5.42381917 5.14381917,0.946666667 10.6666667,0.946666667 Z" id="Path"></path>
<circle id="Oval" cx="10.6666667" cy="10.9466667" r="4"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>
<h4 class="office__name">Kantoornaam</h4>
</div>
<p class="office__address">
Ditiseenstraat 336
<br>
2100 Plaatsnaam
</p>
<div class="d-flex align-items-center">
<a class="office__phone" href="tel:2476248">
<svg class="office__image" width="19px" height="16px" viewBox="0 0 19 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>phone-incoming-call</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -788.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM">
<g id="phone-incoming-call" transform="translate(16.000000, 124.000000)">
<path d="M16.7041667,9.4216 L16.7041667,9.4216 C11.9506226,8.438823 7.04937744,8.438823 2.29583333,9.4216 C0.988428891,9.71164747 0.0427845264,10.8616609 0,12.2136 L0,13.4136 C1.3386168e-16,14.5181695 0.886103099,15.4136 1.97916667,15.4136 L4.35416667,15.4136 C5.44723023,15.4136 6.33333333,14.5181695 6.33333333,13.4136 L6.33333333,12.9776 C8.44031071,12.788799 10.5596893,12.788799 12.6666667,12.9776 L12.6666667,13.4136 C12.6666667,14.5181695 13.5527698,15.4136 14.6458333,15.4136 L17.0208333,15.4136 C18.1138969,15.4136 19,14.5181695 19,13.4136 L19,12.2136 C18.9572155,10.8616609 18.0115711,9.71164747 16.7041667,9.4216 Z" id="Path"></path>
<path d="M9.10416667,6.4136 C9.65069845,6.4136 10.09375,5.96588475 10.09375,5.4136 L10.09375,1.5864 C10.09375,1.03411525 9.65069845,0.5864 9.10416667,0.5864 C8.55763488,0.5864 8.11458333,1.03411525 8.11458333,1.5864 L8.11458333,5.4136 C8.11458333,5.96588475 8.55763488,6.4136 9.10416667,6.4136 L9.10416667,6.4136 Z" id="Path"></path>
<path d="M12.7925417,7.68 C13.056656,7.6805004 13.3099193,7.57386324 13.4955417,7.384 L16.1405,4.6888 C16.525477,4.29645691 16.5228187,3.66302939 16.1345625,3.27400001 C15.7463063,2.88497064 15.119477,2.88765693 14.7345,3.28 L12.0895417,5.9776 C11.8082967,6.26430834 11.7252324,6.69378412 11.8789583,7.06640001 C12.0326842,7.43901591 12.393046,7.68168076 12.7925417,7.6816 L12.7925417,7.68 Z" id="Path"></path>
<path d="M4.71279167,7.3856 C5.09755004,7.77794309 5.72420215,7.78080846 6.11245833,7.392 C6.50071451,7.00319154 6.50355004,6.36994309 6.11879167,5.9776 L3.47383333,3.28 C3.08907496,2.88765693 2.46242285,2.88479156 2.07416668,3.27360001 C1.68591051,3.66240847 1.68307497,4.29565691 2.06783333,4.688 L4.71279167,7.3856 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
03/366 03 63
</a>
</div>
<div class="d-flex align-items-center">
<a class="office__mail" href="mailto:[email protected]">
<svg class="office__image" width="19px" height="12px" viewBox="0 0 19 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>envelope</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -1060.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="envelope" transform="translate(16.000000, 160.000000)">
<path d="M8.79388995,8.02973502 C9.1837569,8.40034474 9.81464737,8.40034474 10.2045143,8.02973502 L17.9326295,0.661792375 C18.0396409,0.560139853 18.0772497,0.409580122 18.029784,0.272853164 C17.9823183,0.136126206 17.8579208,0.0366879201 17.7084296,0.0159753906 C17.6326123,0.00532476514 17.5560783,-1.42906077e-05 17.4794425,1.11892691e-06 L1.52215326,1.11892691e-06 C1.44498481,-8.88796185e-05 1.3679146,0.00525037558 1.29157043,0.0159753906 C1.14207916,0.0366879201 1.01768173,0.136126206 0.970216006,0.272853164 C0.92275028,0.409580122 0.960359132,0.560139853 1.06737052,0.661792375 L8.79388995,8.02973502 Z" id="Path"></path>
<path d="M18.9113324,0.934388621 C18.8571995,0.911710866 18.7945295,0.923767305 18.752999,0.964848732 L13.844666,5.80722525 C13.7675748,5.88369567 13.7675748,6.00723892 13.844666,6.08370933 L17.8370407,10.0224359 C17.9914586,10.1694367 18.0534635,10.3871989 17.9992238,10.5920261 C17.9449842,10.7968533 17.782941,10.9568698 17.5753752,11.0105737 C17.3678093,11.0642776 17.1470227,11.0033113 16.9978741,10.8511071 L13.0054993,6.91238054 C12.9683685,6.87565592 12.9179518,6.85501643 12.8653743,6.85501643 C12.8127969,6.85501643 12.7623802,6.87565592 12.7252493,6.91238054 L11.0397911,8.57519015 C10.1896858,9.4134033 8.81189659,9.4134033 7.96179126,8.57519015 L6.27474968,6.9139426 C6.19723768,6.83788739 6.07201169,6.83788739 5.99449969,6.9139426 L2.0021249,10.8526692 C1.76904426,11.0745543 1.3987184,11.0712084 1.16979593,10.8451491 C0.940873462,10.6190898 0.937831202,10.2537372 1.16295827,10.023998 L5.15533307,6.08527139 C5.2324242,6.00880097 5.2324242,5.88525772 5.15533307,5.80878731 L0.246999987,0.966410789 C0.205688376,0.924926083 0.142750275,0.912818073 0.0886666621,0.935950678 C0.035502453,0.957800719 0.000634345428,1.00878578 0,1.0656014 L0,10.4379431 C1.23085801e-16,11.3006433 0.708882443,12 1.58333325,12 L17.4166658,12 C18.2911166,12 18.999999,11.3006433 18.999999,10.4379431 L18.999999,1.0656014 C19.0002138,1.00815253 18.965167,0.956288778 18.9113324,0.934388621 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="office">
<a class="office__link" href=""></a>
<div class="d-flex align-items-end">
<svg class="office__image" width="23px" height="34px" viewBox="0 0 23 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>pin</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-151.000000, -915.000000)" stroke="#0A51A1" stroke-width="2">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="pin" transform="translate(16.000000, 16.000000)">
<path d="M10.6666667,0.946666667 C16.1895142,0.946666667 20.6666667,5.42381917 20.6666667,10.9466667 C20.6666667,15.676 13.3333333,27.4546667 11.228,30.7466667 C11.1054293,30.9379712 10.8938692,31.0536816 10.6666667,31.0536816 C10.4394641,31.0536816 10.227904,30.9379712 10.1053333,30.7466667 C8,27.456 0.666666667,15.676 0.666666667,10.9466667 C0.666666667,5.42381917 5.14381917,0.946666667 10.6666667,0.946666667 Z" id="Path"></path>
<circle id="Oval" cx="10.6666667" cy="10.9466667" r="4"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>
<h4 class="office__name">Kantoornaam</h4>
</div>
<p class="office__address">
Ditiseenstraat 336
<br>
2100 Plaatsnaam
</p>
<div class="d-flex align-items-center">
<a class="office__phone" href="tel:2476248">
<svg class="office__image" width="19px" height="16px" viewBox="0 0 19 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>phone-incoming-call</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -788.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM">
<g id="phone-incoming-call" transform="translate(16.000000, 124.000000)">
<path d="M16.7041667,9.4216 L16.7041667,9.4216 C11.9506226,8.438823 7.04937744,8.438823 2.29583333,9.4216 C0.988428891,9.71164747 0.0427845264,10.8616609 0,12.2136 L0,13.4136 C1.3386168e-16,14.5181695 0.886103099,15.4136 1.97916667,15.4136 L4.35416667,15.4136 C5.44723023,15.4136 6.33333333,14.5181695 6.33333333,13.4136 L6.33333333,12.9776 C8.44031071,12.788799 10.5596893,12.788799 12.6666667,12.9776 L12.6666667,13.4136 C12.6666667,14.5181695 13.5527698,15.4136 14.6458333,15.4136 L17.0208333,15.4136 C18.1138969,15.4136 19,14.5181695 19,13.4136 L19,12.2136 C18.9572155,10.8616609 18.0115711,9.71164747 16.7041667,9.4216 Z" id="Path"></path>
<path d="M9.10416667,6.4136 C9.65069845,6.4136 10.09375,5.96588475 10.09375,5.4136 L10.09375,1.5864 C10.09375,1.03411525 9.65069845,0.5864 9.10416667,0.5864 C8.55763488,0.5864 8.11458333,1.03411525 8.11458333,1.5864 L8.11458333,5.4136 C8.11458333,5.96588475 8.55763488,6.4136 9.10416667,6.4136 L9.10416667,6.4136 Z" id="Path"></path>
<path d="M12.7925417,7.68 C13.056656,7.6805004 13.3099193,7.57386324 13.4955417,7.384 L16.1405,4.6888 C16.525477,4.29645691 16.5228187,3.66302939 16.1345625,3.27400001 C15.7463063,2.88497064 15.119477,2.88765693 14.7345,3.28 L12.0895417,5.9776 C11.8082967,6.26430834 11.7252324,6.69378412 11.8789583,7.06640001 C12.0326842,7.43901591 12.393046,7.68168076 12.7925417,7.6816 L12.7925417,7.68 Z" id="Path"></path>
<path d="M4.71279167,7.3856 C5.09755004,7.77794309 5.72420215,7.78080846 6.11245833,7.392 C6.50071451,7.00319154 6.50355004,6.36994309 6.11879167,5.9776 L3.47383333,3.28 C3.08907496,2.88765693 2.46242285,2.88479156 2.07416668,3.27360001 C1.68591051,3.66240847 1.68307497,4.29565691 2.06783333,4.688 L4.71279167,7.3856 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
03/366 03 63
</a>
</div>
<div class="d-flex align-items-center">
<a class="office__mail" href="mailto:[email protected]">
<svg class="office__image" width="19px" height="12px" viewBox="0 0 19 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>envelope</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -1060.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="envelope" transform="translate(16.000000, 160.000000)">
<path d="M8.79388995,8.02973502 C9.1837569,8.40034474 9.81464737,8.40034474 10.2045143,8.02973502 L17.9326295,0.661792375 C18.0396409,0.560139853 18.0772497,0.409580122 18.029784,0.272853164 C17.9823183,0.136126206 17.8579208,0.0366879201 17.7084296,0.0159753906 C17.6326123,0.00532476514 17.5560783,-1.42906077e-05 17.4794425,1.11892691e-06 L1.52215326,1.11892691e-06 C1.44498481,-8.88796185e-05 1.3679146,0.00525037558 1.29157043,0.0159753906 C1.14207916,0.0366879201 1.01768173,0.136126206 0.970216006,0.272853164 C0.92275028,0.409580122 0.960359132,0.560139853 1.06737052,0.661792375 L8.79388995,8.02973502 Z" id="Path"></path>
<path d="M18.9113324,0.934388621 C18.8571995,0.911710866 18.7945295,0.923767305 18.752999,0.964848732 L13.844666,5.80722525 C13.7675748,5.88369567 13.7675748,6.00723892 13.844666,6.08370933 L17.8370407,10.0224359 C17.9914586,10.1694367 18.0534635,10.3871989 17.9992238,10.5920261 C17.9449842,10.7968533 17.782941,10.9568698 17.5753752,11.0105737 C17.3678093,11.0642776 17.1470227,11.0033113 16.9978741,10.8511071 L13.0054993,6.91238054 C12.9683685,6.87565592 12.9179518,6.85501643 12.8653743,6.85501643 C12.8127969,6.85501643 12.7623802,6.87565592 12.7252493,6.91238054 L11.0397911,8.57519015 C10.1896858,9.4134033 8.81189659,9.4134033 7.96179126,8.57519015 L6.27474968,6.9139426 C6.19723768,6.83788739 6.07201169,6.83788739 5.99449969,6.9139426 L2.0021249,10.8526692 C1.76904426,11.0745543 1.3987184,11.0712084 1.16979593,10.8451491 C0.940873462,10.6190898 0.937831202,10.2537372 1.16295827,10.023998 L5.15533307,6.08527139 C5.2324242,6.00880097 5.2324242,5.88525772 5.15533307,5.80878731 L0.246999987,0.966410789 C0.205688376,0.924926083 0.142750275,0.912818073 0.0886666621,0.935950678 C0.035502453,0.957800719 0.000634345428,1.00878578 0,1.0656014 L0,10.4379431 C1.23085801e-16,11.3006433 0.708882443,12 1.58333325,12 L17.4166658,12 C18.2911166,12 18.999999,11.3006433 18.999999,10.4379431 L18.999999,1.0656014 C19.0002138,1.00815253 18.965167,0.956288778 18.9113324,0.934388621 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="office">
<a class="office__link" href=""></a>
<div class="d-flex align-items-end">
<svg class="office__image" width="23px" height="34px" viewBox="0 0 23 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>pin</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-151.000000, -915.000000)" stroke="#0A51A1" stroke-width="2">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="pin" transform="translate(16.000000, 16.000000)">
<path d="M10.6666667,0.946666667 C16.1895142,0.946666667 20.6666667,5.42381917 20.6666667,10.9466667 C20.6666667,15.676 13.3333333,27.4546667 11.228,30.7466667 C11.1054293,30.9379712 10.8938692,31.0536816 10.6666667,31.0536816 C10.4394641,31.0536816 10.227904,30.9379712 10.1053333,30.7466667 C8,27.456 0.666666667,15.676 0.666666667,10.9466667 C0.666666667,5.42381917 5.14381917,0.946666667 10.6666667,0.946666667 Z" id="Path"></path>
<circle id="Oval" cx="10.6666667" cy="10.9466667" r="4"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>
<h4 class="office__name">Kantoornaam</h4>
</div>
<p class="office__address">
Ditiseenstraat 336
<br>
2100 Plaatsnaam
</p>
<div class="d-flex align-items-center">
<a class="office__phone" href="tel:2476248">
<svg class="office__image" width="19px" height="16px" viewBox="0 0 19 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>phone-incoming-call</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -788.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM">
<g id="phone-incoming-call" transform="translate(16.000000, 124.000000)">
<path d="M16.7041667,9.4216 L16.7041667,9.4216 C11.9506226,8.438823 7.04937744,8.438823 2.29583333,9.4216 C0.988428891,9.71164747 0.0427845264,10.8616609 0,12.2136 L0,13.4136 C1.3386168e-16,14.5181695 0.886103099,15.4136 1.97916667,15.4136 L4.35416667,15.4136 C5.44723023,15.4136 6.33333333,14.5181695 6.33333333,13.4136 L6.33333333,12.9776 C8.44031071,12.788799 10.5596893,12.788799 12.6666667,12.9776 L12.6666667,13.4136 C12.6666667,14.5181695 13.5527698,15.4136 14.6458333,15.4136 L17.0208333,15.4136 C18.1138969,15.4136 19,14.5181695 19,13.4136 L19,12.2136 C18.9572155,10.8616609 18.0115711,9.71164747 16.7041667,9.4216 Z" id="Path"></path>
<path d="M9.10416667,6.4136 C9.65069845,6.4136 10.09375,5.96588475 10.09375,5.4136 L10.09375,1.5864 C10.09375,1.03411525 9.65069845,0.5864 9.10416667,0.5864 C8.55763488,0.5864 8.11458333,1.03411525 8.11458333,1.5864 L8.11458333,5.4136 C8.11458333,5.96588475 8.55763488,6.4136 9.10416667,6.4136 L9.10416667,6.4136 Z" id="Path"></path>
<path d="M12.7925417,7.68 C13.056656,7.6805004 13.3099193,7.57386324 13.4955417,7.384 L16.1405,4.6888 C16.525477,4.29645691 16.5228187,3.66302939 16.1345625,3.27400001 C15.7463063,2.88497064 15.119477,2.88765693 14.7345,3.28 L12.0895417,5.9776 C11.8082967,6.26430834 11.7252324,6.69378412 11.8789583,7.06640001 C12.0326842,7.43901591 12.393046,7.68168076 12.7925417,7.6816 L12.7925417,7.68 Z" id="Path"></path>
<path d="M4.71279167,7.3856 C5.09755004,7.77794309 5.72420215,7.78080846 6.11245833,7.392 C6.50071451,7.00319154 6.50355004,6.36994309 6.11879167,5.9776 L3.47383333,3.28 C3.08907496,2.88765693 2.46242285,2.88479156 2.07416668,3.27360001 C1.68591051,3.66240847 1.68307497,4.29565691 2.06783333,4.688 L4.71279167,7.3856 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
03/366 03 63
</a>
</div>
<div class="d-flex align-items-center">
<a class="office__mail" href="mailto:[email protected]">
<svg class="office__image" width="19px" height="12px" viewBox="0 0 19 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>envelope</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -1060.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="envelope" transform="translate(16.000000, 160.000000)">
<path d="M8.79388995,8.02973502 C9.1837569,8.40034474 9.81464737,8.40034474 10.2045143,8.02973502 L17.9326295,0.661792375 C18.0396409,0.560139853 18.0772497,0.409580122 18.029784,0.272853164 C17.9823183,0.136126206 17.8579208,0.0366879201 17.7084296,0.0159753906 C17.6326123,0.00532476514 17.5560783,-1.42906077e-05 17.4794425,1.11892691e-06 L1.52215326,1.11892691e-06 C1.44498481,-8.88796185e-05 1.3679146,0.00525037558 1.29157043,0.0159753906 C1.14207916,0.0366879201 1.01768173,0.136126206 0.970216006,0.272853164 C0.92275028,0.409580122 0.960359132,0.560139853 1.06737052,0.661792375 L8.79388995,8.02973502 Z" id="Path"></path>
<path d="M18.9113324,0.934388621 C18.8571995,0.911710866 18.7945295,0.923767305 18.752999,0.964848732 L13.844666,5.80722525 C13.7675748,5.88369567 13.7675748,6.00723892 13.844666,6.08370933 L17.8370407,10.0224359 C17.9914586,10.1694367 18.0534635,10.3871989 17.9992238,10.5920261 C17.9449842,10.7968533 17.782941,10.9568698 17.5753752,11.0105737 C17.3678093,11.0642776 17.1470227,11.0033113 16.9978741,10.8511071 L13.0054993,6.91238054 C12.9683685,6.87565592 12.9179518,6.85501643 12.8653743,6.85501643 C12.8127969,6.85501643 12.7623802,6.87565592 12.7252493,6.91238054 L11.0397911,8.57519015 C10.1896858,9.4134033 8.81189659,9.4134033 7.96179126,8.57519015 L6.27474968,6.9139426 C6.19723768,6.83788739 6.07201169,6.83788739 5.99449969,6.9139426 L2.0021249,10.8526692 C1.76904426,11.0745543 1.3987184,11.0712084 1.16979593,10.8451491 C0.940873462,10.6190898 0.937831202,10.2537372 1.16295827,10.023998 L5.15533307,6.08527139 C5.2324242,6.00880097 5.2324242,5.88525772 5.15533307,5.80878731 L0.246999987,0.966410789 C0.205688376,0.924926083 0.142750275,0.912818073 0.0886666621,0.935950678 C0.035502453,0.957800719 0.000634345428,1.00878578 0,1.0656014 L0,10.4379431 C1.23085801e-16,11.3006433 0.708882443,12 1.58333325,12 L17.4166658,12 C18.2911166,12 18.999999,11.3006433 18.999999,10.4379431 L18.999999,1.0656014 C19.0002138,1.00815253 18.965167,0.956288778 18.9113324,0.934388621 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="office">
<a class="office__link" href=""></a>
<div class="d-flex align-items-end">
<svg class="office__image" width="23px" height="34px" viewBox="0 0 23 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>pin</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-151.000000, -915.000000)" stroke="#0A51A1" stroke-width="2">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="pin" transform="translate(16.000000, 16.000000)">
<path d="M10.6666667,0.946666667 C16.1895142,0.946666667 20.6666667,5.42381917 20.6666667,10.9466667 C20.6666667,15.676 13.3333333,27.4546667 11.228,30.7466667 C11.1054293,30.9379712 10.8938692,31.0536816 10.6666667,31.0536816 C10.4394641,31.0536816 10.227904,30.9379712 10.1053333,30.7466667 C8,27.456 0.666666667,15.676 0.666666667,10.9466667 C0.666666667,5.42381917 5.14381917,0.946666667 10.6666667,0.946666667 Z" id="Path"></path>
<circle id="Oval" cx="10.6666667" cy="10.9466667" r="4"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>
<h4 class="office__name">Kantoornaam</h4>
</div>
<p class="office__address">
Ditiseenstraat 336
<br>
2100 Plaatsnaam
</p>
<div class="d-flex align-items-center">
<a class="office__phone" href="tel:2476248">
<svg class="office__image" width="19px" height="16px" viewBox="0 0 19 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>phone-incoming-call</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -788.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM">
<g id="phone-incoming-call" transform="translate(16.000000, 124.000000)">
<path d="M16.7041667,9.4216 L16.7041667,9.4216 C11.9506226,8.438823 7.04937744,8.438823 2.29583333,9.4216 C0.988428891,9.71164747 0.0427845264,10.8616609 0,12.2136 L0,13.4136 C1.3386168e-16,14.5181695 0.886103099,15.4136 1.97916667,15.4136 L4.35416667,15.4136 C5.44723023,15.4136 6.33333333,14.5181695 6.33333333,13.4136 L6.33333333,12.9776 C8.44031071,12.788799 10.5596893,12.788799 12.6666667,12.9776 L12.6666667,13.4136 C12.6666667,14.5181695 13.5527698,15.4136 14.6458333,15.4136 L17.0208333,15.4136 C18.1138969,15.4136 19,14.5181695 19,13.4136 L19,12.2136 C18.9572155,10.8616609 18.0115711,9.71164747 16.7041667,9.4216 Z" id="Path"></path>
<path d="M9.10416667,6.4136 C9.65069845,6.4136 10.09375,5.96588475 10.09375,5.4136 L10.09375,1.5864 C10.09375,1.03411525 9.65069845,0.5864 9.10416667,0.5864 C8.55763488,0.5864 8.11458333,1.03411525 8.11458333,1.5864 L8.11458333,5.4136 C8.11458333,5.96588475 8.55763488,6.4136 9.10416667,6.4136 L9.10416667,6.4136 Z" id="Path"></path>
<path d="M12.7925417,7.68 C13.056656,7.6805004 13.3099193,7.57386324 13.4955417,7.384 L16.1405,4.6888 C16.525477,4.29645691 16.5228187,3.66302939 16.1345625,3.27400001 C15.7463063,2.88497064 15.119477,2.88765693 14.7345,3.28 L12.0895417,5.9776 C11.8082967,6.26430834 11.7252324,6.69378412 11.8789583,7.06640001 C12.0326842,7.43901591 12.393046,7.68168076 12.7925417,7.6816 L12.7925417,7.68 Z" id="Path"></path>
<path d="M4.71279167,7.3856 C5.09755004,7.77794309 5.72420215,7.78080846 6.11245833,7.392 C6.50071451,7.00319154 6.50355004,6.36994309 6.11879167,5.9776 L3.47383333,3.28 C3.08907496,2.88765693 2.46242285,2.88479156 2.07416668,3.27360001 C1.68591051,3.66240847 1.68307497,4.29565691 2.06783333,4.688 L4.71279167,7.3856 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
03/366 03 63
</a>
</div>
<div class="d-flex align-items-center">
<a class="office__mail" href="mailto:[email protected]">
<svg class="office__image" width="19px" height="12px" viewBox="0 0 19 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>envelope</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -1060.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="envelope" transform="translate(16.000000, 160.000000)">
<path d="M8.79388995,8.02973502 C9.1837569,8.40034474 9.81464737,8.40034474 10.2045143,8.02973502 L17.9326295,0.661792375 C18.0396409,0.560139853 18.0772497,0.409580122 18.029784,0.272853164 C17.9823183,0.136126206 17.8579208,0.0366879201 17.7084296,0.0159753906 C17.6326123,0.00532476514 17.5560783,-1.42906077e-05 17.4794425,1.11892691e-06 L1.52215326,1.11892691e-06 C1.44498481,-8.88796185e-05 1.3679146,0.00525037558 1.29157043,0.0159753906 C1.14207916,0.0366879201 1.01768173,0.136126206 0.970216006,0.272853164 C0.92275028,0.409580122 0.960359132,0.560139853 1.06737052,0.661792375 L8.79388995,8.02973502 Z" id="Path"></path>
<path d="M18.9113324,0.934388621 C18.8571995,0.911710866 18.7945295,0.923767305 18.752999,0.964848732 L13.844666,5.80722525 C13.7675748,5.88369567 13.7675748,6.00723892 13.844666,6.08370933 L17.8370407,10.0224359 C17.9914586,10.1694367 18.0534635,10.3871989 17.9992238,10.5920261 C17.9449842,10.7968533 17.782941,10.9568698 17.5753752,11.0105737 C17.3678093,11.0642776 17.1470227,11.0033113 16.9978741,10.8511071 L13.0054993,6.91238054 C12.9683685,6.87565592 12.9179518,6.85501643 12.8653743,6.85501643 C12.8127969,6.85501643 12.7623802,6.87565592 12.7252493,6.91238054 L11.0397911,8.57519015 C10.1896858,9.4134033 8.81189659,9.4134033 7.96179126,8.57519015 L6.27474968,6.9139426 C6.19723768,6.83788739 6.07201169,6.83788739 5.99449969,6.9139426 L2.0021249,10.8526692 C1.76904426,11.0745543 1.3987184,11.0712084 1.16979593,10.8451491 C0.940873462,10.6190898 0.937831202,10.2537372 1.16295827,10.023998 L5.15533307,6.08527139 C5.2324242,6.00880097 5.2324242,5.88525772 5.15533307,5.80878731 L0.246999987,0.966410789 C0.205688376,0.924926083 0.142750275,0.912818073 0.0886666621,0.935950678 C0.035502453,0.957800719 0.000634345428,1.00878578 0,1.0656014 L0,10.4379431 C1.23085801e-16,11.3006433 0.708882443,12 1.58333325,12 L17.4166658,12 C18.2911166,12 18.999999,11.3006433 18.999999,10.4379431 L18.999999,1.0656014 C19.0002138,1.00815253 18.965167,0.956288778 18.9113324,0.934388621 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="office">
<a class="office__link" href=""></a>
<div class="d-flex align-items-end">
<svg class="office__image" width="23px" height="34px" viewBox="0 0 23 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>pin</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-151.000000, -915.000000)" stroke="#0A51A1" stroke-width="2">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="pin" transform="translate(16.000000, 16.000000)">
<path d="M10.6666667,0.946666667 C16.1895142,0.946666667 20.6666667,5.42381917 20.6666667,10.9466667 C20.6666667,15.676 13.3333333,27.4546667 11.228,30.7466667 C11.1054293,30.9379712 10.8938692,31.0536816 10.6666667,31.0536816 C10.4394641,31.0536816 10.227904,30.9379712 10.1053333,30.7466667 C8,27.456 0.666666667,15.676 0.666666667,10.9466667 C0.666666667,5.42381917 5.14381917,0.946666667 10.6666667,0.946666667 Z" id="Path"></path>
<circle id="Oval" cx="10.6666667" cy="10.9466667" r="4"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>
<h4 class="office__name">Kantoornaam</h4>
</div>
<p class="office__address">
Ditiseenstraat 336
<br>
2100 Plaatsnaam
</p>
<div class="d-flex align-items-center">
<a class="office__phone" href="tel:2476248">
<svg class="office__image" width="19px" height="16px" viewBox="0 0 19 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>phone-incoming-call</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -788.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM">
<g id="phone-incoming-call" transform="translate(16.000000, 124.000000)">
<path d="M16.7041667,9.4216 L16.7041667,9.4216 C11.9506226,8.438823 7.04937744,8.438823 2.29583333,9.4216 C0.988428891,9.71164747 0.0427845264,10.8616609 0,12.2136 L0,13.4136 C1.3386168e-16,14.5181695 0.886103099,15.4136 1.97916667,15.4136 L4.35416667,15.4136 C5.44723023,15.4136 6.33333333,14.5181695 6.33333333,13.4136 L6.33333333,12.9776 C8.44031071,12.788799 10.5596893,12.788799 12.6666667,12.9776 L12.6666667,13.4136 C12.6666667,14.5181695 13.5527698,15.4136 14.6458333,15.4136 L17.0208333,15.4136 C18.1138969,15.4136 19,14.5181695 19,13.4136 L19,12.2136 C18.9572155,10.8616609 18.0115711,9.71164747 16.7041667,9.4216 Z" id="Path"></path>
<path d="M9.10416667,6.4136 C9.65069845,6.4136 10.09375,5.96588475 10.09375,5.4136 L10.09375,1.5864 C10.09375,1.03411525 9.65069845,0.5864 9.10416667,0.5864 C8.55763488,0.5864 8.11458333,1.03411525 8.11458333,1.5864 L8.11458333,5.4136 C8.11458333,5.96588475 8.55763488,6.4136 9.10416667,6.4136 L9.10416667,6.4136 Z" id="Path"></path>
<path d="M12.7925417,7.68 C13.056656,7.6805004 13.3099193,7.57386324 13.4955417,7.384 L16.1405,4.6888 C16.525477,4.29645691 16.5228187,3.66302939 16.1345625,3.27400001 C15.7463063,2.88497064 15.119477,2.88765693 14.7345,3.28 L12.0895417,5.9776 C11.8082967,6.26430834 11.7252324,6.69378412 11.8789583,7.06640001 C12.0326842,7.43901591 12.393046,7.68168076 12.7925417,7.6816 L12.7925417,7.68 Z" id="Path"></path>
<path d="M4.71279167,7.3856 C5.09755004,7.77794309 5.72420215,7.78080846 6.11245833,7.392 C6.50071451,7.00319154 6.50355004,6.36994309 6.11879167,5.9776 L3.47383333,3.28 C3.08907496,2.88765693 2.46242285,2.88479156 2.07416668,3.27360001 C1.68591051,3.66240847 1.68307497,4.29565691 2.06783333,4.688 L4.71279167,7.3856 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
03/366 03 63
</a>
</div>
<div class="d-flex align-items-center">
<a class="office__mail" href="mailto:[email protected]">
<svg class="office__image" width="19px" height="12px" viewBox="0 0 19 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>envelope</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -1060.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="envelope" transform="translate(16.000000, 160.000000)">
<path d="M8.79388995,8.02973502 C9.1837569,8.40034474 9.81464737,8.40034474 10.2045143,8.02973502 L17.9326295,0.661792375 C18.0396409,0.560139853 18.0772497,0.409580122 18.029784,0.272853164 C17.9823183,0.136126206 17.8579208,0.0366879201 17.7084296,0.0159753906 C17.6326123,0.00532476514 17.5560783,-1.42906077e-05 17.4794425,1.11892691e-06 L1.52215326,1.11892691e-06 C1.44498481,-8.88796185e-05 1.3679146,0.00525037558 1.29157043,0.0159753906 C1.14207916,0.0366879201 1.01768173,0.136126206 0.970216006,0.272853164 C0.92275028,0.409580122 0.960359132,0.560139853 1.06737052,0.661792375 L8.79388995,8.02973502 Z" id="Path"></path>
<path d="M18.9113324,0.934388621 C18.8571995,0.911710866 18.7945295,0.923767305 18.752999,0.964848732 L13.844666,5.80722525 C13.7675748,5.88369567 13.7675748,6.00723892 13.844666,6.08370933 L17.8370407,10.0224359 C17.9914586,10.1694367 18.0534635,10.3871989 17.9992238,10.5920261 C17.9449842,10.7968533 17.782941,10.9568698 17.5753752,11.0105737 C17.3678093,11.0642776 17.1470227,11.0033113 16.9978741,10.8511071 L13.0054993,6.91238054 C12.9683685,6.87565592 12.9179518,6.85501643 12.8653743,6.85501643 C12.8127969,6.85501643 12.7623802,6.87565592 12.7252493,6.91238054 L11.0397911,8.57519015 C10.1896858,9.4134033 8.81189659,9.4134033 7.96179126,8.57519015 L6.27474968,6.9139426 C6.19723768,6.83788739 6.07201169,6.83788739 5.99449969,6.9139426 L2.0021249,10.8526692 C1.76904426,11.0745543 1.3987184,11.0712084 1.16979593,10.8451491 C0.940873462,10.6190898 0.937831202,10.2537372 1.16295827,10.023998 L5.15533307,6.08527139 C5.2324242,6.00880097 5.2324242,5.88525772 5.15533307,5.80878731 L0.246999987,0.966410789 C0.205688376,0.924926083 0.142750275,0.912818073 0.0886666621,0.935950678 C0.035502453,0.957800719 0.000634345428,1.00878578 0,1.0656014 L0,10.4379431 C1.23085801e-16,11.3006433 0.708882443,12 1.58333325,12 L17.4166658,12 C18.2911166,12 18.999999,11.3006433 18.999999,10.4379431 L18.999999,1.0656014 C19.0002138,1.00815253 18.965167,0.956288778 18.9113324,0.934388621 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="office">
<a class="office__link" href=""></a>
<div class="d-flex align-items-end">
<svg class="office__image" width="23px" height="34px" viewBox="0 0 23 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>pin</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-151.000000, -915.000000)" stroke="#0A51A1" stroke-width="2">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="pin" transform="translate(16.000000, 16.000000)">
<path d="M10.6666667,0.946666667 C16.1895142,0.946666667 20.6666667,5.42381917 20.6666667,10.9466667 C20.6666667,15.676 13.3333333,27.4546667 11.228,30.7466667 C11.1054293,30.9379712 10.8938692,31.0536816 10.6666667,31.0536816 C10.4394641,31.0536816 10.227904,30.9379712 10.1053333,30.7466667 C8,27.456 0.666666667,15.676 0.666666667,10.9466667 C0.666666667,5.42381917 5.14381917,0.946666667 10.6666667,0.946666667 Z" id="Path"></path>
<circle id="Oval" cx="10.6666667" cy="10.9466667" r="4"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>
<h4 class="office__name">Kantoornaam</h4>
</div>
<p class="office__address">
Ditiseenstraat 336
<br>
2100 Plaatsnaam
</p>
<div class="d-flex align-items-center">
<a class="office__phone" href="tel:2476248">
<svg class="office__image" width="19px" height="16px" viewBox="0 0 19 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>phone-incoming-call</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -788.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM">
<g id="phone-incoming-call" transform="translate(16.000000, 124.000000)">
<path d="M16.7041667,9.4216 L16.7041667,9.4216 C11.9506226,8.438823 7.04937744,8.438823 2.29583333,9.4216 C0.988428891,9.71164747 0.0427845264,10.8616609 0,12.2136 L0,13.4136 C1.3386168e-16,14.5181695 0.886103099,15.4136 1.97916667,15.4136 L4.35416667,15.4136 C5.44723023,15.4136 6.33333333,14.5181695 6.33333333,13.4136 L6.33333333,12.9776 C8.44031071,12.788799 10.5596893,12.788799 12.6666667,12.9776 L12.6666667,13.4136 C12.6666667,14.5181695 13.5527698,15.4136 14.6458333,15.4136 L17.0208333,15.4136 C18.1138969,15.4136 19,14.5181695 19,13.4136 L19,12.2136 C18.9572155,10.8616609 18.0115711,9.71164747 16.7041667,9.4216 Z" id="Path"></path>
<path d="M9.10416667,6.4136 C9.65069845,6.4136 10.09375,5.96588475 10.09375,5.4136 L10.09375,1.5864 C10.09375,1.03411525 9.65069845,0.5864 9.10416667,0.5864 C8.55763488,0.5864 8.11458333,1.03411525 8.11458333,1.5864 L8.11458333,5.4136 C8.11458333,5.96588475 8.55763488,6.4136 9.10416667,6.4136 L9.10416667,6.4136 Z" id="Path"></path>
<path d="M12.7925417,7.68 C13.056656,7.6805004 13.3099193,7.57386324 13.4955417,7.384 L16.1405,4.6888 C16.525477,4.29645691 16.5228187,3.66302939 16.1345625,3.27400001 C15.7463063,2.88497064 15.119477,2.88765693 14.7345,3.28 L12.0895417,5.9776 C11.8082967,6.26430834 11.7252324,6.69378412 11.8789583,7.06640001 C12.0326842,7.43901591 12.393046,7.68168076 12.7925417,7.6816 L12.7925417,7.68 Z" id="Path"></path>
<path d="M4.71279167,7.3856 C5.09755004,7.77794309 5.72420215,7.78080846 6.11245833,7.392 C6.50071451,7.00319154 6.50355004,6.36994309 6.11879167,5.9776 L3.47383333,3.28 C3.08907496,2.88765693 2.46242285,2.88479156 2.07416668,3.27360001 C1.68591051,3.66240847 1.68307497,4.29565691 2.06783333,4.688 L4.71279167,7.3856 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
03/366 03 63
</a>
</div>
<div class="d-flex align-items-center">
<a class="office__mail" href="mailto:[email protected]">
<svg class="office__image" width="19px" height="12px" viewBox="0 0 19 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>envelope</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -1060.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="envelope" transform="translate(16.000000, 160.000000)">
<path d="M8.79388995,8.02973502 C9.1837569,8.40034474 9.81464737,8.40034474 10.2045143,8.02973502 L17.9326295,0.661792375 C18.0396409,0.560139853 18.0772497,0.409580122 18.029784,0.272853164 C17.9823183,0.136126206 17.8579208,0.0366879201 17.7084296,0.0159753906 C17.6326123,0.00532476514 17.5560783,-1.42906077e-05 17.4794425,1.11892691e-06 L1.52215326,1.11892691e-06 C1.44498481,-8.88796185e-05 1.3679146,0.00525037558 1.29157043,0.0159753906 C1.14207916,0.0366879201 1.01768173,0.136126206 0.970216006,0.272853164 C0.92275028,0.409580122 0.960359132,0.560139853 1.06737052,0.661792375 L8.79388995,8.02973502 Z" id="Path"></path>
<path d="M18.9113324,0.934388621 C18.8571995,0.911710866 18.7945295,0.923767305 18.752999,0.964848732 L13.844666,5.80722525 C13.7675748,5.88369567 13.7675748,6.00723892 13.844666,6.08370933 L17.8370407,10.0224359 C17.9914586,10.1694367 18.0534635,10.3871989 17.9992238,10.5920261 C17.9449842,10.7968533 17.782941,10.9568698 17.5753752,11.0105737 C17.3678093,11.0642776 17.1470227,11.0033113 16.9978741,10.8511071 L13.0054993,6.91238054 C12.9683685,6.87565592 12.9179518,6.85501643 12.8653743,6.85501643 C12.8127969,6.85501643 12.7623802,6.87565592 12.7252493,6.91238054 L11.0397911,8.57519015 C10.1896858,9.4134033 8.81189659,9.4134033 7.96179126,8.57519015 L6.27474968,6.9139426 C6.19723768,6.83788739 6.07201169,6.83788739 5.99449969,6.9139426 L2.0021249,10.8526692 C1.76904426,11.0745543 1.3987184,11.0712084 1.16979593,10.8451491 C0.940873462,10.6190898 0.937831202,10.2537372 1.16295827,10.023998 L5.15533307,6.08527139 C5.2324242,6.00880097 5.2324242,5.88525772 5.15533307,5.80878731 L0.246999987,0.966410789 C0.205688376,0.924926083 0.142750275,0.912818073 0.0886666621,0.935950678 C0.035502453,0.957800719 0.000634345428,1.00878578 0,1.0656014 L0,10.4379431 C1.23085801e-16,11.3006433 0.708882443,12 1.58333325,12 L17.4166658,12 C18.2911166,12 18.999999,11.3006433 18.999999,10.4379431 L18.999999,1.0656014 C19.0002138,1.00815253 18.965167,0.956288778 18.9113324,0.934388621 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="office">
<a class="office__link" href=""></a>
<div class="d-flex align-items-end">
<svg class="office__image" width="23px" height="34px" viewBox="0 0 23 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>pin</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-151.000000, -915.000000)" stroke="#0A51A1" stroke-width="2">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="pin" transform="translate(16.000000, 16.000000)">
<path d="M10.6666667,0.946666667 C16.1895142,0.946666667 20.6666667,5.42381917 20.6666667,10.9466667 C20.6666667,15.676 13.3333333,27.4546667 11.228,30.7466667 C11.1054293,30.9379712 10.8938692,31.0536816 10.6666667,31.0536816 C10.4394641,31.0536816 10.227904,30.9379712 10.1053333,30.7466667 C8,27.456 0.666666667,15.676 0.666666667,10.9466667 C0.666666667,5.42381917 5.14381917,0.946666667 10.6666667,0.946666667 Z" id="Path"></path>
<circle id="Oval" cx="10.6666667" cy="10.9466667" r="4"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>
<h4 class="office__name">Kantoornaam</h4>
</div>
<p class="office__address">
Ditiseenstraat 336
<br>
2100 Plaatsnaam
</p>
<div class="d-flex align-items-center">
<a class="office__phone" href="tel:2476248">
<svg class="office__image" width="19px" height="16px" viewBox="0 0 19 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>phone-incoming-call</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -788.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM">
<g id="phone-incoming-call" transform="translate(16.000000, 124.000000)">
<path d="M16.7041667,9.4216 L16.7041667,9.4216 C11.9506226,8.438823 7.04937744,8.438823 2.29583333,9.4216 C0.988428891,9.71164747 0.0427845264,10.8616609 0,12.2136 L0,13.4136 C1.3386168e-16,14.5181695 0.886103099,15.4136 1.97916667,15.4136 L4.35416667,15.4136 C5.44723023,15.4136 6.33333333,14.5181695 6.33333333,13.4136 L6.33333333,12.9776 C8.44031071,12.788799 10.5596893,12.788799 12.6666667,12.9776 L12.6666667,13.4136 C12.6666667,14.5181695 13.5527698,15.4136 14.6458333,15.4136 L17.0208333,15.4136 C18.1138969,15.4136 19,14.5181695 19,13.4136 L19,12.2136 C18.9572155,10.8616609 18.0115711,9.71164747 16.7041667,9.4216 Z" id="Path"></path>
<path d="M9.10416667,6.4136 C9.65069845,6.4136 10.09375,5.96588475 10.09375,5.4136 L10.09375,1.5864 C10.09375,1.03411525 9.65069845,0.5864 9.10416667,0.5864 C8.55763488,0.5864 8.11458333,1.03411525 8.11458333,1.5864 L8.11458333,5.4136 C8.11458333,5.96588475 8.55763488,6.4136 9.10416667,6.4136 L9.10416667,6.4136 Z" id="Path"></path>
<path d="M12.7925417,7.68 C13.056656,7.6805004 13.3099193,7.57386324 13.4955417,7.384 L16.1405,4.6888 C16.525477,4.29645691 16.5228187,3.66302939 16.1345625,3.27400001 C15.7463063,2.88497064 15.119477,2.88765693 14.7345,3.28 L12.0895417,5.9776 C11.8082967,6.26430834 11.7252324,6.69378412 11.8789583,7.06640001 C12.0326842,7.43901591 12.393046,7.68168076 12.7925417,7.6816 L12.7925417,7.68 Z" id="Path"></path>
<path d="M4.71279167,7.3856 C5.09755004,7.77794309 5.72420215,7.78080846 6.11245833,7.392 C6.50071451,7.00319154 6.50355004,6.36994309 6.11879167,5.9776 L3.47383333,3.28 C3.08907496,2.88765693 2.46242285,2.88479156 2.07416668,3.27360001 C1.68591051,3.66240847 1.68307497,4.29565691 2.06783333,4.688 L4.71279167,7.3856 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
03/366 03 63
</a>
</div>
<div class="d-flex align-items-center">
<a class="office__mail" href="mailto:[email protected]">
<svg class="office__image" width="19px" height="12px" viewBox="0 0 19 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>envelope</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -1060.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="envelope" transform="translate(16.000000, 160.000000)">
<path d="M8.79388995,8.02973502 C9.1837569,8.40034474 9.81464737,8.40034474 10.2045143,8.02973502 L17.9326295,0.661792375 C18.0396409,0.560139853 18.0772497,0.409580122 18.029784,0.272853164 C17.9823183,0.136126206 17.8579208,0.0366879201 17.7084296,0.0159753906 C17.6326123,0.00532476514 17.5560783,-1.42906077e-05 17.4794425,1.11892691e-06 L1.52215326,1.11892691e-06 C1.44498481,-8.88796185e-05 1.3679146,0.00525037558 1.29157043,0.0159753906 C1.14207916,0.0366879201 1.01768173,0.136126206 0.970216006,0.272853164 C0.92275028,0.409580122 0.960359132,0.560139853 1.06737052,0.661792375 L8.79388995,8.02973502 Z" id="Path"></path>
<path d="M18.9113324,0.934388621 C18.8571995,0.911710866 18.7945295,0.923767305 18.752999,0.964848732 L13.844666,5.80722525 C13.7675748,5.88369567 13.7675748,6.00723892 13.844666,6.08370933 L17.8370407,10.0224359 C17.9914586,10.1694367 18.0534635,10.3871989 17.9992238,10.5920261 C17.9449842,10.7968533 17.782941,10.9568698 17.5753752,11.0105737 C17.3678093,11.0642776 17.1470227,11.0033113 16.9978741,10.8511071 L13.0054993,6.91238054 C12.9683685,6.87565592 12.9179518,6.85501643 12.8653743,6.85501643 C12.8127969,6.85501643 12.7623802,6.87565592 12.7252493,6.91238054 L11.0397911,8.57519015 C10.1896858,9.4134033 8.81189659,9.4134033 7.96179126,8.57519015 L6.27474968,6.9139426 C6.19723768,6.83788739 6.07201169,6.83788739 5.99449969,6.9139426 L2.0021249,10.8526692 C1.76904426,11.0745543 1.3987184,11.0712084 1.16979593,10.8451491 C0.940873462,10.6190898 0.937831202,10.2537372 1.16295827,10.023998 L5.15533307,6.08527139 C5.2324242,6.00880097 5.2324242,5.88525772 5.15533307,5.80878731 L0.246999987,0.966410789 C0.205688376,0.924926083 0.142750275,0.912818073 0.0886666621,0.935950678 C0.035502453,0.957800719 0.000634345428,1.00878578 0,1.0656014 L0,10.4379431 C1.23085801e-16,11.3006433 0.708882443,12 1.58333325,12 L17.4166658,12 C18.2911166,12 18.999999,11.3006433 18.999999,10.4379431 L18.999999,1.0656014 C19.0002138,1.00815253 18.965167,0.956288778 18.9113324,0.934388621 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
</a>
</div>
</div>
</div>
<div class="col-12 col-sm-6 col-lg-3">
<div class="office">
<a class="office__link" href=""></a>
<div class="d-flex align-items-end">
<svg class="office__image" width="23px" height="34px" viewBox="0 0 23 34" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>pin</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-151.000000, -915.000000)" stroke="#0A51A1" stroke-width="2">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="pin" transform="translate(16.000000, 16.000000)">
<path d="M10.6666667,0.946666667 C16.1895142,0.946666667 20.6666667,5.42381917 20.6666667,10.9466667 C20.6666667,15.676 13.3333333,27.4546667 11.228,30.7466667 C11.1054293,30.9379712 10.8938692,31.0536816 10.6666667,31.0536816 C10.4394641,31.0536816 10.227904,30.9379712 10.1053333,30.7466667 C8,27.456 0.666666667,15.676 0.666666667,10.9466667 C0.666666667,5.42381917 5.14381917,0.946666667 10.6666667,0.946666667 Z" id="Path"></path>
<circle id="Oval" cx="10.6666667" cy="10.9466667" r="4"></circle>
</g>
</g>
</g>
</g>
</g>
</svg>
<h4 class="office__name">Kantoornaam</h4>
</div>
<p class="office__address">
Ditiseenstraat 336
<br>
2100 Plaatsnaam
</p>
<div class="d-flex align-items-center">
<a class="office__phone" href="tel:2476248">
<svg class="office__image" width="19px" height="16px" viewBox="0 0 19 16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>phone-incoming-call</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -788.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM">
<g id="phone-incoming-call" transform="translate(16.000000, 124.000000)">
<path d="M16.7041667,9.4216 L16.7041667,9.4216 C11.9506226,8.438823 7.04937744,8.438823 2.29583333,9.4216 C0.988428891,9.71164747 0.0427845264,10.8616609 0,12.2136 L0,13.4136 C1.3386168e-16,14.5181695 0.886103099,15.4136 1.97916667,15.4136 L4.35416667,15.4136 C5.44723023,15.4136 6.33333333,14.5181695 6.33333333,13.4136 L6.33333333,12.9776 C8.44031071,12.788799 10.5596893,12.788799 12.6666667,12.9776 L12.6666667,13.4136 C12.6666667,14.5181695 13.5527698,15.4136 14.6458333,15.4136 L17.0208333,15.4136 C18.1138969,15.4136 19,14.5181695 19,13.4136 L19,12.2136 C18.9572155,10.8616609 18.0115711,9.71164747 16.7041667,9.4216 Z" id="Path"></path>
<path d="M9.10416667,6.4136 C9.65069845,6.4136 10.09375,5.96588475 10.09375,5.4136 L10.09375,1.5864 C10.09375,1.03411525 9.65069845,0.5864 9.10416667,0.5864 C8.55763488,0.5864 8.11458333,1.03411525 8.11458333,1.5864 L8.11458333,5.4136 C8.11458333,5.96588475 8.55763488,6.4136 9.10416667,6.4136 L9.10416667,6.4136 Z" id="Path"></path>
<path d="M12.7925417,7.68 C13.056656,7.6805004 13.3099193,7.57386324 13.4955417,7.384 L16.1405,4.6888 C16.525477,4.29645691 16.5228187,3.66302939 16.1345625,3.27400001 C15.7463063,2.88497064 15.119477,2.88765693 14.7345,3.28 L12.0895417,5.9776 C11.8082967,6.26430834 11.7252324,6.69378412 11.8789583,7.06640001 C12.0326842,7.43901591 12.393046,7.68168076 12.7925417,7.6816 L12.7925417,7.68 Z" id="Path"></path>
<path d="M4.71279167,7.3856 C5.09755004,7.77794309 5.72420215,7.78080846 6.11245833,7.392 C6.50071451,7.00319154 6.50355004,6.36994309 6.11879167,5.9776 L3.47383333,3.28 C3.08907496,2.88765693 2.46242285,2.88479156 2.07416668,3.27360001 C1.68591051,3.66240847 1.68307497,4.29565691 2.06783333,4.688 L4.71279167,7.3856 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
03/366 03 63
</a>
</div>
<div class="d-flex align-items-center">
<a class="office__mail" href="mailto:[email protected]">
<svg class="office__image" width="19px" height="12px" viewBox="0 0 19 12" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>envelope</title>
<desc>Created with Sketch.</desc>
<g id="Desktop" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g class="office__image__fill" id="07A-Kantoren" transform="translate(-152.000000, -1060.000000)" fill="#0A51A1" fill-rule="nonzero">
<g id="KANTOOR-GRID" transform="translate(136.000000, 664.000000)">
<g id="KANTOOR-ITEM-Copy-4" transform="translate(0.000000, 236.000000)">
<g id="envelope" transform="translate(16.000000, 160.000000)">
<path d="M8.79388995,8.02973502 C9.1837569,8.40034474 9.81464737,8.40034474 10.2045143,8.02973502 L17.9326295,0.661792375 C18.0396409,0.560139853 18.0772497,0.409580122 18.029784,0.272853164 C17.9823183,0.136126206 17.8579208,0.0366879201 17.7084296,0.0159753906 C17.6326123,0.00532476514 17.5560783,-1.42906077e-05 17.4794425,1.11892691e-06 L1.52215326,1.11892691e-06 C1.44498481,-8.88796185e-05 1.3679146,0.00525037558 1.29157043,0.0159753906 C1.14207916,0.0366879201 1.01768173,0.136126206 0.970216006,0.272853164 C0.92275028,0.409580122 0.960359132,0.560139853 1.06737052,0.661792375 L8.79388995,8.02973502 Z" id="Path"></path>
<path d="M18.9113324,0.934388621 C18.8571995,0.911710866 18.7945295,0.923767305 18.752999,0.964848732 L13.844666,5.80722525 C13.7675748,5.88369567 13.7675748,6.00723892 13.844666,6.08370933 L17.8370407,10.0224359 C17.9914586,10.1694367 18.0534635,10.3871989 17.9992238,10.5920261 C17.9449842,10.7968533 17.782941,10.9568698 17.5753752,11.0105737 C17.3678093,11.0642776 17.1470227,11.0033113 16.9978741,10.8511071 L13.0054993,6.91238054 C12.9683685,6.87565592 12.9179518,6.85501643 12.8653743,6.85501643 C12.8127969,6.85501643 12.7623802,6.87565592 12.7252493,6.91238054 L11.0397911,8.57519015 C10.1896858,9.4134033 8.81189659,9.4134033 7.96179126,8.57519015 L6.27474968,6.9139426 C6.19723768,6.83788739 6.07201169,6.83788739 5.99449969,6.9139426 L2.0021249,10.8526692 C1.76904426,11.0745543 1.3987184,11.0712084 1.16979593,10.8451491 C0.940873462,10.6190898 0.937831202,10.2537372 1.16295827,10.023998 L5.15533307,6.08527139 C5.2324242,6.00880097 5.2324242,5.88525772 5.15533307,5.80878731 L0.246999987,0.966410789 C0.205688376,0.924926083 0.142750275,0.912818073 0.0886666621,0.935950678 C0.035502453,0.957800719 0.000634345428,1.00878578 0,1.0656014 L0,10.4379431 C1.23085801e-16,11.3006433 0.708882443,12 1.58333325,12 L17.4166658,12 C18.2911166,12 18.999999,11.3006433 18.999999,10.4379431 L18.999999,1.0656014 C19.0002138,1.00815253 18.965167,0.956288778 18.9113324,0.934388621 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="row footer__container">
<div class="col-12 col-sm-12 col-lg-3">
<img class="footer__logo" src="assets/images/logo-blue.svg" alt="logo">
</div>
<div class="col-12 col-sm-4 col-lg-3">
<ul class="">
<li>
<a href="">Simulaties</a>
</li>
<li>