-
Notifications
You must be signed in to change notification settings - Fork 0
/
editable.html
869 lines (490 loc) · 60.3 KB
/
editable.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
<!DOCTYPE html><html lang=""><head><script type="text/javascript" class="silex-json-styles" data-silex-static="">
window.silex = window.silex || {}
window.silex.data = {"site":{"width":960},"pages":[{"id":"page-home","displayName":"Home","link":{"linkType":"LinkTypePage","href":"#!page-home"},"canDelete":true,"canProperties":true,"canMove":true,"canRename":true,"opened":false},{"id":"page-our-mission","displayName":"Our Mission","link":{"linkType":"LinkTypePage","href":"#!page-our-mission"},"canDelete":true,"canProperties":true,"canMove":true,"canRename":true,"opened":false},{"id":"page-news-press","displayName":"News & Press","link":{"linkType":"LinkTypePage","href":"#!page-news-press"},"canDelete":true,"canProperties":true,"canMove":true,"canRename":true,"opened":false},{"id":"page-how-to-help","displayName":"How to Help","link":{"linkType":"LinkTypePage","href":"#!page-how-to-help"},"canDelete":true,"canProperties":true,"canMove":true,"canRename":true,"opened":false},{"id":"page-contact","displayName":"Contact","link":{"linkType":"LinkTypePage","href":"#!page-contact"},"canDelete":true,"canProperties":true,"canMove":true,"canRename":true,"opened":false}]}</script>
<title>Ipsoom Center - Silex template</title>
<meta charset="UTF-8">
<meta name="generator" content="Silex v2.2.14">
<!-- leave this for stats -->
<script type="text/javascript" src="https://editor.silex.me/static/2.12/jquery.js" data-silex-static=""></script>
<script type="text/javascript" src="https://editor.silex.me/static/2.12/jquery-ui.js" data-silex-static="" data-silex-remove-publish=""></script>
<script type="text/javascript" src="https://editor.silex.me/static/2.12/pageable.js" data-silex-static="" data-silex-remove-publish=""></script>
<script type="text/javascript" src="https://editor.silex.me/static/2.12/front-end.js" data-silex-static=""></script>
<!-- Normalize -->
<link href="https://editor.silex.me/static/2.12/normalize.css" rel="stylesheet" data-silex-static="">
<!-- Silex style -->
<link href="https://editor.silex.me/static/2.12/front-end.css" rel="stylesheet" data-silex-static="">
<style class="silex-style">.nav-mark a {transition: background-color .5s ease;}.sub-nav.sub-nav-active {width: 250px; box-shadow: 0 1px 10px black;}.sub-nav {transition: all .15s ease-out; z-index: 100; cursor: pointer;}</style>
<script type="text/javascript" class="silex-script">/* slider buttons */
$(function() {
try {
var slider = $('.slider .unslider').children().get(0);
var unslider = $(slider).data('unslider');
$('.sub-nav').click(function() {
unslider.next()
$('.sub-nav-active').removeClass('sub-nav-active');
$(this).addClass('sub-nav-active');
});
}
catch(e) {
}
})</script>
<style class="silex-inline-styles">.body-initial {background-color: rgb(0, 0, 0); border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); position: static;}.silex-id-1538221038117-34 {position: static; margin-top: -1px;}.silex-id-1538221038114-33 {min-height: 20px; position: relative; margin-left: auto; margin-right: auto;}.silex-id-1552775712222-12 {width: 33px; background-color: transparent; top: 100px; left: 774px; min-height: 27px; position: absolute;}.silex-id-1552775732073-13 {width: 100px; background-color: rgb(255, 255, 255); top: 100px; left: 740px; min-height: 100px; position: absolute;}.silex-id-1490693798023-5 {background-color: transparent; min-width: 960px; position: static; margin-top: -1px;}.silex-id-1490693798022-4 {background-color: transparent; min-height: 474px; position: relative; margin-left: auto; margin-right: auto;}.silex-id-1439554966458-52 {width: 960px; top: -14px; left: 0px; box-sizing: content-box; background-color: rgb(0, 0, 0); min-height: 483px; position: absolute;}.silex-id-1538215480678-25 {min-height: 477px; width: 728px; background-color: rgba(254,255,253,1); top: 5px; left: 232px; position: absolute;}.silex-id-1439554966357-51 {width: 232px; top: 164px; left: 0px; box-sizing: content-box; border-top-color: rgb(255, 255, 255); border-right-color: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); border-left-color: rgb(255, 255, 255); border-top-width: 0px; border-right-width: 3px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; background-color: rgb(102, 88, 71); min-height: 159px; position: absolute;}.silex-id-1439554966255-50 {width: 183px; top: 22px; left: 45px; box-sizing: content-box; min-height: 118px; position: absolute;}.silex-id-1439554966154-49 {width: 232px; top: 5px; left: 0px; box-sizing: content-box; border-top-color: rgb(255, 255, 255); border-right-color: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); border-left-color: rgb(255, 255, 255); border-top-width: 0px; border-right-width: 3px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; background-color: rgb(255, 153, 0); min-height: 159px; position: absolute;}.silex-id-1439554966050-48 {width: 183px; top: 17px; left: 45px; box-sizing: content-box; min-height: 104px; position: absolute;}.silex-id-1439554965843-46 {width: 232px; top: 323px; left: 0px; box-sizing: content-box; border-top-color: rgb(255, 255, 255); border-right-color: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); border-left-color: rgb(255, 255, 255); border-top-width: 0px; border-right-width: 3px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; background-color: rgb(61, 54, 45); min-height: 159px; position: absolute;}.silex-id-1439554965740-45 {width: 183px; top: 22px; left: 45px; box-sizing: content-box; min-height: 104px; position: absolute;}.silex-id-1490693931165-7 {background-color: transparent; min-width: 960px; position: static; margin-top: -1px;}.silex-id-1490693931163-6 {background-color: transparent; min-height: 703px; position: relative; margin-left: auto; margin-right: auto;}.silex-id-1439554965432-42 {width: 960px; top: -9px; left: 0px; box-sizing: content-box; background-color: rgb(254, 255, 253); min-height: 309px; position: absolute;}.silex-id-1439554965331-41 {width: 290px; top: 26px; left: 37px; box-sizing: content-box; border-top-width: 0px; border-right-width: 1px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(102, 88, 71); border-right-color: rgb(102, 88, 71); border-bottom-color: rgb(102, 88, 71); border-left-color: rgb(102, 88, 71); background-color: transparent; min-height: 254px; position: absolute;}.silex-id-1439554965129-39 {width: 283px; top: -6px; left: 0px; box-sizing: content-box; min-height: 60px; position: absolute;}.silex-id-1439554965028-38 {width: 260px; top: 66px; left: 0px; box-sizing: content-box; border-top-width: 5px; border-right-width: 5px; border-bottom-width: 5px; border-left-width: 5px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; background-image: url(../../../../../libs/templates/silex-templates/ipsoom/assets/wood.jpg); background-color: rgb(0, 0, 0); background-size: cover; min-height: 94px; position: absolute;}.silex-id-1439554965230-40 {width: 266px; top: 169px; left: 3px; box-sizing: content-box; min-height: 91px; position: absolute;}.silex-id-1439554964925-37 {width: 290px; top: 26px; left: 345px; box-sizing: content-box; border-top-width: 0px; border-right-width: 1px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(102, 88, 71); border-right-color: rgb(102, 88, 71); border-bottom-color: rgb(102, 88, 71); border-left-color: rgb(102, 88, 71); background-color: transparent; min-height: 254px; position: absolute;}.silex-id-1439554964619-34 {width: 283px; top: -6px; left: 0px; box-sizing: content-box; min-height: 60px; position: absolute;}.silex-id-1439554964822-36 {width: 260px; top: 66px; left: 0px; box-sizing: content-box; border-top-width: 5px; border-right-width: 5px; border-bottom-width: 5px; border-left-width: 5px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; background-image: url(../../../../../libs/templates/silex-templates/ipsoom/assets/night.jpg); background-color: rgb(0, 0, 0); background-size: cover; min-height: 94px; position: absolute;}.silex-id-1439554964720-35 {width: 266px; top: 169px; left: 3px; box-sizing: content-box; min-height: 91px; position: absolute;}.silex-id-1439554964518-33 {width: 290px; top: 26px; left: 656px; box-sizing: content-box; border-top-color: rgb(102, 88, 71); border-right-color: rgb(102, 88, 71); border-bottom-color: rgb(102, 88, 71); border-left-color: rgb(102, 88, 71); background-color: transparent; min-height: 254px; position: absolute;}.silex-id-1439554964214-30 {width: 283px; top: -6px; left: 0px; box-sizing: content-box; min-height: 60px; position: absolute;}.silex-id-1439554964416-32 {width: 260px; top: 66px; left: 0px; box-sizing: content-box; border-top-width: 5px; border-right-width: 5px; border-bottom-width: 5px; border-left-width: 5px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-color: rgb(0, 0, 0); border-right-color: rgb(0, 0, 0); border-bottom-color: rgb(0, 0, 0); border-left-color: rgb(0, 0, 0); border-image-source: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; background-image: url(../../../../../libs/templates/silex-templates/ipsoom/assets/bench.jpg); background-color: rgb(0, 0, 0); background-size: cover; min-height: 94px; position: absolute;}.silex-id-1439554964315-31 {width: 266px; top: 169px; left: 3px; box-sizing: content-box; min-height: 91px; position: absolute;}.silex-id-1439554964011-28 {width: 225px; top: 334px; left: 41px; box-sizing: content-box; min-height: 61px; position: absolute;}.silex-id-1439554963909-27 {width: 47px; top: 327px; left: 310px; box-sizing: content-box; min-height: 68px; position: absolute;}.silex-id-1439554964112-29 {width: 592px; top: 333px; left: 342px; box-sizing: content-box; min-height: 111px; position: absolute;}.silex-id-1439554963809-26 {width: 47px; top: 407px; left: 577px; box-sizing: content-box; min-height: 68px; position: absolute;}.silex-id-1439554963707-25 {width: 280px; top: 469px; left: 25px; box-sizing: content-box; background-color: transparent; min-height: 215px; position: absolute;}.silex-id-1439554963605-24 {width: 276px; top: 14px; left: 14px; box-sizing: content-box; min-height: 147px; position: absolute;}.silex-id-1439554963502-23 {width: 113px; top: 184px; left: 16px; box-sizing: content-box; background-color: rgba(102,88,71,1); min-height: 35px; position: absolute;}.silex-id-1439554963400-22 {width: 280px; top: 469px; left: 332px; box-sizing: content-box; background-color: transparent; min-height: 215px; position: absolute;}.silex-id-1439554963298-21 {width: 276px; top: 14px; left: 14px; box-sizing: content-box; min-height: 147px; position: absolute;}.silex-id-1439554963198-20 {width: 113px; top: 184px; left: 16px; box-sizing: content-box; background-color: rgb(102, 88, 71); min-height: 34px; position: absolute;}.silex-id-1439554963096-19 {width: 280px; top: 469px; left: 639px; box-sizing: content-box; background-color: transparent; min-height: 215px; position: absolute;}.silex-id-1439554962995-18 {width: 276px; top: 14px; left: 14px; box-sizing: content-box; min-height: 147px; position: absolute;}.silex-id-1439554962893-17 {width: 113px; top: 184px; left: 16px; box-sizing: content-box; background-color: rgba(102,88,71,1); min-height: 34px; position: absolute;}.silex-id-1490694258064-17 {background-color: transparent; border-color: #000000; min-width: 960px; position: static; margin-top: -1px;}.silex-id-1490694258062-16 {background-color: transparent; border-color: #000000; min-height: 744px; position: relative; margin-left: auto; margin-right: auto;}.silex-id-1492776401689-1 {width: 456px; height: 587px; background-color: transparent; top: 83px; left: 1px; position: absolute;}.silex-id-1548873212201-7 {height: 400px; width: 456px; background-color: transparent; top: 92px; left: 504px; position: absolute;}.silex-id-1490694152451-11 {background-color: transparent; min-width: 960px; position: static; margin-top: -1px;}.silex-id-1490694152449-10 {background-color: transparent; min-height: 236px; position: relative; margin-left: auto; margin-right: auto;}.silex-id-1439554961635-5 {width: 817px; top: 31px; left: 2px; box-sizing: content-box; min-height: 189px; position: absolute;}.silex-id-1490701849669-19 {background-color: transparent; min-width: 960px; background-image: url(../../../../../libs/templates/silex-templates/ipsoom/assets/UJO0jYLtRte4qpyA37Xu_9X6A7388.jpg); background-size: cover; background-position: center center; position: static; margin-top: -1px;}.silex-id-1490701849668-18 {background-color: transparent; min-height: 480px; position: relative; margin-left: auto; margin-right: auto;}.silex-id-1490694217944-13 {background-color: transparent; position: static; margin-top: -1px;}.silex-id-1490694217944-12 {background-color: transparent; min-height: 236px; position: relative; margin-left: auto; margin-right: auto;}.silex-id-1439554961432-3 {width: 817px; top: 31px; left: 2px; box-sizing: content-box; min-height: 189px; position: absolute;}.silex-id-1490701905049-21 {background-color: transparent; background-image: url(../../../../../libs/templates/silex-templates/ipsoom/assets/nQZcA7PRTyuduZPSZQ88_wanderlust.jpg); background-size: cover; background-position: center center; position: static; margin-top: -1px;}.silex-id-1490701905043-20 {background-color: transparent; min-height: 480px; position: relative; margin-left: auto; margin-right: auto;}.silex-id-1490694237194-15 {background-color: transparent; min-width: 960px; position: static; margin-top: -1px;}.silex-id-1490694237193-14 {background-color: transparent; min-height: 232px; position: relative; margin-left: auto; margin-right: auto;}.silex-id-1439554961331-2 {width: 817px; top: 31px; left: 2px; box-sizing: content-box; min-height: 189px; position: absolute;}.silex-id-1490701944668-23 {background-color: transparent; background-image: url(../../../../../libs/templates/silex-templates/ipsoom/assets/xpdPwXTASnOUXFpIPgDs_IMG_1460_edt.jpg); background-size: cover; background-position: bottom center; position: static; margin-top: -1px;}.silex-id-1490701944667-22 {background-color: transparent; min-height: 480px; position: relative; margin-left: auto; margin-right: auto;}.silex-id-1490694042605-9 {background-color: transparent; position: static; margin-top: -1px;}.silex-id-1490694042604-8 {background-color: transparent; min-height: 269px; position: relative; margin-left: auto; margin-right: auto;}.silex-id-1439554962691-15 {width: 264px; top: 55px; left: 37px; box-sizing: content-box; min-height: 67px; position: absolute;}.silex-id-1439554962386-12 {width: 25px; top: 139px; left: 663px; box-sizing: content-box; height: 34.5676px; position: absolute;}.silex-id-1439554962283-11 {width: 240px; top: 127px; left: 698px; box-sizing: content-box; min-height: 52px; position: absolute;}.silex-id-1439554962181-10 {width: 102px; top: 136px; left: 539px; box-sizing: content-box; min-height: 45px; position: absolute;}.silex-id-1439554962078-9 {width: 133px; top: 136px; left: 400px; box-sizing: content-box; min-height: 45px; position: absolute;}.silex-id-1439554961964-8 {width: 146px; top: 136px; left: 247px; box-sizing: content-box; min-height: 45px; position: absolute;}.silex-id-1439554961840-7 {width: 134px; top: 136px; left: 107px; box-sizing: content-box; min-height: 45px; position: absolute;}.silex-id-1439554961739-6 {width: 65px; top: 136px; left: 37px; box-sizing: content-box; min-height: 45px; position: absolute;}.silex-id-1439554962792-16 {width: 600px; top: 208px; left: 180px; box-sizing: content-box; background-color: transparent; min-height: 50px; position: absolute;}.silex-id-1538217695429-29 {width: 159px; background-color: transparent; top: 59px; left: 754px; min-height: 68px; position: absolute;}@media only screen and (max-width: 480px) {.silex-id-1538221038117-34 {top: 0px; left: 0px;}.silex-id-1538221038114-33 {min-height: 52px;}.silex-id-1552775712222-12 {left: 3px; top: 55px; min-height: 27px; width: 33px;}.silex-id-1552775732073-13 {left: -176px; top: 0px; background-color: transparent; width: 291px; min-height: 20px;}.silex-id-1439554966357-51 {top: 0px; left: 93px; width: 234px; min-height: 158px;}.silex-id-1490693931165-7 {top: 58px; left: 0px;}.silex-id-1490693931163-6 {min-height: 0px;}.silex-id-1439554965432-42 {top: 0px; left: 0px; width: 806px; min-height: 1159px;}.silex-id-1439554965331-41 {top: 32px; left: 10px; width: 402px; min-height: 262px;}.silex-id-1439554965129-39 {top: 91px; left: 10px; width: 382px; min-height: 67px;}.silex-id-1439554965028-38 {top: 158px; left: 5px; width: 382px; min-height: 94px;}.silex-id-1439554965230-40 {top: 0px; left: 10px; width: 382px; min-height: 91px;}.silex-id-1439554964925-37 {top: 359px; left: 10px; width: 402px; min-height: 262px;}.silex-id-1439554964619-34 {top: 196px; left: 10px; width: 382px; min-height: 66px;}.silex-id-1439554964822-36 {top: 0px; left: 5px; width: 382px; min-height: 94px;}.silex-id-1439554964720-35 {top: 104px; left: 10px; width: 382px; min-height: 91px;}.silex-id-1439554964518-33 {top: 685px; left: 11px; width: 414px; min-height: 262px;}.silex-id-1439554964214-30 {top: 196px; left: 10px; width: 394px; min-height: 66px;}.silex-id-1439554964416-32 {top: 0px; left: 5px; width: 394px; min-height: 94px;}.silex-id-1439554964315-31 {top: 104px; left: 10px; width: 394px; min-height: 91px;}.silex-id-1439554964011-28 {top: 1603px; left: 11px; width: 423px; min-height: 90px;}.silex-id-1439554964112-29 {top: 1183px; left: 57px; width: 331px; min-height: 172px;}.silex-id-1439554963707-25 {top: 1241px; left: 11px; width: 423px; min-height: 215px;}.silex-id-1439554963605-24 {top: 5px; left: 11px; width: 401px; min-height: 160px;}.silex-id-1439554963400-22 {top: 1456px; left: 11px; width: 423px; min-height: 215px;}.silex-id-1439554963298-21 {top: 5px; left: 11px; width: 401px; min-height: 160px;}.silex-id-1439554963096-19 {top: 1671px; left: 11px; width: 423px; min-height: 215px;}.silex-id-1439554962995-18 {top: 5px; left: 11px; width: 401px; min-height: 160px;}.silex-id-1492776401689-1 {height: 324px; top: 105px; left: 20px; width: 456px;}.silex-id-1439554961635-5 {width: 440px;}.silex-id-1439554961432-3 {width: 440px;}.silex-id-1439554961331-2 {width: 440px;}.silex-id-1490694042605-9 {top: 3037px; left: 0px;}.silex-id-1490694042604-8 {min-height: 648px;}.silex-id-1439554962691-15 {top: 0px; left: 12px; width: 455px; min-height: 136px;}.silex-id-1439554962283-11 {top: 0px; left: -65px; width: 305px; min-height: 60px;}}</style>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,400" rel="stylesheet" class="silex-custom-font"><meta name="viewport" content="width=device-width, initial-scale=1"><style class="silex-style-settings">.website-width {width: 960px;}@media (min-width: 481px) {.silex-editor {min-width: 1160px;}}</style><script src="https://editor.silex.me/static/2.12/unslider/unslider-min.js" data-silex-static="" data-dependency=""></script><script src="https://editor.silex.me/static/2.12/osm/ol.js" data-silex-static="" data-dependency=""></script><script src="https://editor.silex.me/static/2.12/osm/ol.js" data-silex-static="" data-dependency=""></script><link rel="stylesheet" href="https://editor.silex.me/static/2.12/unslider/unslider.css" data-silex-static="" data-dependency=""><style class="silex-prodotype-style" data-style-id="all-style">h2 {font-weight: 400;}.text-element > .silex-element-content {font-family: 'Roboto', sans-serif; font-weight: 400; color: #FEFFFD;}a {color: #FF9900; text-decoration: none;}[data-silex-href] {color: #FF9900; text-decoration: none;}@media only screen and (max-width: 480px) {.text-element > .silex-element-content {font-size: 200%;}}</style><style class="silex-prodotype-style" data-style-id="nav">.nav.text-element > .silex-element-content {font-family: 'Roboto', sans-serif; font-weight: 100; font-size: 18px; text-align: center; text-transform: uppercase; line-height: 10px;}.nav a {color: #ffffff; padding-top: 5px; padding-left: 10px; padding-bottom: 5px; padding-right: 10px;}.nav [data-silex-href] {color: #ffffff; padding-top: 5px; padding-left: 10px; padding-bottom: 5px; padding-right: 10px;}.nav .page-link-active {background-color: #FF9900;}.nav a:hover {background-color: #FF9900;}.nav [data-silex-href]:hover {background-color: #FF9900;}@media only screen and (max-width: 480px) {.nav ul li {list-style-type: none; line-height: 2;}}</style><style class="silex-prodotype-style" data-style-id="header">.header.text-element > .silex-element-content {line-height: 2;}</style><style class="silex-prodotype-style" data-style-id="white-title">.white-title h2 {font-weight: 100; font-size: 38px; color: #000000; text-transform: capitalize; line-height: 0;}.white-title h2::first-letter {font-weight: 400; color: #ffffff; background-color: #ff9900; letter-spacing: 10px;}</style><style class="silex-prodotype-style" data-style-id="black-text">.black-text.text-element > .silex-element-content {color: #000000;}</style><style class="silex-prodotype-style" data-style-id="content">.content h2 {text-transform: uppercase;}.content h3 {font-weight: normal; font-size: 28px; line-height: 0.4;}.content u {color: #ff9900; text-decoration: none;}</style><style class="silex-prodotype-style" data-style-id="phone-number">.phone-number.text-element > .silex-element-content {font-size: 30px; line-height: 0;}.phone-number b {font-weight: normal; color: #665847;}</style><style class="silex-prodotype-style" data-style-id="buttons">.buttons h2 {font-weight: 200;}.buttons h3 {font-weight: normal; font-size: 22px;}.buttons.text-element > .silex-element-content {font-size: 25px; text-transform: uppercase; line-height: 5px;}.buttons p {font-weight: 200; font-size: 18px; text-align: center; line-height: 0;}</style><style class="silex-prodotype-style" data-style-id="footer">.footer.text-element > .silex-element-content {text-align: center;}</style><style class="silex-prodotype-style" data-style-id="quote">.quote.text-element > .silex-element-content {font-size: 59px;}</style></head>
<body data-silex-type="container-element" class="body-initial all-style enable-mobile prevent-resizable prevent-selectable editable-style silex-runtime" data-silex-id="body-initial" style="">
<div class=""></div>
<nav data-silex-type="container-element" class="container-element editable-style silex-id-1538221038117-34 section-element hide-on-desktop prevent-resizable" data-silex-id="silex-id-1538221038117-34"><div data-silex-type="container-element" class="editable-style silex-id-1538221038114-33 container-element silex-element-content website-width" data-silex-id="silex-id-1538221038114-33" style=""><div data-silex-type="text-element" class="editable-style silex-id-1552775712222-12 text-element silex-component prevent-resizable hide-on-desktop nav prevent-auto-z-index" data-silex-id="silex-id-1552775712222-12" style=""><div class="silex-element-content normal"><style>.hamburger-menu_1698606564712_267 {position: absolute; z-index: 20;}.silex-editor .hamburger-menu_1698606564712_267 nav {left: -9999px;}.hamburger-menu_1698606564712_267 nav ul {margin-top: 80px;}.hamburger-menu_1698606564712_267 nav {opacity: 0; position: absolute; background-color: #333333; transition: left 1s ease, height 0s ease 1s; left: -300px; width: 300px; height: 20px;}.hamburger-menu_1698606564712_267.open nav {opacity: 1; height: 100vh; left: 0; transition: left 1s ease, height 0s ease 0s;}.hamburger-menu_1698606564712_267 .nav-container {z-index: 10; position: absolute;}.hamburger-menu_1698606564712_267.open .nav-container {}.hamburger-menu_1698606564712_267 .hamburger-btn {z-index: 20; cursor: pointer; position: absolute;}.hamburger-menu_1698606564712_267 .hamburger-btn span {display: block; width: 30px; height: 5px; margin-bottom: 3px; position: relative; background-color: #000000; border: 1px solid #ffffff; border-radius: 3px; transition: border-color 0.1s ease-in,
opacity 0.1s ease-in,
transform 0.1s ease-in,
background 0.1s ease-in;}.hamburger-menu_1698606564712_267.open .hamburger-btn span {border-color: rgba(255, 255, 255, 0);}.hamburger-menu_1698606564712_267 .hamburger-btn span:first-child {transform-origin: 4px -2px;}.hamburger-menu_1698606564712_267.open .hamburger-btn span:first-child {transform: rotate(45deg) translate(7px, -4px);}.hamburger-menu_1698606564712_267.open .hamburger-btn span:nth-last-child(2) {opacity: 0;}.hamburger-menu_1698606564712_267 .hamburger-btn span:nth-child(3) {transform-origin: -11px 4px;}.hamburger-menu_1698606564712_267.open .hamburger-btn span:nth-child(3) {transform: rotate(-45deg) translate(0, 12px);}</style>
<!-- inspired by https://codepen.io/erikterwan/pen/EVzeRP -->
<div class="hamburger-menu_1698606564712_267 closed">
<div class="hamburger-btn ">
<span></span>
<span></span>
<span></span>
</div>
<div class="nav-container">
<div class="prevent-scale">
<nav class="">
<ul>
<li><a href="#!page-home" class="page-link-active">Home</a></li>
<li><a href="#!page-our-mission" class="">Our mission</a></li>
<li><a href="#!page-news-press" class="">News & Press</a></li>
<li><a href="#!page-how-to-help" class="">How to help</a></li>
<li><a href="#!page-contact" class="">Contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
<script>
(function() {
var isOpen = false;
function close() {
isOpen = false;
document.querySelector('.hamburger-menu_1698606564712_267').classList.remove('open');
document.querySelector('.hamburger-menu_1698606564712_267').classList.add('closed');
}
function open() {
isOpen = true;
document.querySelector('.hamburger-menu_1698606564712_267').classList.add('open');
document.querySelector('.hamburger-menu_1698606564712_267').classList.remove('closed');
}
function toggle() {
if(isOpen) close();
else open();
}
function scrollOrResize() {
close();
move();
}
var silexElement = document.querySelector('.hamburger-menu_1698606564712_267').closest('.editable-style');
function move() {
var data = window.silex
var rect = silexElement.getBoundingClientRect();
var offset = {
top: rect.top + data.scrollTop,
left: rect.left + data.scrollLeft,
};
var container = document.querySelector('.hamburger-menu_1698606564712_267 .nav-container');
container.style.transform = 'translate(' + (data.scrollLeft - (offset.left/data.scale)) + 'px, ' + (data.scrollTop - (offset.top/data.scale)) + 'px)';
}
document.querySelector('.hamburger-menu_1698606564712_267 .hamburger-btn').addEventListener('click', function() { toggle(); });
document.addEventListener('resize', scrollOrResize);
document.addEventListener('scroll', scrollOrResize);
scrollOrResize()
setTimeout(() => scrollOrResize(), 0)
})();
</script>
</div></div><div data-silex-type="container-element" class="editable-style silex-id-1552775732073-13 container-element hide-on-desktop" data-silex-id="silex-id-1552775732073-13"></div></div></nav><section data-silex-type="container-element" class="container-element website-min-width editable-style silex-id-1490693798023-5 section-element hide-on-mobile prevent-resizable page-home paged-element" data-silex-id="silex-id-1490693798023-5">
<div data-silex-type="container-element" class="editable-style silex-element-content website-width silex-id-1490693798022-4 container-element" data-silex-id="silex-id-1490693798022-4">
<div data-silex-type="container-element" class="editable-style container-element silex-id-1439554966458-52" data-silex-id="silex-id-1439554966458-52">
<div data-silex-type="html-element" class="editable-style silex-id-1538215480678-25 html-element silex-component slider" data-silex-id="silex-id-1538215480678-25"><div class="silex-element-content"><div id="parent_1698606564714_772">
<!-- preview -->
<div class="prodotype-preview">
<div class="preview-text prodotype-force-size"><p>~ Preview ~</p></div>
<figure class="slide-0">
<div class="slide-image prodotype-force-size">
</div>
</figure>
</div>
<div id="id_1698606564714_772">
<!-- runtime -->
<!-- the whole slideshow -->
<ul class="prodotype-runtime">
<li><figure class="slide-0">
<div class="slide-image">
</div>
</figure></li>
<li><figure class="slide-1">
<div class="slide-image">
</div>
</figure></li>
<li><figure class="slide-2">
<div class="slide-image">
</div>
</figure></li>
</ul>
</div>
</div>
<style>#parent_1698606564714_772 .prodotype-preview {list-style-type: none; margin: 0; padding: 0;}#parent_1698606564714_772 .prodotype-preview .preview-text {display: flex; align-items: center; justify-content: center;}#parent_1698606564714_772 .prodotype-preview .preview-text p {z-index: 1; background-color: black; color: white;}#parent_1698606564714_772 .slide-0 .slide-image {background-image: url(http://localhost:6805/ce/fs/get/Documents/silex/silex-meta/packages/silex-templates/ipsoom/assets/yoann-boyer-185507-unsplash.jpg);}#parent_1698606564714_772 .slide-1 .slide-image {background-image: url(http://localhost:6805/ce/fs/get/Documents/silex/silex-meta/packages/silex-templates/ipsoom/assets/alex-bertha-215867-unsplash.jpg);}#parent_1698606564714_772 .slide-2 .slide-image {background-image: url(http://localhost:6805/ce/fs/get/Documents/silex/silex-meta/packages/silex-templates/ipsoom/assets/jon-flobrant-234565-unsplash.jpg);}#parent_1698606564714_772 .unslider {position: relative;}#parent_1698606564714_772 .slide-image {width: 100%; display: flex; justify-content: center; background-repeat: no-repeat; background-size: cover; background-position: 50%; align-items: flex-end;}#parent_1698606564714_772 figcaption {padding: 50px; color: #ffffff; background-color: rgba(0,0,0,0.5); width: 100%; text-align: center;}#parent_1698606564714_772 .unslider-nav {position: absolute; bottom: 10px; left: 0; right: 0; top: auto; margin: 0;}#parent_1698606564714_772 .unslider-nav ol {text-align: center;}#parent_1698606564714_772 .unslider-nav ol li.unslider-active {background: #fff; cursor: default; opacity: 1;}#parent_1698606564714_772 .unslider-nav ol li {display: inline-block; float: none; width: 6px; height: 6px; margin: 0 4px; padding: 3px; background: transparent; border-radius: 10px; overflow: hidden; text-indent: -999em; border: 2px solid #fff; cursor: pointer; opacity: .4;}#parent_1698606564714_772 .unslider-arrow {display: block; width: 32px; height: 32px; top: 50%; right: 16px; left: auto; margin-top: -16px; overflow: hidden; background: rgba(0,0,0,.2) no-repeat 50% 50%; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAQCAQAAABuQZ3IAAAAi0lEQVR4AU3OISBEQQBAwS0AACS9NxqQgCZpkiYBVddFvWhAAUABAPQCAGC4g/0vTnrBqCfDIZl70J+kMUBPpEwT4FNXxBxz4F1HxHyr4EVTxBLb4EFNxEon4CJSlVNw9AcV9sC16h8osgke1P1ArgXwouVvdQq86ww/GQefusNf7kBviBlxpT8k+gL/Wox4r1d4MwAAAABJRU5ErkJggg==); background-size: 7px 11px; border-radius: 32px; text-indent: -999em; opacity: .6; transition: opacity .2s;}#parent_1698606564714_772 .unslider-arrow.prev {left: 16px; right: auto; -ms-transform: rotate(-180deg); transform: rotate(-180deg);}</style>
<script type="text/javascript">
(function() {
// do not start in the editor (it would mess with the markup)
if(!$('body').hasClass('silex-runtime')) return;
var $slider = $('#id_1698606564714_772')
var slider = $slider.unslider({
'autoplay': false,
'speed': 2000,
'delay': 2000,
'index': 0,
'nav': false,
'animation': 'fade',
'arrows': false
});
// Listen to slide changes
// apply element height to the images
var silexElement = $slider.closest('.editable-style');
var elementMinHeight = silexElement.css('height');
var elementWidth = silexElement.css('width');
$('#id_1698606564714_772 li .slide-image').css({
'height': elementMinHeight
});
// apply element height to the container (useful for fade only)
$('#id_1698606564714_772 ul').css({
'height': elementMinHeight
});
setTimeout(function(){
// use onswipe.js
// Fix #1127
if(window.onSwipe) {
window.onSwipe('left', function(){ $slider.data('unslider').next()})
window.onSwipe('right', function(){ $slider.data('unslider').prev()})
} else {
console.warn('onswipe.js script is not found, swipe gestures might no work')
}
}, 0)
})();
</script>
</div></div><div data-silex-type="container-element" class="editable-style container-element sub-nav silex-id-1439554966357-51 hide-on-mobile" data-silex-id="silex-id-1439554966357-51">
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554966255-50 buttons" data-silex-id="silex-id-1439554966255-50">
<div class="silex-element-content normal">
<h2>Cow </h2>
<h3>Volunteer<br></h3>
</div>
</div>
</div><div data-silex-type="container-element" class="editable-style container-element silex-id-1439554966154-49 hide-on-mobile sub-nav sub-nav-active" data-silex-id="silex-id-1439554966154-49">
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554966050-48 buttons" data-silex-id="silex-id-1439554966050-48">
<div class="silex-element-content normal">
<h2>Lorem</h2><h3>Donations<br></h3></div>
</div>
</div><div data-silex-type="container-element" class="editable-style container-element sub-nav silex-id-1439554965843-46 hide-on-mobile" data-silex-id="silex-id-1439554965843-46">
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554965740-45 buttons" data-silex-id="silex-id-1439554965740-45">
<div class="silex-element-content normal">
<h2>Tip<br></h2><h3>Children<br></h3></div>
</div>
</div></div>
</div>
</section><section data-silex-type="container-element" class="container-element website-min-width editable-style silex-id-1490693931165-7 section-element prevent-resizable page-home paged-element" data-silex-id="silex-id-1490693931165-7">
<div data-silex-type="container-element" class="editable-style silex-element-content website-width silex-id-1490693931163-6 container-element" data-silex-id="silex-id-1490693931163-6">
<div data-silex-type="container-element" class="editable-style container-element white-bg silex-id-1439554965432-42" data-silex-id="silex-id-1439554965432-42" style="">
<div data-silex-type="container-element" class="editable-style container-element silex-id-1439554965331-41" data-silex-id="silex-id-1439554965331-41">
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554965129-39 white-title" data-silex-id="silex-id-1439554965129-39">
<div class="silex-element-content normal">
<h2>Lorem casaloca</h2>
</div>
</div>
<div data-silex-type="container-element" class="editable-style container-element silex-id-1439554965028-38" data-silex-id="silex-id-1439554965028-38">
</div>
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554965230-40 black-text" data-silex-id="silex-id-1439554965230-40">
<div class="silex-element-content normal">
<p>Cow prosciutto fatback ball tip bacon hamburger nostrud tail fugiat cupidatat frankfurter
</p>
</div>
</div>
</div>
<div data-silex-type="container-element" class="editable-style container-element silex-id-1439554964925-37" data-silex-id="silex-id-1439554964925-37">
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554964619-34 white-title" data-silex-id="silex-id-1439554964619-34">
<div class="silex-element-content normal">
<h2>Joe Lie</h2>
</div>
</div>
<div data-silex-type="container-element" class="editable-style container-element silex-id-1439554964822-36" data-silex-id="silex-id-1439554964822-36">
</div>
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554964720-35 black-text" data-silex-id="silex-id-1439554964720-35">
<div class="silex-element-content normal">
<p></p>
<p>Et ullamco officia nostrud, short ribs sunt commodo. Porchetta officia pork chop laborum, do cupim.
</p>
<p></p>
</div>
</div>
</div>
<div data-silex-type="container-element" class="editable-style container-element silex-id-1439554964518-33" data-silex-id="silex-id-1439554964518-33">
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554964214-30 white-title" data-silex-id="silex-id-1439554964214-30">
<div class="silex-element-content normal">
<h2>Pisica Wow</h2>
</div>
</div>
<div data-silex-type="container-element" class="editable-style container-element silex-id-1439554964416-32" data-silex-id="silex-id-1439554964416-32">
</div>
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554964315-31 black-text" data-silex-id="silex-id-1439554964315-31">
<div class="silex-element-content normal">
<p>Beef ribs reprehenderit non shankle shank capicola, ea labore picanha. Short loin ham nulla, dolore</p>
</div>
</div>
</div>
</div>
<a data-silex-type="text-element" class="editable-style text-element silex-id-1439554964011-28 content page-link-active" data-silex-id="silex-id-1439554964011-28" href="#!page-home">
<div class="silex-element-content normal">
<h2>Our Mission</h2>
</div>
</a>
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554963909-27 quote" data-silex-id="silex-id-1439554963909-27">
<div class="silex-element-content normal">
“
</div>
</div>
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554964112-29" data-silex-id="silex-id-1439554964112-29">
<div class="silex-element-content normal">
<p><i></i>
</p>
<p><i>Salami
do
in
est, chuck
reprehenderit
irure
porchetta
cillum. Nisi
short loin
ball tip
rump
shoulder, ribeye
turducken
tri-tip
pancetta
salami
nulla
porchetta
ground round
laboris
id. Hamburger
exercitation
frankfurter, eiusmod
nostrud
cow
ham
drumstick
strip steak
minim
picanha
quis. </i>
</p>
<p></p>
</div>
</div>
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554963809-26 quote" data-silex-id="silex-id-1439554963809-26">
<div class="silex-element-content normal">
”
</div>
</div><div data-silex-type="container-element" class="editable-style container-element silex-id-1439554963707-25" data-silex-id="silex-id-1439554963707-25">
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554963605-24 content" data-silex-id="silex-id-1439554963605-24">
<div class="silex-element-content normal">
<h3>June
<u> 13</u>
2014
</h3>
<p>Salami do in est.
</p>
<p>Nisi short loin ball tip rump shoulder, ribeye turducken tri-tip pancetta.
</p>
</div>
</div>
<a data-silex-type="text-element" class="editable-style text-element button-read-more silex-id-1439554963502-23 buttons" data-silex-id="silex-id-1439554963502-23" href="#!page-our-mission">
<div class="silex-element-content normal"><p>READ MORE</p>
</div>
</a>
</div><div data-silex-type="container-element" class="editable-style container-element silex-id-1439554963400-22" data-silex-id="silex-id-1439554963400-22">
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554963298-21 content" data-silex-id="silex-id-1439554963298-21">
<div class="silex-element-content normal">
<h3>June
<u> 13</u>
2014
</h3>
<p>Salami do in est.
</p>
<p>Nisi short loin ball tip rump shoulder, ribeye turducken tri-tip pancetta.
</p>
</div>
</div>
<a data-silex-type="text-element" class="editable-style text-element button-read-more silex-id-1439554963198-20 buttons" data-silex-id="silex-id-1439554963198-20" href="#!page-news-press">
<div class="silex-element-content normal"><p>READ MORE</p>
</div>
</a>
</div><div data-silex-type="container-element" class="editable-style container-element silex-id-1439554963096-19" data-silex-id="silex-id-1439554963096-19">
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554962995-18 content" data-silex-id="silex-id-1439554962995-18">
<div class="silex-element-content normal">
<h3>June
<u> 13</u>
2014
</h3>
<p>Salami do in est.
</p>
<p>Nisi short loin ball tip rump shoulder, ribeye turducken tri-tip pancetta.
</p>
</div>
</div>
<a data-silex-type="text-element" class="editable-style text-element button-read-more silex-id-1439554962893-17 buttons" data-silex-id="silex-id-1439554962893-17" href="#!page-how-to-help">
<div class="silex-element-content normal"><p>READ MORE</p>
</div>
</a>
</div></div>
</section><section data-silex-type="container-element" class="container-element website-min-width editable-style silex-id-1490694258064-17 section-element prevent-resizable page-contact paged-element" data-silex-id="silex-id-1490694258064-17">
<div data-silex-type="container-element" class="editable-style silex-element-content website-width silex-id-1490694258062-16 container-element" data-silex-id="silex-id-1490694258062-16">
<div data-silex-type="html-element" class="editable-style silex-id-1492776401689-1 html-element silex-component silex-component-form silex-use-height-not-minheight" data-silex-id="silex-id-1492776401689-1" style="">
<div class="silex-element-content"><form id="id_1698606564717_189" action="https://formspree.io/your@email.com" method="POST">
<div>
<input type="text" required="" id="field2" name="field2" placeholder="your@email.com">
</div>
<div class="fill-vertical">
<textarea required="" id="field3" name="field3" placeholder="Your Message"></textarea>
</div>
<input type="submit" value="Send">
</form>
<style>#id_1698606564717_189 input[type=text], select {width: 100%; padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 3px; box-sizing: border-box;}#id_1698606564717_189 input[type=submit] {width: 100%; background-color: #FF9900; color: #FFFFFF; padding: 14px 20px; margin: 8px 0; border: 1px solid #ff9900; border-radius: 3px; cursor: pointer;}#id_1698606564717_189 label {color: #000000;}#id_1698606564717_189 .fill-vertical {flex: 1 1 auto; display: flex; flex-direction: column;}#id_1698606564717_189 .fill-vertical textarea {flex: 1 1 auto; width: 100%; height: 150px; padding: 12px 20px; box-sizing: border-box; border: 2px solid #ccc; border-radius: 3px; background-color: #f8f8f8; font-size: 16px; resize: none;}#id_1698606564717_189 {border-radius: 3px; display: flex; flex-direction: column; justify-content: space-between; height: 100%;}</style>
</div>
</div><div data-silex-type="html-element" class="editable-style silex-id-1548873212201-7 html-element silex-component silex-component-map silex-use-height-not-minheight silex-element-content-full-height" data-silex-id="silex-id-1548873212201-7"><div class="silex-element-content"><div id="mapdiv_1698606564718_111" class="map"><div class="ol-viewport" style="position: relative; overflow: hidden; width: 100%; height: 100%; touch-action: none;" data-view="3"><canvas style="width: 100%; height: 100%; display: none;" class="ol-unselectable"></canvas><div class="ol-overlaycontainer"></div><div class="ol-overlaycontainer-stopevent"><div class="ol-zoom ol-unselectable ol-control"><button class="ol-zoom-in" type="button" title="Zoom in">+</button><button class="ol-zoom-out" type="button" title="Zoom out">−</button></div><div class="ol-rotate ol-unselectable ol-control ol-hidden"><button class="ol-rotate-reset" type="button" title="Reset rotation"><span class="ol-compass">⇧</span></button></div><div class="ol-attribution ol-unselectable ol-control ol-collapsed" style="display: none;"><ul><li style="display: none;"></li></ul><button type="button" title="Attributions"><span>i</span></button></div></div></div></div>
<style>#mapdiv_1698606564718_111 {width: 100%; height: 100%;}</style>
<script>
function init_1698606564718_111() {
if(typeof(ol) === 'undefined') {
// console.warn('Map not ready, restart later')
// wait for dependencies to be loaded
setTimeout(init_1698606564718_111, 1000);
return;
}
// empty the div before adding the map again
$('#mapdiv_1698606564718_111').empty();
// apply position and zoom
// from map URL http://www.openstreetmap.org/#map=18/48.88680/2.34235&layers=C
// var params = 'http://www.openstreetmap.org/#map=18/48.87378/2.29489&layers=C'.match(/.*map=([0-9]*)\/(.*)\/(.*)&layers=(.)/);
var params = 'http://www.openstreetmap.org/#map=18/48.87378/2.29489&layers=C'.match(/.*map=([0-9]*)\/(.*)\/(.*)/);
if(params) {
var zoom = parseFloat(params[1]);
var lat = parseFloat(params[2]);
var lon = parseFloat(params[3]);
// var layer = params[4] || 'S';
var center = ol.proj.fromLonLat([lon, lat]);
var map = new ol.Map({
layers: [
new ol.layer.Tile({
source: new ol.source.OSM()
})
],
target: 'mapdiv_1698606564718_111',
view: new ol.View({
center: center,
zoom: zoom
})
});
}
}
init_1698606564718_111();
// $(document).on('silex.resize', function() {
// $('#mapdiv_1698606564718_111').empty();
// init_1698606564718_111();
// });
</script>
</div></div></div>
</section><div data-silex-type="container-element" class="container-element website-min-width editable-style silex-id-1490701849669-19 section-element prevent-resizable page-our-mission paged-element" data-silex-id="silex-id-1490701849669-19">
<div data-silex-type="container-element" class="editable-style silex-element-content website-width silex-id-1490701849668-18 container-element" data-silex-id="silex-id-1490701849668-18"></div>
</div><section data-silex-type="container-element" class="container-element website-min-width editable-style silex-id-1490694152451-11 section-element prevent-resizable page-our-mission paged-element" data-silex-id="silex-id-1490694152451-11">
<div data-silex-type="container-element" class="editable-style silex-element-content website-width silex-id-1490694152449-10 container-element" data-silex-id="silex-id-1490694152449-10">
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554961635-5" data-silex-id="silex-id-1439554961635-5">
<div class="silex-element-content normal">
<h1 class="heading1">Our Mission</h1>
<p class="normal">Salami do in est, chuck reprehenderit irure porchetta cillum. Nisi short loin ball tip rump shoulder, ribeye turducken tri-tip pancetta salami nulla porchetta ground round laboris id. Hamburger exercitation frankfurter, eiusmod nostrud
cow ham drumstick strip steak minim picanha quis. Beef ex turkey eu nostrud meatball laboris.
</p>
</div>
</div>
</div>
</section><div data-silex-type="container-element" class="container-element website-min-width editable-style silex-id-1490701905049-21 section-element prevent-resizable page-news-press paged-element" data-silex-id="silex-id-1490701905049-21">
<div data-silex-type="container-element" class="editable-style silex-element-content website-width silex-id-1490701905043-20 container-element" data-silex-id="silex-id-1490701905043-20"></div>
</div><section data-silex-type="container-element" class="container-element website-min-width editable-style silex-id-1490694217944-13 section-element prevent-resizable page-news-press paged-element" data-silex-id="silex-id-1490694217944-13">
<div data-silex-type="container-element" class="editable-style silex-element-content website-width silex-id-1490694217944-12 container-element" data-silex-id="silex-id-1490694217944-12">
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554961432-3" data-silex-id="silex-id-1439554961432-3">
<div class="silex-element-content normal">
<h1 class="heading1">News and Press</h1>
<p class="normal">Salami do in est, chuck reprehenderit irure porchetta cillum. Nisi short loin ball tip rump shoulder, ribeye turducken tri-tip pancetta salami nulla porchetta ground round laboris id. Hamburger exercitation frankfurter, eiusmod nostrud
cow ham drumstick strip steak minim picanha quis. Beef ex turkey eu nostrud meatball laboris.
</p>
</div>
</div>
</div>
</section><div data-silex-type="container-element" class="container-element website-min-width editable-style silex-id-1490701944668-23 section-element prevent-resizable page-how-to-help paged-element" data-silex-id="silex-id-1490701944668-23">
<div data-silex-type="container-element" class="editable-style silex-element-content website-width silex-id-1490701944667-22 container-element" data-silex-id="silex-id-1490701944667-22"></div>
</div><section data-silex-type="container-element" class="container-element website-min-width editable-style silex-id-1490694237194-15 section-element prevent-resizable page-how-to-help paged-element" data-silex-id="silex-id-1490694237194-15">
<div data-silex-type="container-element" class="editable-style silex-element-content website-width silex-id-1490694237193-14 container-element" data-silex-id="silex-id-1490694237193-14">
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554961331-2" data-silex-id="silex-id-1439554961331-2">
<div class="silex-element-content normal">
<h1 class="heading1">How to Help</h1>
<p class="normal">Salami do in est, chuck reprehenderit irure porchetta cillum. Nisi short loin ball tip rump shoulder, ribeye turducken tri-tip pancetta salami nulla porchetta ground round laboris id. Hamburger exercitation frankfurter, eiusmod nostrud
cow ham drumstick strip steak minim picanha quis. Beef ex turkey eu nostrud meatball laboris.
</p>
</div>
</div>
</div>
</section><footer data-silex-type="container-element" class="container-element website-min-width editable-style silex-id-1490694042605-9 section-element prevent-resizable" data-silex-id="silex-id-1490694042605-9">
<div data-silex-type="container-element" class="editable-style silex-element-content website-width silex-id-1490694042604-8 container-element" data-silex-id="silex-id-1490694042604-8">
<a data-silex-type="text-element" class="editable-style text-element logo silex-id-1439554962691-15 page-link-active" data-silex-id="silex-id-1439554962691-15" href="#!page-home" style="">
<div class="silex-element-content normal">
<h2>
Ipsoom Center
</h2></div>
</a>
<div data-silex-type="image-element" class="editable-style image-element silex-id-1439554962386-12" data-silex-id="silex-id-1439554962386-12"><img src="../../../../../libs/templates/silex-templates/ipsoom/assets/form_icon_phone.png" class="" alt="phone image">
</div>
<a data-silex-type="text-element" class="editable-style text-element silex-id-1439554962283-11 phone-number" data-silex-id="silex-id-1439554962283-11" href="tel:+1800990722" style="">
<div class="silex-element-content normal">
<p>+1 800
<b> 990722
</b><br></p></div>
</a>
<a data-silex-type="text-element" class="editable-style text-element silex-id-1439554962181-10 nav hide-on-mobile nav-mark" data-silex-id="silex-id-1439554962181-10" href="#!page-contact">
<div class="silex-element-content normal"><p>Contact</p>
</div>
</a>
<a data-silex-type="text-element" class="editable-style text-element silex-id-1439554962078-9 nav hide-on-mobile nav-mark" data-silex-id="silex-id-1439554962078-9" href="#!page-how-to-help">
<div class="silex-element-content normal"><p>How to help</p>
</div>
</a>
<a data-silex-type="text-element" class="editable-style text-element silex-id-1439554961964-8 nav hide-on-mobile nav-mark" data-silex-id="silex-id-1439554961964-8" href="#!page-news-press">
<div class="silex-element-content normal"><p>News & Press</p>
</div>
</a>
<a data-silex-type="text-element" class="editable-style text-element silex-id-1439554961840-7 nav hide-on-mobile nav-mark" data-silex-id="silex-id-1439554961840-7" href="#!page-our-mission">
<div class="silex-element-content normal"><p>Our mission</p>
</div>
</a>
<a data-silex-type="text-element" class="editable-style text-element silex-id-1439554961739-6 nav hide-on-mobile nav-mark page-link-active" data-silex-id="silex-id-1439554961739-6" href="#!page-home">
<div class="silex-element-content normal"><p>Home</p>
</div>
</a>
<div data-silex-type="text-element" class="editable-style text-element silex-id-1439554962792-16 footer" data-silex-id="silex-id-1439554962792-16">
<div class="silex-element-content normal"><p>Creative commons template - <a href="//www.silex.me">powered by Silex</a>
<a href="//www.colorcombos.com/color-schemes/253/ColorCombo253.html">Color palete</a> - <a href="//blog.templatemonster.com/2011/07/18/free-website-template-charity-jquery-slider-typography/">inspiration</a>
- <a href="https://unsplash.com/">pictures</a></p>
</div>
</div>
<div data-silex-type="html-element" class="editable-style silex-id-1538217695429-29 html-element silex-component silex-component-share page-home paged-element" data-silex-id="silex-id-1538217695429-29"><div class="silex-element-content">
<ul class="share-buttons" id="id_1698606564719_368">
<li><a href="https://www.facebook.com/sharer/sharer.php?u=https://www.silex.me&t=Silex%20website%20builder" title="Share on Facebook" target="_blank"><img alt="Share on Facebook" data-silex-static="" src="/static/2.7/simplesharingbuttons/flat_web_icon_set/inverted/Facebook.png"></a></li>
<li><a href="https://twitter.com/intent/tweet?source=https://www.silex.me&text=Silex%20website%20builder:%20https://www.silex.me&via=silexlabs" target="_blank" title="Share on Twitter"><img alt="Twitt" data-silex-static="" src="/static/2.7/simplesharingbuttons/flat_web_icon_set/inverted/Twitter.png"></a></li>
<li><a href="http://www.linkedin.com/shareArticle?mini=true&url=https://www.silex.me&title=Silex%20website%20builder&summary=This%20site%20was%20made%20with%20Silex%20website%20builder&source=https://www.silex.me" target="_blank" title="Share on LinkedIn"><img alt="Share on LinkedIn" data-silex-static="" src="/static/2.7/simplesharingbuttons/flat_web_icon_set/inverted/LinkedIn.png"></a></li>
<li><a href="mailto:?subject=Silex%20website%20builder&body=This%20site%20was%20made%20with%20Silex%20website%20builder:%20https://www.silex.me" target="_blank" title="Send email"><img alt="Send by email" data-silex-static="" src="/static/2.7/simplesharingbuttons/flat_web_icon_set/inverted/Email.png"></a></li>
</ul>
<style>#id_1698606564719_368.share-buttons {list-style: none; padding: 0;}#id_1698606564719_368.share-buttons li {display: inline;}#id_1698606564719_368.share-buttons .sr-only {position: absolute; clip: rect(1px, 1px, 1px, 1px); padding: 0; border: 0; height: 1px; width: 1px; overflow: hidden;}</style>
</div></div></div>
</footer></body></html>