-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.mobirise
4479 lines (4479 loc) · 307 KB
/
project.mobirise
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
{
"settings": {
"name": "Cozummobil",
"currentPage": "index.html",
"theme": {
"name": "mobirise4",
"title": "Mobirise 4",
"styling": {
"primaryColor": "#149dcc",
"secondaryColor": "#ff3366",
"successColor": "#F7ED4A",
"infoColor": "#82786E",
"warningColor": "#879A9F",
"dangerColor": "#B1A374",
"mainFont": "Rubik",
"display1Font": "Slabo 27px",
"display1Size": 4.25,
"display2Font": "Rubik",
"display2Size": 3,
"display5Font": "Rubik",
"display5Size": 1.5,
"display7Font": "Rubik",
"display7Size": 1,
"display4Font": "Rubik",
"display4Size": 1,
"isRoundedButtons": true,
"isAnimatedOnScroll": false,
"isScrollToTopButton": false
},
"additionalSetColors": [
"#000000"
]
},
"path": "@PROJECT_PATH@",
"favicon": "",
"noImageResize": "",
"google-analytics": "",
"siteUrl": "undefined",
"versionFirst": "4.6.5",
"uniqCompNum": 65,
"versionPublish": "4.6.6",
"screenshot": "screenshot.png",
"publishType": "local",
"publishPath": "file:///C:/Users/MASTER/Documents/GitHub/cozummobil"
},
"pages": {
"index.html": {
"settings": {
"main": true,
"title": "Çözümmobil | OSGB ve Mobil Sağlık Tarama Hizmetleri | Cozummobil.com.tr",
"meta_descr": "Çözümmobil mobil sağlıkta güvenilir çözüm. İstanbul’da gezici sağlık tarama aracı ile hizmet vermektedir. Her çeşit sağlık hizmetleri vermek üzere özel hastaneler poliklinikler dispanserler laboratuarlar sağlık merkezleri ve tesisleri sağlık kabinleri doğumevleri diş ve protez tedavi merkezleri kurmak ve işletmek ve ana sözleşmesinde yazılı olan diğer işlerdir",
"header_custom": "<meta name=\"keywords\" content=\"OSGB, ortak sağlıkve güvenlik birimi,mobil sağlık, gezici sağlık tarama, istanbul, gezici sağlık hizmeti, akciğer grafisi, odiometri, solunum fonksiyon testi, göz taraması, laboratuvar tetkikleri, spirometri, portör taraması, 6331 sayılı İş Sağlığı ve Güvenliği Kanunu, mobil sağlık tarama aracı, mobil görüntüleme hizmetleri, gezici laboratuvar hizmetleri, çözümmobil\">\n",
"footer_custom": "",
"html_before": ""
},
"components": [
{
"_styles": {
".modal-body .close": {
"background": "#1b1b1b"
},
".modal-body .close span": {
"font-style": "normal"
},
".carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev": {
"display": "table"
},
".carousel-control .icon-next, .carousel-control .icon-prev": {
"margin-top": "-18px",
"font-size": "40px",
"line-height": "27px"
},
".carousel-control:hover": {
"background": "#1b1b1b",
"color": "#fff",
"opacity": "1"
},
"@media (max-width: 767px)": {
".container .carousel-control": {
"margin-bottom": "0"
}
},
".boxed-slider": {
"position": "relative",
"padding": "93px 0"
},
".boxed-slider > div": {
"position": "relative"
},
".container img": {
"width": "100%"
},
".container img + .row": {
"position": "absolute",
"top": "50%",
"left": "0",
"right": "0",
"-webkit-transform": "translateY(-50%)",
"-moz-transform": "translateY(-50%)",
"transform": "translateY(-50%)",
"z-index": "2"
},
".mbr-section": {
"padding": "0",
"background-attachment": "scroll"
},
".mbr-table-cell": {
"padding": "0"
},
".container .carousel-indicators": {
"margin-bottom": "3px"
},
".carousel-caption": {
"top": "50%",
"right": "0",
"bottom": "auto",
"left": "0",
"display": "flex",
"align-items": "center",
"-webkit-transform": "translateY(-50%)",
"transform": "translateY(-50%)"
},
".mbr-overlay": {
"z-index": "1"
},
".container-slide.container": {
"min-width": "100%",
"min-height": "100vh",
"padding": "0"
},
".carousel-item": {
"background-position": "50% 50%",
"background-repeat": "no-repeat",
"background-size": "cover",
"-o-transition": "-o-transform 0.6s ease-in-out",
"-webkit-transition": "-webkit-transform 0.6s ease-in-out",
"transition": "transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out",
"-webkit-backface-visibility": "hidden",
"backface-visibility": "hidden",
"-webkit-perspective": "1000px",
"perspective": "1000px",
".container": {
"@media (max-width: 576px)": {
"width": "100%"
}
}
},
".carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right": {
"-webkit-transform": "translate3d(0, 0, 0)",
"transform": "translate3d(0, 0, 0)"
},
".active.carousel-item-right, .carousel-item-next": {
"-webkit-transform": "translate3d(100%, 0, 0)",
"transform": "translate3d(100%, 0, 0)"
},
".active.carousel-item-left, .carousel-item-prev": {
"-webkit-transform": "translate3d(-100%, 0, 0)",
"transform": "translate3d(-100%, 0, 0)"
},
".mbr-slider": {
".carousel-control": {
"top": "50%",
"width": "70px",
"height": "70px",
"margin-top": "-1.5rem",
"font-size": "35px",
"background-color": "rgba(0, 0, 0, 0.5)",
"border": "2px solid #fff",
"border-radius": "50%",
"transition": "all .3s",
"&.carousel-control-prev": {
"left": "0",
"margin-left": "2.5rem"
},
"&.carousel-control-next": {
"right": "0",
"margin-right": "2.5rem"
},
".mbr-iconfont": {
"font-size": "2rem"
},
"@media (max-width: 767px)": {
"top": "auto",
"bottom": "1rem"
}
},
".carousel-indicators": {
"position": "absolute",
"bottom": "0",
"margin-bottom": "1.5rem !important",
"li": {
"max-width": "20px",
"width": "20px",
"height": "20px",
"max-height": "20px",
"margin": "3px",
"background-color": "rgba(0, 0, 0, 0.5)",
"border": "2px solid #fff",
"border-radius": "50%",
"opacity": ".5",
"transition": "all .3s",
"&.active, &:hover": {
"opacity": ".9"
},
"&::after, &::before": {
"content": "none"
}
},
"&.ie-fix": {
"left": "50%",
"display": "block",
"width": "60%",
"margin-left": "-30%",
"text-align": "center"
},
"@media (max-width: 576px)": {
"display": "none !important"
}
},
"> .container": {
"img": {
"width": "100%",
"+ .row": {
"position": "absolute",
"top": "50%",
"right": "0",
"left": "0",
"z-index": "2",
"-moz-transform": "translateY(-50%)",
"-webkit-transform": "translateY(-50%)",
"transform": "translateY(-50%)"
}
},
".carousel-indicators": {
"margin-bottom": "3px"
},
"@media (max-width: 576px)": {
".carousel-control": {
"margin-bottom": "0"
}
}
},
".mbr-section": {
"padding": "0",
"background-attachment": "scroll"
},
".mbr-table-cell": {
"padding": "0"
}
},
".carousel-item .container.container-slide": {
"position": "initial",
"width": "auto",
"min-height": "0"
},
".full-screen": {
".slider-fullscreen-image": {
"min-height": "100vh",
"background-repeat": "no-repeat",
"background-position": "50% 50%",
"background-size": "cover",
"&.active": {
"display": "-o-flex"
}
},
"& .container": {
"width": "auto",
"padding-right": "0",
"padding-left": "0"
},
".carousel-item .container.container-slide": {
"width": "100%",
"min-height": "100vh",
"padding": "0",
"& img": {
"display": "none"
}
}
},
".mbr-background-video-preview": {
"position": "absolute",
"top": "0",
"right": "0",
"bottom": "0",
"left": "0"
},
".mbr-overlay ~ .container-slide": {
"z-index": "auto"
}
},
"_name": "slider1",
"_customHTML": "<section class=\"carousel slide\" group=\"Sliders & Gallery\" plugins=\"YTPlayer,VimeoPlayer,SliderVideo,BootstrapCarouselSwipe\" data-interval=\"false\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"carousel\" title=\"Slides\" name=\"slides\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div mbr-carousel=\"slides\" class=\"full-screen\" mbr-carousel-embedded></div>\n\n</section>",
"_cid": "qN1xCFeL7u",
"_anchor": "slider1-1p",
"_protectedParams": [
"slides__autoplay",
"slides__autoplayInterval",
"slides__showBullets",
"slides"
],
"_global": false,
"_once": false,
"_params": {
"slides__autoplay": true,
"slides__autoplayInterval": 4000,
"slides__showBullets": true,
"slides": [
{
"image": "@PROJECT_PATH@assets/images/slidersydney%20(3)-1920x1275.jpg",
"active": true,
"showButtons": true,
"showText": true,
"showTitle": true,
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"customStyle1": "display-1",
"customStyle2": "display-5",
"customStyle3": "display-4",
"title": "MOBİL SAĞLIK BELGELERİMİZ",
"overlay": true,
"contentAlign": "center",
"text": "İSG Dijital Röntgen Araç İzin Belgesi ",
"buttons": "<a data-app-btn=\"true\" class=\"btn display-4 btn-primary\" href=\"hizmetlerimiz.html\" data-toolbar=\"-mbrBtnMove\">HİZMETLERİMİZ İÇİN TIKLAYINIZ</a> ",
"overlayColor": "#000000"
},
{
"image": "@PROJECT_PATH@assets/images/slidersydney%20(4)-1920x1275.jpg",
"active": false,
"showButtons": true,
"showText": true,
"showTitle": true,
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"customStyle1": "display-1",
"customStyle2": "display-5",
"customStyle3": "display-4",
"title": "GÖZ TARAMASI",
"overlay": true,
"contentAlign": "center",
"text": "Göz doktoru tarafından değerlendirilip raporlandırılmaktadır ",
"buttons": "<a data-app-btn=\"true\" class=\"btn display-4 btn-primary\" href=\"hizmetlerimiz.html\" data-toolbar=\"-mbrBtnMove\">HİZMETLERİMİZ İÇİN TIKLAYINIZ</a> "
},
{
"image": "@PROJECT_PATH@/assets/images/hizmet-1-1280x853.jpg",
"active": false,
"showButtons": true,
"showText": true,
"showTitle": true,
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"customStyle1": "display-1",
"customStyle2": "display-5",
"customStyle3": "display-4",
"title": "LABORATUVAR TETKİKLERİ",
"overlay": true,
"contentAlign": "center",
"text": "Alınan numuneler uzman doktorlarımız tarafından değerlendirilip raporlandırılmaktadır\n<br>",
"buttons": "<a data-app-btn=\"true\" class=\"btn display-4 btn-primary\" href=\"hizmetlerimiz.html\" data-toolbar=\"-mbrBtnMove\">HİZMETLERİMİZ İÇİN TIKLAYINIZ</a> "
},
{
"image": "@PROJECT_PATH@assets/images/slidersydney%20(1)-1920x1275.jpg",
"active": false,
"showButtons": true,
"showText": true,
"showTitle": true,
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"customStyle1": "display-1",
"customStyle2": "display-5",
"customStyle3": "display-4",
"title": "SOLUNUM FONKSİYON TESTİ",
"overlay": true,
"contentAlign": "center",
"text": "Göğüs hastalıkları uzmanı tarafından değerlendirilip raporlandırılmaktadır.<br>",
"buttons": "<a data-app-btn=\"true\" class=\"btn display-4 btn-primary\" href=\"hizmetlerimiz.html\" data-toolbar=\"-mbrBtnMove\">HİZMETLERİMİZ İÇİN TIKLAYINIZ</a> "
},
{
"image": "@PROJECT_PATH@assets/images/slidersydney%20(2)-1920x1275.jpg",
"active": false,
"showButtons": true,
"showText": true,
"showTitle": true,
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"customStyle1": "display-1",
"customStyle2": "display-5",
"customStyle3": "display-4",
"title": "ODİOMETRİ",
"overlay": true,
"contentAlign": "center",
"text": "KBB Uzmanımız tarafından değerlendirilmektedir. <br>",
"buttons": "<a data-app-btn=\"true\" class=\"btn display-4 btn-primary\" href=\"hizmetlerimiz.html\" data-toolbar=\"-mbrBtnMove\">HİZMETLERİMİZ İÇİN TIKLAYINIZ</a> "
}
]
},
"_PHPplaceholders": [],
"_JSplaceholders": []
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".mbr-text": {
"color": "#767676"
},
"h4": {
"text-align": "center"
},
"p": {
"text-align": "center"
},
".card-img span": {
"font-size": "96px",
"color": "#149dcc"
}
},
"_name": "features1",
"_customHTML": "<section class=\"features1\" group=\"Features\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"9\" step=\"1\" value=\"6\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"6\"> \n \n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <select title=\"Cards\" name=\"cardsAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\" selected>3</option>\n <option value=\"4\">4</option>\n </select>\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/img/03.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#f9f9f9\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" checked condition=\"bg.type !== 'color'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#efefef\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.9\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n <div class=\"container\">\n <div class=\"media-container-row\">\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-img pb-3\">\n <span mbr-icon class=\"mbr-iconfont fa-ravelry fa\"></span>\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title py-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">\n MİSYONUMUZ</h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Misyonumuz; Çalışma ve Sosyal Güvenlik Bakanlığının 6331 sayılı İş Sağlığı ve Güvenliği Yasasını işyerlerinde kusursuz uygulayarak iş kazası ve meslek hastalığı olasılıklarını en düşük seviyede tutmak, iş sağlığı ve güvenliği hizmetlerini uluslararası standartlarda gerçekleştirmektir.\n </p>\n </div>\n </div>\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 1\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-img pb-3\">\n <span mbr-icon class=\"mbr-iconfont icon54-v1-mini-bus\"></span>\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title py-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">\n VİZYONUMUZ</h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n İş Sağlığı ve Güvenliği Hizmetleri konularında, kaliteden taviz vermeden toplam kalite yönetimi ilkelerini esas alarak, sürekli gelişmek, sınırsız müşteri memnuniyeti sağlamak, başta müşterilerimiz olmak üzere, iş yaptığımız kişi ve kuruluşlarla, dürüst ve saygılı ilişkiler kurmak, onlarla başarı ve gücümüzü paylaşmak, sektörümüzde öncü olmaktır.\n </p>\n </div>\n </div>\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 2\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-img pb-3\">\n <span mbr-icon class=\"mbr-iconfont icon54-v1-worker\"></span>\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title py-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">\n FARKIMIZ</h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Çözümmobil olarak standart uygulamaları yasa ve yönetmeliklere uygun, mevzuata göre yaptığımızı itiraf ediyoruz. Bizim diğerlerinden farkımız standart uygulamaların üstüne ilave ettiklerimiz. Detay farklılıkların her biri için size sunum yapıyor, uyguluyor ve başarıyı hep beraber paylaşıyoruz.\n </p>\n </div>\n </div>\n\n <div class=\"card p-3 col-12 col-md-6\" mbr-if=\"cardsAmount > 3\" mbr-class=\"{'col-lg-3': cardsAmount == '4',\n 'col-lg-4': cardsAmount == '3'}\">\n <div class=\"card-img pb-3\">\n <span mbr-icon class=\"mbri-desktop mbr-iconfont\"></span>\n </div>\n <div class=\"card-box\">\n <h4 class=\"card-title py-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showTitle\" data-app-selector=\".card-title, .card-img\">\n Unlimited Sites\n </h4>\n <p class=\"mbr-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-text\">\n Mobirise gives you the freedom to develop as many websites as you like given the fact that it is a desktop app.\n </p>\n </div>\n </div>\n\n </div>\n\n </div>\n\n</section>",
"_cid": "qMQiX9Mugq",
"_anchor": "features1-5",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
}
},
"_name": "content5",
"_customHTML": "<section class=\"mbr-section content5\" group=\"Article\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"3\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\">\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\">\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/mbr-2-1620x1080.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#0f7699\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#232323\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.4\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"title col-12 col-md-8\">\n <h2 mbr-if=\"showTitle\" class=\"align-center mbr-bold mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-1\"><span style=\"font-weight: normal;\">MOBİL SAĞLIK ARAÇLARIMIZ</span></h2>\n <h3 mbr-if=\"showSubtitle\" class=\"mbr-section-subtitle align-center mbr-light mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-section-subtitle\">\n Article header with background image and parallax effect\n </h3>\n <p class=\"mbr-text align-center mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" mbr-if=\"showText\" mbr-article data-multiline>\n Shape your future web project with sharp design and refine coded functions\n </p>\n <div class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\">\n <a class=\"btn btn-primary\" href=\"https://mobirise.com\">LEARN MORE</a>\n <a class=\"btn btn-white-outline\" href=\"https://mobirise.com\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "content5-8",
"_isUserblock": true,
"_cid": "qMQlyyjaFd",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"& when (@fullWidth = false)": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)"
},
"background": "@bgColor",
"& when (@gradientBg)": {
"background": "linear-gradient(45deg, @bgColor, @color2)"
},
".image-block": {
"margin": "auto",
"& when (@fullWidth)": {
"width": "100% !important"
}
},
"figcaption": {
"position": "relative",
"div": {
"position": "absolute",
"bottom": "0",
"width": "100%"
}
},
"@media (max-width: 768px)": {
".image-block": {
"width": "100% !important"
}
}
},
"_name": "image1",
"_customHTML": "<section group=\"Images & Videos\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\" checked>\n\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" value=\"4\" step=\"1\" condition=\"fullWidth==false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" value=\"4\" step=\"1\" condition=\"fullWidth==false\">\n\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\"> \n \n <input type=\"range\" inline title=\"Width\" name=\"imageSize\" min=\"20\" max=\"100\" value=\"66\" step=\"1\" condition=\"fullWidth==false\">\n\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\" condition=\"fullWidth==false\">\n <input type=\"checkbox\" title=\"Gradient\" name=\"gradientBg\" condition=\"fullWidth==false\">\n <input type=\"color\" title=\"Color 2\" name=\"color2\" value=\"#149dcc\" condition=\"gradientBg\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <figure class=\"mbr-figure\" mbr-class=\"{'container':fullWidth==false}\">\n <div class=\"image-block\" mbr-style=\"{'width':imageSize+'%'}\">\n <img src=\"@PROJECT_PATH@/assets/images/cozumarabalar2-1466x458.jpg\" width=\"1400\" alt=\"Mobirise\" title>\n <figcaption class=\"mbr-figure-caption mbr-figure-caption-over\" mbr-if=\"showText\">\n <div mbr-text class=\"container pb-5 mbr-white align-center mbr-fonts-style\" mbr-theme-style=\"display-1\">\n Create awesome websites!\n </div>\n </figcaption>\n </div>\n </figure>\n</section>",
"_cid": "qMQlnV6L8Y",
"_anchor": "image1-7",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"& when not (@fullScreen)": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)"
},
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
}
},
"_name": "header1",
"_customHTML": "<section class=\"header1\" group=\"Headers\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-fullscreen': fullScreen,\n 'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Full Screen\" name=\"fullScreen\">\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"9\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"6\" condition=\"fullScreen == false\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\">\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubTitle\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\" checked>\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background5.jpg\" selected parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#886586\">\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#000000\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.2\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div class=\"container\">\n <div class=\"row justify-content-md-center\">\n <div class=\"mbr-white col-md-10\">\n <h1 class=\"mbr-section-title align-center mbr-bold pb-3 mbr-fonts-style\" mbr-theme-style=\"display-1\" mbr-if=\"showTitle\">\n BİZİMLE ÇALIŞMAK İSTER MİSİNİZ?</h1>\n <h3 class=\"mbr-section-subtitle align-center mbr-light pb-3 mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showSubTitle\">Bizimle çalışmak ister misiniz?</h3>\n <p class=\"mbr-text align-center pb-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showText\">\n İş başvurunuzu birkaç dakika içinde tamamlayabilirsiniz.</p>\n <div class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" data-toolbar=\"-mbrBtnMove\" mbr-buttons mbr-theme-style=\"display-4\"><a class=\"btn btn-md btn-primary\" href=\"https://mobirise.com\"><span class=\"icon54-v1-elvis mbr-iconfont mbr-iconfont-btn\"></span>\n BAŞVURU İÇİN TIKLAYINIZ</a></div>\n </div>\n </div>\n </div>\n\n</section>",
"_cid": "qMQlLSUI2B",
"_anchor": "header1-a",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".mbr-section-subtitle": {
"color": "#767676",
"font-weight": "300"
},
".mbr-content-text": {
"color": "#767676"
},
".card": {
"word-wrap": "break-word",
"flex-shrink": "0",
"-webkit-flex-shrink": "0"
},
".mbr-iconfont": {
"font-size": "80px",
"color": "#149dcc"
},
".cards-container": {
"display": "flex",
"flex-direction": "row",
"-webkit-flex-direction": "row",
"flex-wrap": "wrap",
"-webkit-flex-wrap": "wrap",
"justify-content": "center",
"-webkit-justify-content": "center",
"word-break": "break-word"
},
".media-block": {
"flex-shrink": "0",
"-webkit-flex-shrink": "0",
"padding-left": "2rem"
},
".cards-block": {
"flex-basis": "100%",
"-webkit-flex-basis": "100%"
},
".card-img": {
"display": "-webkit-flex",
"align-items": "center",
"-webkit-align-items": "center",
"flex-wrap": "wrap",
"-webkit-flex-wrap": "wrap"
},
"@media (max-width: 991px)": {
".media-block": {
"flex-basis": "100%",
"-webkit-flex-basis": "100%",
"padding-left": "0",
"padding-bottom": "2rem"
}
}
},
"_name": "counters2",
"_customHTML": "<section class=\"counters2 counters\" group=\"Counters\" plugins=\"ViewportChecker\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"6\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"6\">\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\" checked>\n <input type=\"checkbox\" title=\"Show Icons\" name=\"showIcons\" checked>\n <input type=\"checkbox\" title=\"Show Block Title\" name=\"showTitles\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show Icons\" name=\"showIcons\" checked>\n <input type=\"checkbox\" title=\"Show Media\" name=\"showMedia\" checked>\n <input type=\"range\" title=\"Media Size\" inline name=\"mediaSize\" min=\"20\" max=\"60\" value=\"50\" condition=\"showMedia\">\n <select title=\"Cards Count\" name=\"cardsAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\">2</option>\n <option value=\"3\">3</option>\n <option value=\"4\" selected>4</option>\n </select>\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background1.jpg\">\n <input type=\"color\" title=\"Background Color\" value=\"#ffffff\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#cccccc\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.5\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div class=\"container pt-4 mt-2\">\n <div mbr-class=\"{'media-container-row': showTitle || showSubtitle || showMedia,\n 'row justify-content-center': !showTitle && !showSubtitle && !showMedia}\">\n <div class=\"media-block\" mbr-style=\"{'width': mediaSize + '%'}\">\n <h2 class=\"mbr-section-title pb-3 align-left mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\" data-app-selector=\".mbr-section-title\">\n Çözümmobil</h2>\n <h3 class=\"mbr-section-subtitle pb-5 align-left mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-section-subtitle\">\n Mobil Sağlık Tarama</h3>\n <div class=\"mbr-figure\" mbr-if=\"showMedia\">\n <img src=\"@PROJECT_PATH@/assets/images/kaza-800x800.jpg\" alt title>\n </div>\n </div>\n <div class=\"cards-block\">\n <div class=\"cards-container\">\n <div class=\"card px-3 align-left col-12 col-md-6\">\n <div class=\"panel-item p-3\">\n <div class=\"card-img pb-3\">\n <span mbr-icon mbr-if=\"showIcons\" class=\"mbr-iconfont pr-2 fa-universal-access fa\"></span>\n <h3 class=\"count py-3 mbr-fonts-style\" mbr-theme-style=\"display-2\" data-app-selector=\".count\">8132</h3>\n </div>\n <div class=\"card-text\">\n <h4 class=\"mbr-content-title mbr-bold mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitles\">\n İş Kazaları</h4>\n <p class=\"mbr-content-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-content-text\">\n 24 Yaşındaki çalışanların maruz kaldığı iş kazası sayısı\n </p>\n </div>\n </div>\n </div>\n <div class=\"card px-3 align-left col-12 col-md-6\" mbr-if=\"cardsAmount>1\">\n <div class=\"panel-item p-3\">\n <div class=\"card-img pb-3\">\n <span mbr-icon mbr-if=\"showIcons\" class=\"mbr-iconfont pr-2 mbri-sad-face\"></span>\n <h3 class=\"count py-3 mbr-fonts-style\" mbr-theme-style=\"display-2\" data-app-selector=\".count\">\n 400</h3>\n </div>\n \n \n \n \n <div class=\"card-texts\">\n <h4 class=\"mbr-content-title mbr-bold mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitles\">\n İşgörmezlik Alan Personel Sayısı</h4>\n <p class=\"mbr-content-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-content-text\">\n %50 ile %100 arası işgörmezlik alan personel sayısı\n </p>\n </div>\n \n \n </div>\n </div>\n <div class=\"card px-3 align-left col-12 col-md-6\" mbr-if=\"cardsAmount>2\">\n <div class=\"panel-item p-3\">\n <div class=\"card-img pb-3\">\n <span mbr-icon mbr-if=\"showIcons\" class=\"mbr-iconfont pr-2 fa-calendar fa\"></span>\n <h3 class=\"count py-3 mbr-fonts-style\" mbr-theme-style=\"display-2\" data-app-selector=\".count\">\n 268475</h3>\n </div>\n <div class=\"card-text\">\n <h4 class=\"mbr-content-title mbr-bold mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitles\">\n Ağustos Ayı Kaybedilen Gün</h4>\n <p class=\"mbr-content-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-content-text\">\n Ağustos Ayı kaza sonucu kaybedilen gün sayısı \n </p>\n </div>\n </div>\n </div>\n <div class=\"card px-3 align-left col-12 col-md-6\" mbr-if=\"cardsAmount>3\">\n <div class=\"panel-item p-3\">\n <div class=\"card-img pb-3\">\n <span mbr-icon mbr-if=\"showIcons\" class=\"mbr-iconfont pr-2 icon54-v1-wheel-chair\"></span>\n <h3 class=\"count py-3 mbr-fonts-style\" mbr-theme-style=\"display-2\" data-app-selector=\".count\">565469\n </h3>\n </div>\n \n \n \n \n \n \n <div class=\"card-text\">\n <h4 class=\"mbr-content-title mbr-bold mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTitles\">\n Toplam Süre(Gün)</h4>\n <p class=\"mbr-content-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\" data-app-selector=\".mbr-content-text\">\n İstanbul'da Geçici İş Görmezlik toplam süresi\n </p>\n </div>\n \n \n \n \n \n </div>\n </div>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_cid": "qMQmJKFOjl",
"_anchor": "counters2-d",
"_PHPplaceholders": [],
"_JSplaceholders": [],
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
".carousel-item": {
"justify-content": "center"
},
".carousel-item.active, .carousel-item-next, .carousel-item-prev": {
"display": "flex"
},
".carousel-controls": {
"a": {
"transition": "opacity .5s",
"font-size": "2rem",
"span": {
"position": "absolute",
"top": "180px",
"padding": "10px",
"border-radius": "50%",
"color": "#585858",
"background": "#c8c6c6",
"opacity": ".5"
},
"&:hover": {
"span": {
"opacity": "1"
}
}
}
},
".user_image": {
"width": "200px",
"height": "200px",
"margin-bottom": "1.6rem",
"overflow": "hidden",
"border-radius": "50%",
"margin": "0 auto 2rem auto",
"img": {
"width": "100%",
"min-width": "100%",
"min-height": "100%"
}
},
"@media (max-width: 230px)": {
".user_image": {
"width": "100%",
"height": "auto"
}
}
},
"_name": "testimonials-slider1",
"_customHTML": "<section class=\"carousel slide testimonials-slider\" group=\"Testimonials\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\" plugins=\"BootstrapCarouselSwipe,mbr-testimonials-slider\">\n \n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" title=\"Padding Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"4\" inline>\n <input type=\"range\" title=\"Padding Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"4\" inline>\n <input type=\"range\" inline title=\"Count Items\" name=\"testimonialsSlides\" min=\"1\" max=\"20\" step=\"1\" value=\"3\">\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Author Name\" name=\"showName\" checked>\n <input type=\"checkbox\" title=\"Show Author Title\" name=\"showDesk\" checked>\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background1.jpg\">\n <input type=\"color\" title=\"Background Color\" value=\"#efefef\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.5\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div class=\"container text-center\">\n <h2 class=\"pb-5 mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\">MÜŞTERİLERİMİZ NELER SÖYLÜYORLAR</h2>\n\n <div class=\"carousel slide\" data-ride=\"carousel\" role=\"listbox\">\n <div mbr-list mbr-list-grow=\"testimonialsSlides\" class=\"carousel-inner\">\n <div class=\"carousel-item\">\n <div class=\"user col-md-8\">\n <div class=\"user_image\">\n <img src=\"@PROJECT_PATH@/assets/images/4-400x400.jpg\" alt title>\n </div>\n <div class=\"user_text pb-3\">\n <p class=\"mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".user_text\">Mobil sağlık konusunda uzman firma. 15 gün gibi kısa bir sürede tüm personellerimizin taramaları ve evrak işleri tamamlandı. Çözümmobil'den memnunuz.</p>\n </div>\n <div mbr-text class=\"user_name mbr-bold pb-2 mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showName\" data-app-selector=\".user_name\">\n Y.Güleryüz</div>\n <div mbr-text class=\"user_desk mbr-light mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showDesk\" data-app-selector=\".user_desk\">\n y.guleryuz@***.com</div>\n </div>\n </div>\n <div class=\"carousel-item\">\n <div class=\"user col-md-8\">\n <div class=\"user_image\">\n <img src=\"@PROJECT_PATH@/assets/images/3-400x400.jpg\" alt title>\n </div>\n <div class=\"user_text pb-3\">\n <p class=\"mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".user_text\">\n Bünyesinde İş Sağlığı ve Güvenliği konusunda yüksek lisans yapmış personelleriniz işlerini doğru yapıyorlar. Dostlarıma tavsiye edeceğim. </p>\n </div>\n <div mbr-text class=\"user_name mbr-bold pb-2 mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showName\" data-app-selector=\".user_name\">\n H.Sevgin</div>\n <div mbr-text class=\"user_desk mbr-light mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showDesk\" data-app-selector=\".user_desk\">\n hsevgin@*****.com</div>\n </div>\n </div>\n <div class=\"carousel-item\">\n <div class=\"user col-md-8\">\n <div class=\"user_image\">\n <img src=\"@PROJECT_PATH@/assets/images/1%20(1)-400x400.jpg\" alt title>\n </div>\n <div class=\"user_text pb-3\">\n <p class=\"mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".user_text\">\n Mobil sağlık araçlarınız ile tüm sağlık ihtiyaçlarımıza yerinde destek sunabildiğiniz için sizi seçtik. Hizmetinizden memnunuz.</p>\n </div>\n <div mbr-text class=\"user_name mbr-bold pb-2 mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showName\" data-app-selector=\".user_name\">\n A.Tunahan</div>\n <div mbr-text class=\"user_desk mbr-light mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showDesk\" data-app-selector=\".user_desk\">\n atunahan@*****.com</div>\n </div>\n </div></div>\n\n <div class=\"carousel-controls\">\n <a class=\"carousel-control-prev\" role=\"button\" data-slide=\"prev\">\n <span aria-hidden=\"true\" class=\"mbri-arrow-prev mbr-iconfont\"></span>\n <span class=\"sr-only\">Previous</span>\n </a>\n \n <a class=\"carousel-control-next\" role=\"button\" data-slide=\"next\">\n <span aria-hidden=\"true\" class=\"mbri-arrow-next mbr-iconfont\"></span>\n <span class=\"sr-only\">Next</span>\n </a>\n </div>\n </div>\n </div>\n</section>",
"_cid": "qN0NmWFBbd",
"_anchor": "testimonials-slider1-f",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
},
"h2": {
"text-align": "left"
},
"h4": {
"text-align": "left",
"font-weight": "500"
},
"p": {
"color": "#767676",
"text-align": "left"
},
".aside-content": {
"flex-basis": "100%"
},
".block-content": {
"display": "-webkit-flex",
"flex-direction": "column",
"-webkit-flex-direction": "column",
"word-break": "break-word"
},
".media": {
"margin": "initial",
"align-items": "center"
},
".mbr-figure": {
"align-self": "flex-start",
"-webkit-align-self": "flex-start",
"-webkit-flex-shrink": "0",
"flex-shrink": "0"
},
".card-img": {
"padding-right": "2rem",
"width": "auto"
},
".card-img span": {
"font-size": "72px",
"color": "#707070"
},
"@media (min-width: 992px)": {
".mbr-figure": {
"padding-right": "4rem",
"& when (@reverseContent)": {
"padding-right": "0",
"padding-left": "4rem"
}
},
".media-container-row": {
"& when (@reverseContent)": {
"-webkit-flex-direction": "row-reverse"
}
}
},
"@media (max-width: 991px)": {
".mbr-figure": {
"padding-right": "0",
"padding-bottom": "1rem",
"margin-bottom": "2rem",
"& when (@reverseContent)": {
"padding-bottom": "0",
"margin-bottom": "0",
"padding-top": "1rem",
"margin-top": "2rem"
}
},
".media-container-row": {
"& when (@reverseContent)": {
"-webkit-flex-direction": "column-reverse"
}
}
},
"@media (max-width: 300px)": {
".card-img span": {
"font-size": "40px !important"
}
}
},
"_name": "features11",
"_customHTML": "<section class=\"features11\" group=\"Features\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"9\" step=\"1\" value=\"6\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"6\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\">\n <input type=\"checkbox\" title=\"Show Text Header\" name=\"showTextHead\" checked>\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\" checked>\n <input type=\"checkbox\" title=\"Show Icons\" name=\"showIcons\" checked>\n <input type=\"checkbox\" title=\"Media on Left/Right\" name=\"reverseContent\">\n <input type=\"range\" inline title=\"Media Size\" name=\"mediaSize\" min=\"20\" max=\"80\" step=\"5\" value=\"50\">\n <select title=\"Cards\" name=\"cardsAmount\">\n <option value=\"1\">1</option>\n <option value=\"2\" selected>2</option>\n </select>\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"../_images/background2.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#f9f9f9\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" checked condition=\"bg.type !== 'color'\">\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#ffffff\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.5\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type!== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div class=\"container\"> \n <div class=\"col-md-12\">\n <div class=\"media-container-row\">\n <div class=\"mbr-figure\" mbr-style=\"{'width': mediaSize + '%'}\">\n <img src=\"@PROJECT_PATH@/assets/images/cozumbelgegif.gif\" alt=\"Mobirise\" title>\n </div>\n <div class=\" align-left aside-content\">\n <h2 class=\"mbr-title pt-2 mbr-fonts-style\" mbr-theme-style=\"display-2\" mbr-if=\"showTitle\">\n Çalışma Bakanlığı İzinlerimiz (Mobil Sağlık)</h2>\n <div class=\"mbr-section-text\">\n <p class=\"mbr-text mb-5 pt-3 mbr-light mbr-fonts-style\" mbr-theme-style=\"display-5\" mbr-if=\"showSubtitle\" data-app-selector=\".mbr-text\">\n Click any text or icon to edit or style it. Use the block parameters to hide/show text or icons and change media size or position.\n </p>\n </div>\n\n <div class=\"block-content\" mbr-if=\"showTextHead||showText||showIcons\">\n <div class=\"card p-3 pr-3\">\n <div class=\"media\">\n <div class=\" align-self-center card-img pb-3\" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont mbri-info\"></span>\n </div> \n <div class=\"media-body\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTextHead\">TAEK :</h4>\n </div>\n </div> \n\n <div class=\"card-box\">\n <p class=\"block-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\">TÜRKİYE ATOM ENERJİ KURUMU'nun bize vermiş olduğu lisans belgesidir. Gezici isg röntgen aracımızın radyasyon sızdırmazlığını test edip bütün testlerden geçmiştir.</p>\n </div>\n </div>\n <!-- card p-3 pr-3 -->\n <div class=\"card p-3 pr-3\" mbr-if=\"cardsAmount > 1\">\n <div class=\"media\">\n <div class=\"align-self-center card-img pb-3\" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont fa-user fa\"></span>\n </div> \n <div class=\"media-body\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTextHead\">GEZİCİ İSG RÖNTGEN ARACI :</h4>\n </div>\n </div> \n\n <div class=\"card-box\">\n <p class=\"block-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\">\n 34 SE 1558 Plakalı gezici isg röntgen aracımız TAEK tarafından lisans belgesi mevcut olup Sağlık Bakanlığının 54567092 sayılı 29.04.2016 tarihli gezici isg hizmetleri konulu genelgesine uygun bir şekilde hazırlanmış olan aracımız İl Sağlık Müdürlüğü gezici isg aracı izin belgemizdir.\n </p>\n </div>\n </div>\n <!-- card p-3 pr-3 KAPANIS -->\n <!-- card p-3 pr-3 -->\n <div class=\"card p-3 pr-3\" mbr-if=\"cardsAmount > 1\">\n <div class=\"media\">\n <div class=\"align-self-center card-img pb-3\" mbr-if=\"showIcons\">\n <span mbr-icon class=\"mbr-iconfont mbri-delivery\"></span>\n </div> \n <div class=\"media-body\">\n <h4 class=\"card-title mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showTextHead\">GEZİCİ İSG İŞİTME TEST ARACI :</h4>\n </div>\n </div> \n\n <div class=\"card-box\">\n <p class=\"block-text mbr-fonts-style\" mbr-theme-style=\"display-7\" mbr-if=\"showText\">\n 34 SE 3925 Plakalı Gezici isg işitme test aracımız Sağlık Bakanlığının 54567092 sayılı 29.04.2016 tarihli gezici isg hizmetleri konulu genelgesine uygun bir şekilde hazırlanmış olan aracımız İl Sağlık Müdürlüğü gezici isg aracı izin belgemizdir.\n </p>\n </div>\n </div>\n <!-- card p-3 pr-3 KAPANIS -->\n \n </div>\n <!-- block-content KAPANIS -->\n </div>\n <!-- align-left aside-content KAPANIS -->\n </div>\n </div> \n </div> \n</section>",
"_cid": "qN0PTGbHVi",
"_anchor": "features11-k",
"_PHPplaceholders": [],
"_JSplaceholders": [],
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"& when (@bg-type = 'color')": {
"background-color": "@bg-value"
},
"& when (@bg-type = 'image')": {
"background-image": "url(@bg-value)"
}
},
"_name": "content5",
"_customHTML": "<section class=\"mbr-section content5\" group=\"Article\" data-bg-video=\"{{bg.type == 'video' && bg.value.url}}\" mbr-class=\"{'mbr-parallax-background': bg.parallax}\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"range\" inline title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"8\" step=\"1\" value=\"3\">\n <input type=\"range\" inline title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"8\" step=\"1\" value=\"0\">\n\n <input type=\"checkbox\" title=\"Show Title\" name=\"showTitle\" checked>\n <input type=\"checkbox\" title=\"Show Subtitle\" name=\"showSubtitle\">\n <input type=\"checkbox\" title=\"Show Text\" name=\"showText\">\n <input type=\"checkbox\" title=\"Show Buttons\" name=\"showButtons\">\n\n <fieldset type=\"background\" name=\"bg\" parallax>\n <input type=\"image\" title=\"Background Image\" value=\"@PROJECT_PATH@/assets/images/mbr-2-1620x1080.jpg\" parallax>\n <input type=\"color\" title=\"Background Color\" value=\"#0f7699\" selected>\n <input type=\"video\" title=\"Background Video\" value=\"http://www.youtube.com/watch?v=uNCr7NdOJgw\">\n </fieldset>\n <input type=\"checkbox\" title=\"Overlay\" name=\"overlay\" condition=\"bg.type !== 'color'\" checked>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#232323\" condition=\"overlay && bg.type !== 'color'\">\n <input type=\"range\" inline title=\"Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.4\" condition=\"overlay && bg.type !== 'color'\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div class=\"mbr-overlay\" mbr-if=\"overlay && bg.type !== 'color'\" mbr-style=\"{'opacity': overlayOpacity, 'background-color': overlayColor}\">\n </div>\n\n <div class=\"container\">\n <div class=\"media-container-row\">\n <div class=\"title col-12 col-md-8\">\n <h2 mbr-if=\"showTitle\" class=\"align-center mbr-bold mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-1\"><span style=\"font-weight: normal;\">\n REFERANSLARIMIZDAN</span></h2>\n <h3 mbr-if=\"showSubtitle\" class=\"mbr-section-subtitle align-center mbr-light mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-5\" data-app-selector=\".mbr-section-subtitle\">\n Article header with background image and parallax effect\n </h3>\n <p class=\"mbr-text align-center mbr-white pb-3 mbr-fonts-style\" mbr-theme-style=\"display-7\" data-app-selector=\".mbr-text\" mbr-if=\"showText\" mbr-article data-multiline>\n Shape your future web project with sharp design and refine coded functions\n </p>\n <div class=\"mbr-section-btn align-center\" mbr-if=\"showButtons\" mbr-buttons mbr-theme-style=\"display-4\" data-toolbar=\"-mbrBtnMove\">\n <a class=\"btn btn-primary\" href=\"https://mobirise.com\">LEARN MORE</a>\n <a class=\"btn btn-white-outline\" href=\"https://mobirise.com\">LIVE DEMO</a>\n </div>\n </div>\n </div>\n </div>\n</section>",
"_anchor": "content5-1r",
"_isUserblock": true,
"_cid": "qN1DtjqUwm",
"_protectedParams": [],
"_global": false,
"_once": false,
"_params": {}
},
{
"_styles": {
"padding-top": "(@paddingTop * 15px)",
"padding-bottom": "(@paddingBottom * 15px)",
"background-color": "@bgColor",
".mbr-slider .carousel-control": {
"background": "#1b1b1b"
},
".mbr-slider .carousel-control-prev": {
"left": "0",
"margin-left": "2.5rem"
},
".mbr-slider .carousel-control-next": {
"right": "0",
"margin-right": "2.5rem"
},
".mbr-slider .modal-body .close": {
"background": "#1b1b1b"
},
".mbr-gallery-item > div::before": {
"content": "''",
"position": "absolute",
"left": "0",
"top": "0",
"width": "100%",
"height": "100%",
"background": "@overlayColor",
"& when (@gradOverlay)": {
"background": "linear-gradient(to left, @overlayColor, @overlayColor2) !important"
},
"opacity": "0",
"-webkit-transition": "0.2s opacity ease-in-out",
"transition": "0.2s opacity ease-in-out"
},
".mbr-gallery-item > div:hover": {
".mbr-gallery-title::before": {
"background": "transparent !important"
},
"&:before": {
"opacity": "@overlayOpacity !important"
}
},
".mbr-gallery-title": {
"font-size": ".9em",
"position": "absolute",
"display": "block",
"width": "100%",
"bottom": "0",
"padding": "1rem",
"color": "#fff",
"z-index": "2",
"&:before": {
"content": "\" \"",
"width": "100%",
"height": "100%",
"top": "0",
"left": "0",
"z-index": "-1",
"position": "absolute",
"background": "@overlayColor !important",
"& when (@gradOverlay)": {
"background": "linear-gradient(to left, @overlayColor, @overlayColor2) !important"
},
"opacity": "@overlayOpacity",
"-webkit-transition": "0.2s background ease-in-out",
"transition": "0.2s background ease-in-out"
}
}
},
"_name": "gallery3",
"_customHTML": "<section class=\"mbr-gallery mbr-slider-carousel\" group=\"Sliders & Gallery\" plugins=\"Masonry,BootstrapCarouselSwipe,Gallery,VimeoPlayer,SliderVideo\">\n\n <mbr-parameters>\n <!-- Block parameters controls (Blue \"Gear\" panel) -->\n <input type=\"checkbox\" title=\"Full Width\" name=\"fullWidth\" checked>\n <input type=\"range\" title=\"Top\" name=\"paddingTop\" min=\"0\" max=\"9\" step=\"1\" value=\"0\" inline>\n <input type=\"range\" title=\"Bottom\" name=\"paddingBottom\" min=\"0\" max=\"9\" step=\"1\" value=\"0\" inline>\n <input type=\"color\" title=\"Overlay Color\" name=\"overlayColor\" value=\"#554346\">\n <input type=\"checkbox\" title=\"Gradient Overlay\" name=\"gradOverlay\" checked>\n <input type=\"color\" title=\"Overlay Color 2\" name=\"overlayColor2\" value=\"#45505b\" condition=\"gradOverlay\">\n <input type=\"range\" title=\"Overlay Opacity\" name=\"overlayOpacity\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.7\" inline>\n <input type=\"color\" title=\"Background Color\" name=\"bgColor\" value=\"#ffffff\">\n\n <input type=\"gallery\" title=\"Gallery\" name=\"gallery\">\n <!-- End block parameters -->\n </mbr-parameters>\n\n <div mbr-class=\"{'container': !fullWidth}\">\n <div mbr-gallery=\"gallery\" mbr-gallery-show-text></div>\n </div>\n\n</section>",
"_cid": "qN0PcY5FRA",
"_anchor": "gallery3-h",
"_protectedParams": [
"text_all",
"gallery__filtersTextStyle",
"gallery__filtersBtnStyle",
"gallery"
],
"_global": false,
"_once": false,
"_params": {
"text_all": "All",
"gallery__filtersTextStyle": "display-7",
"gallery__filtersBtnStyle": "btn-primary-outline",
"gallery": [
{
"tags": "Awesome",
"videoPreview": "@THEME_PATH@/components/_images/gallery/preview.jpg",
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"image": "@PROJECT_PATH@/assets/images/babacan_yapi1-230x153.png",
"thumb": "@PROJECT_PATH@/assets/images/babacan-yapi1-230x153-230x153.png",
"alt": "",
"customStyle1": "display-7",
"caption": "Babacan Yapı",
"active": false
},
{
"tags": "Responsive",
"videoPreview": "@THEME_PATH@/components/_images/gallery/preview.jpg",
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"image": "@PROJECT_PATH@/assets/images/endustri-4-1024x567.jpg",
"thumb": "@PROJECT_PATH@/assets/images/endustri-4-1024x567-800x517.jpg",
"alt": "Sapro Temizlik Ürünleri - Çözümmobil Mobil Sağlık",
"customStyle1": "display-7",
"caption": "SAPRO",
"active": false
},
{
"tags": "Creative",
"videoPreview": "@THEME_PATH@/components/_images/gallery/preview.jpg",
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"image": "@PROJECT_PATH@/assets/images/borusan1-1-520x320.jpg",
"thumb": "@PROJECT_PATH@/assets/images/borusan1-1-520x320-448x268.jpg",
"alt": "Borusan - Çözümmobil Mobil Sağlık",
"customStyle1": "display-7",
"caption": "Borusan",
"active": false
},
{
"tags": "Animated",
"videoPreview": "@THEME_PATH@/components/_images/gallery/preview.jpg",
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"image": "@PROJECT_PATH@/assets/images/endustri-4-555x264.jpg",
"thumb": "@PROJECT_PATH@/assets/images/endustri-4-555x264-482x264.jpg",
"alt": "Supsan - Çözümmobil Mobil Sağlık",
"customStyle1": "display-7",
"caption": "Supsan",
"active": false
},
{
"tags": "Awesome",
"videoPreview": "@THEME_PATH@/components/_images/gallery/preview.jpg",
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"image": "@PROJECT_PATH@/assets/images/endustri-8-480x247.jpg",
"thumb": "@PROJECT_PATH@/assets/images/endustri-8-480x247-395x246.jpg",
"alt": "İski - Çözümmobil Mobil Sağlık",
"customStyle1": "display-7",
"caption": "Iski",
"active": false
},
{
"tags": "Awesome",
"videoPreview": "@THEME_PATH@/components/_images/gallery/preview.jpg",
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"image": "@PROJECT_PATH@/assets/images/gida_mc_burger_dominos-2-480x480.png",
"thumb": "@PROJECT_PATH@/assets/images/gida-mc-burger-dominos-2-480x480-480x424.png",
"alt": "Elit - Çözümmobil Mobil Sağlık",
"customStyle1": "display-7",
"caption": "Elit",
"active": false
},
{
"tags": "Responsive",
"videoPreview": "@THEME_PATH@/components/_images/gallery/preview.jpg",
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"image": "@PROJECT_PATH@/assets/images/mcdonalds1-1024x750.jpg",
"thumb": "@PROJECT_PATH@/assets/images/mcdonalds1-1024x750-800x532.jpg",
"alt": "McDonalds - Çözümmobil Mobil Sağlık",
"customStyle1": "display-7",
"caption": "Mc Donalds",
"active": false
},
{
"tags": "Animated",
"videoPreview": "@THEME_PATH@/components/_images/gallery/preview.jpg",
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"image": "@PROJECT_PATH@/assets/images/gida_mc_burger_dominos-1-421x281.jpg",
"thumb": "@PROJECT_PATH@/assets/images/gida-mc-burger-dominos-1-421x281-414x253.jpg",
"alt": "Altınmarka - Çözümmobil Mobil Sağlık",
"customStyle1": "display-7",
"caption": "Altınmarka",
"active": false
},
{
"tags": "Animated",
"videoPreview": "@THEME_PATH@/components/_images/gallery/preview.jpg",
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"image": "@PROJECT_PATH@/assets/images/gida_mc_burger_dominos-4-830x830.jpg",
"thumb": "@PROJECT_PATH@/assets/images/gida-mc-burger-dominos-4-830x830-800x800.jpg",
"alt": "Dominos - Çözümmobil Mobil Sağlık",
"customStyle1": "display-7",
"caption": "Dominos",
"active": false
},
{
"tags": "Animated",
"videoPreview": "@THEME_PATH@/components/_images/gallery/preview.jpg",
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"image": "@PROJECT_PATH@/assets/images/endustri-7-830x853.png",
"thumb": "@PROJECT_PATH@/assets/images/endustri-7-830x853-800x822.png",
"alt": "Shell - Çözümmobil Mobil Sağlık",
"customStyle1": "display-7",
"caption": "Shell",
"active": false
},
{
"tags": "Animated",
"videoPreview": "@THEME_PATH@/components/_images/gallery/preview.jpg",
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"image": "@PROJECT_PATH@/assets/images/endustri-4-242x96.jpg",
"thumb": "@PROJECT_PATH@/assets/images/endustri-4-242x96-242x96.jpg",
"alt": "Banat - Çözümmobil Mobil Sağlık",
"customStyle1": "display-7",
"caption": "Banat",
"active": false
},
{
"tags": "Animated",
"videoPreview": "@THEME_PATH@/components/_images/gallery/preview.jpg",
"playVideo": false,
"videoUrl": "https://www.youtube.com/watch?v=fwkKc6M60-0",
"image": "@PROJECT_PATH@/assets/images/ins_baba_binres-512x512.jpg",
"thumb": "@PROJECT_PATH@/assets/images/ins-baba-binres-512x512-512x512.jpg",
"alt": "Binres - Çözümmobil Mobil Sağlık",
"customStyle1": "display-7",
"caption": "Binres",
"active": true
}
]
}