-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
jtemav1.5son.xml
2837 lines (2494 loc) · 194 KB
/
jtemav1.5son.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:css='false' b:js='true' b:version='2' class='v2' expr:dir='data:blog.languageDirection' lang='tr' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<meta charset='UTF-8'/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async='async' src='https://www.googletagmanager.com/gtag/js?id=UA-105364251-1'/>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-105364251-1');
</script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js'/>
<link href='https://pro.fontawesome.com/releases/v5.6.3/css/all.css' rel='stylesheet'/>
<meta content='Zafer Zent' name='author'/>
<meta content='Zafer Zent' name='publisher'/>
<link href='http://demo.ghost.io/favicon.ico' rel='icon' type='image/png'/>
<meta content='tr' http-equiv='content-language'/>
<meta content='all' name='robots'/>
<meta content='19c3d22e1f8afff6' name='yandex-verification'/>
<meta content='15EC652966534330FF4E560475BCB9B8' name='msvalidate.01'/>
<b:switch var='data:blog.pageType'>
<b:case value='error_page'/>
<title>404 Hata - Sayfa bulunamadı.</title>
<b:case value='item'/>
<title><data:blog.pageName/> - <data:blog.title/></title>
<b:case value='static_page'/>
<title><data:blog.pageName/> - <data:blog.title/></title>
<b:case value='archive'/>
<title><data:blog.pageName/> - <data:blog.title/></title>
<b:default/>
<title><data:blog.pageTitle/></title>
</b:switch>
<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta content='blogger ipuçları, eklentileri ve temalarının yer aldığı web günlüğü' name='description'/>
</b:if>
<b:if cond='data:blog.pageType != data:blog.homepageUrl'>
<meta expr:content='data:blog.metaDescription' name='description'/>
</b:if>
<!--
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.metaDescription' name='description'/>
</b:if>
<b:if cond='data:blog.pageType == "static_page"'>
<meta expr:content='data:blog.metaDescription' name='description'/>
</b:if>
<b:if cond='data:blog.pageType == "archive"'>
<meta expr:content='data:blog.pageName' name='description'/>
</b:if>
<b:if cond='data:blog.pageType == "error_page"'>
<meta content='Hata - Aradığınız sayfa bulunamadı' name='description'/>
</b:if>
<b:if cond='data:blog.searchQuery'>
<meta expr:content='data:blog.pageName' name='description'/>
</b:if>
<b:if cond='data:blog.searchLabel'>
<meta expr:content='data:blog.pageName' name='description'/>
</b:if>
-->
<link expr:href='data:blog.url' rel='canonical'/>
<link href='/feeds/posts/default' rel='alternate' title='Web Günlüğü - Atom' type='application/atom+xml'/>
<link href='/feeds/posts/default?alt=rss' rel='alternate' title='Web Günlüğü - RSS' type='application/rss+xml'/>
<!-- Open Graph -->
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>
<meta content='article' property='og:type'/>
<meta expr:content='data:blog.pageName' property='og:title'/>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='og:description'/>
<b:else/>
<meta expr:content='data:post.snippet' name='og:description'/>
</b:if>
<b:if cond='data:blog.postImageUrl'>
<meta expr:content='data:blog.postImageUrl' property='og:image'/>
<meta content='1200' property='og:image:width'/>
<meta content='630' property='og:image:height'/>
<b:else/>
<meta content='https://2.bp.blogspot.com/-iRw0N45WUJc/WB0KKS2d1yI/AAAAAAAAF3Q/JkjC3gTCSesp554xMoP95Zn0A1n74w7wwCLcB/s1600/logoNewRoundWeb.png' property='og:image'/>
</b:if>
</b:if>
<!-- Twitter Cards -->
<meta content='summary_large_image' name='twitter:card'/>
<meta content='@webgunlugu' name='twitter:creator'/>
<meta content='@webgunlugu' name='twitter:site'/>
<meta expr:content='data:blog.homepageUrl' name='twitter:domain'/>
<b:if cond='data:blog.pageType == "item"'>
<meta expr:content='data:blog.url' name='twitter:url'/>
<meta expr:content='data:blog.pageName' name='twitter:title'/>
<meta expr:content='data:blog.postImageUrl' name='twitter:image'/>
<b:else/>
<meta expr:content='data:blog.homepageUrl' name='twitter:url'/>
<meta expr:content='data:blog.pageTitle' name='twitter:title'/>
<meta content='http://demo.ghost.io/favicon.ico' name='twitter:image'/>
</b:if>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='twitter:description'/>
</b:if>
<style type="text/css"><!-- /*<b:skin><![CDATA[*/]]></b:skin>
<!-- Font Embed Code -->
<link href='https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700' rel='stylesheet'/>
<style>
a,abbr,address,applet,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,s,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}h1,h2,h3,h4,h5,h6{font-size:100%}table{border-collapse:collapse;border-spacing:0}b,strong{font-weight:700}mark{border-radius: .2rem;
background: #f0f0f0; padding:3px;
font-size: 15px;}address,cite,dfn,em,i,q,var{font-style:italic;font-weight:inherit}abbr[title],dfn[title]{cursor:help;border-bottom:1px dotted}ins{border-bottom:1px solid}a,ins,u{text-decoration:none}del,s{text-decoration:line-through}code,kbd,pre,samp{font-family:monospace}small{font-size:.75em}img{border:0;font-style:italic}input,optgroup,option,select,textarea{font:inherit}*{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio[controls],canvas,video{display:inline-block}html{font-size:100%;-webkit-overflow-scrolling:touch;-webkit-tap-highlight-color:transparent;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0;text-rendering:optimizeLegibility}img{border:0;-ms-interpolation-mode:bicubic;display:block}embed,img,object{max-width:100%;height:auto}input{-webkit-appearance:none}footer,header,section{position:relative;float:left;clear:both;width:100%}@-webkit-keyframes a{0%{-webkit-transform:translate(-50%,-50%) rotateX(0) rotateY(0);transform:translate(-50%,-50%) rotateX(0) rotateY(0)}50%{-webkit-transform:translate(-50%,-50%) rotateX(-180deg) rotateY(0);transform:translate(-50%,-50%) rotateX(-180deg) rotateY(0)}to{-webkit-transform:translate(-50%,-50%) rotateX(-180deg) rotateY(-180deg);transform:translate(-50%,-50%) rotateX(-180deg) rotateY(-180deg)}}@keyframes a{0%{-webkit-transform:translate(-50%,-50%) rotateX(0) rotateY(0);transform:translate(-50%,-50%) rotateX(0) rotateY(0)}50%{-webkit-transform:translate(-50%,-50%) rotateX(-180deg) rotateY(0);transform:translate(-50%,-50%) rotateX(-180deg) rotateY(0)}to{-webkit-transform:translate(-50%,-50%) rotateX(-180deg) rotateY(-180deg);transform:translate(-50%,-50%) rotateX(-180deg) rotateY(-180deg)}}.fluidbox{outline:0}.fluidbox__overlay{background-color:rgba(233,237,242,.9);cursor:pointer;cursor:zoom-out;opacity:0;pointer-events:none;position:fixed;top:-100%;left:0;bottom:-100%;right:0;-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out}.fluidbox--opened .fluidbox__overlay{pointer-events:auto}.fluidbox__wrap{background-position:center center;background-size:cover;margin:0 auto;position:relative;-webkit-transition:all .25s ease-in-out;transition:all .25s ease-in-out}.fluidbox--closed .fluidbox__thumb,.fluidbox__thumb{-webkit-transition:opacity 0s ease-in-out 0s;transition:opacity 0s ease-in-out 0s}.fluidbox__ghost{background-size:100% 100%;background-position:center center;background-repeat:no-repeat;position:absolute;-webkit-transition:opacity 0s 0s,-webkit-transform .25s 0s;transition:opacity 0s 0s,-webkit-transform .25s 0s;transition:opacity 0s 0s,transform .25s 0s;transition:opacity 0s 0s,transform .25s 0s,-webkit-transform .25s 0s}.fluidbox--opened .fluidbox__ghost{cursor:pointer;cursor:zoom-out}.fluidbox--closed .fluidbox__ghost{-webkit-transition:opacity 0s .25s,-webkit-transform .25s 0s;transition:opacity 0s .25s,-webkit-transform .25s 0s;transition:opacity 0s .25s,transform .25s 0s;transition:opacity 0s .25s,transform .25s 0s,-webkit-transform .25s 0s}.fluidbox__loader{opacity:0;-webkit-perspective:200px;perspective:200px;pointer-events:none;position:absolute;top:0;left:0;bottom:0;right:0}.fluidbox__loader:before{background-color:rgba(255,255,255,.85);content:'';-webkit-transform-style:preserve-3d;transform-style:preserve-3d;position:absolute;top:50%;left:50%;width:20%;padding-bottom:20%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-duration:.25s;transition-duration:.25s;-webkit-transition-delay:0s;transition-delay:0s}.fluidbox--loading .fluidbox__loader{opacity:1;-webkit-transition:opacity .25s ease-in-out .25s;transition:opacity .25s ease-in-out .25s}.fluidbox--loading .fluidbox__loader:before{-webkit-animation:a 1s 0s infinite ease-in-out forwards;animation:a 1s 0s infinite ease-in-out forwards}.owl-carousel{display:none;-webkit-tap-highlight-color:transparent;position:relative;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loaded{display:block}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.no-js .owl-carousel{display:block}.owl-carousel .animated{animation-duration:.5s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}body,html{height:100%}body{background:#fff;font-family:"Poppins",sans-serif;font-weight:400;font-style:normal;color:#6C7A89}#body-classes{display:none}.cms-editor-active .button{pointer-events:none}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:"Poppins",sans-serif;color:#2A2F36}.h1:first-child,.h2:first-child,.h3:first-child,.h4:first-child,.h5:first-child,.h6:first-child,h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child{margin-top:0}.h1,h1{font-size:25px;font-weight:500;line-height:1.2;letter-spacing:-.04em}@media only screen and (min-width:768px){.h1,h1{font-size:32px}}@media only screen and (min-width:1220px){.h1,h1{font-size:40px}}.h2,h2{font-size:24px;font-weight:500;line-height:1.2;letter-spacing:-.04em}@media only screen and (min-width:768px){.h2,h2{font-size:30px}}@media only screen and (min-width:1220px){.h2,h2{font-size:35px}}.h3,h3{font-size:22px;font-weight:500;line-height:1.3;letter-spacing:-.04em}@media only screen and (min-width:768px){.h3,h3{font-size:24px}}@media only screen and (min-width:1220px){.h3,h3{font-size:26px}}.h4,h4{margin-top:25px;font-size:17px;font-weight:500;line-height:1.6;letter-spacing:0}@media only screen and (min-width:768px){.h4,h4{font-size:20px}}@media only screen and (min-width:1220px){.h4,h4{font-size:20px}}.h5,h5{margin-top:15px;font-size:17px;font-weight:500;line-height:1.6;letter-spacing:0}@media only screen and (min-width:768px){.h5,h5{font-size:20px}}@media only screen and (min-width:1220px){.h5,h5{font-size:20px}}.h6,h6{margin-top:15px;font-size:17px;font-weight:500;line-height:1.6;letter-spacing:0}@media only screen and (min-width:768px){.h6,h6{font-size:20px}}@media only screen and (min-width:1220px){.h6,h6{font-size:20px}}ol,p,ul{margin-top:15px;font-size:15px;font-weight:400;line-height:1.6;letter-spacing:0}@media only screen and (min-width:768px){ol,p,ul{font-size:17px}}@media only screen and (min-width:1220px){ol,p,ul{font-size:19px}}ol strong,p strong,ul strong{font-weight:500}ol:first-child,p:first-child,ul:first-child{margin-top:0}ol a,p a,ul a{font-weight:500}ol,ul{padding:0 0 0 18px}ol li,ul li{margin-top:8px}blockquote{margin-top:15px;border-left:2px solid #2A2F36;padding:10px 0 10px 15px;font-size:18px;font-weight:300;letter-spacing:-.04em;line-height:1.6}@media only screen and (min-width:768px){blockquote{border-left-width:3px;padding:15px 0 15px 22px;font-size:25px}}@media only screen and (min-width:1220px){blockquote{border-left-width:4px;padding:20px 0 20px 30px;font-size:30px}}blockquote p{font-size:18px;font-weight:300;letter-spacing:-.04em;line-height:1.6}@media only screen and (min-width:768px){blockquote p{font-size:25px}}@media only screen and (min-width:1220px){blockquote p{font-size:30px}}a{text-decoration:none;color:#2A2F36;font-weight:500;-webkit-transition:all .15s ease-in-out;-moz-transition:all .15s ease-in-out;-ms-transition:all .15s ease-in-out;-o-transition:all .15s ease-in-out;transition:all .15s ease-in-out}a:hover{color:#dc5b5d}.button{display:inline-block;padding:9px 15px 10px;font-size:13px;line-height:1;border:2px solid #dc5b5d;border-radius:18px;background:#dc5b5d;color:#fff;font-weight:500;letter-spacing:0;cursor:pointer}@media only screen and (min-width:768px){.button{padding:11px 20px 12px;border-radius:21px;font-size:15px}}.button:hover{background:#2A2F36;border-color:#2A2F36;color:#fff}.button svg{margin-right:5px}.button svg:last-child{margin-right:0;margin-left:5px}@media only screen and (min-width:768px){.button svg{margin-right:8px}.button svg:last-child{margin-right:0;margin-left:8px}}.button em{font-style:normal;font-weight:400}.button--large{padding:15px 20px 16px;border-radius:24px;font-size:13px}@media only screen and (min-width:768px){.button--large{padding:19px 40px 20px;border-radius:30px;font-size:17px}.button--large em{font-size:15px}}.button--light{background:0 0;border-color:#ABB7B7;color:#ABB7B7}.button--light:hover{background:0 0;border-color:#2A2F36;color:#2A2F36}.button--overlay{background:0 0;border-color:#2A2F36;color:#2A2F36}.button--overlay:hover{background:#2A2F36;border-color:#2A2F36;color:#dc5b5d}::selection{background:#dc5b5d;color:#fff}::-moz-selection{background:#dc5b5d;color:#fff}.page-loader{display:none}.page{-webkit-transition:all .4s ease-in-out;-moz-transition:all .4s ease-in-out;-ms-transition:all .4s ease-in-out;-o-transition:all .4s ease-in-out;transition:all .4s ease-in-out}body.loading .loader{opacity:1;visibility:visible;-webkit-transition:all .4s ease-in-out 1s;-moz-transition:all .4s ease-in-out 1s;-ms-transition:all .4s ease-in-out 1s;-o-transition:all .4s ease-in-out 1s;transition:all .4s ease-in-out 1s}body.loading .page{opacity:0;visibility:hidden;-webkit-transition:all .4s ease-in-out;-moz-transition:all .4s ease-in-out;-ms-transition:all .4s ease-in-out;-o-transition:all .4s ease-in-out;transition:all .4s ease-in-out}body.loading .footer{opacity:0;visibility:hidden;-webkit-transition:all .4s ease-in-out;-moz-transition:all .4s ease-in-out;-ms-transition:all .4s ease-in-out;-o-transition:all .4s ease-in-out;transition:all .4s ease-in-out}.loader{position:fixed;top:50%;left:50%;-moz-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:60px;height:15px;opacity:0;visibility:hidden;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-ms-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.loader svg{width:100%;height:100%;fill:rgba(42,47,54,.2)}.page,.page__content{float:left;clear:both;width:100%}section{margin-top:30px}@media only screen and (min-width:768px){section{margin-top:40px}}@media only screen and (min-width:1024px){section{margin-top:50px}}@media only screen and (min-width:1220px){section{margin-top:60px}}section:first-child{margin-top:0}section.no-top-margin{margin-top:0;padding-top:0}.wrap{position:relative;max-width:480px;margin:0 auto;padding:0 20px}@media only screen and (min-width:768px){.wrap{max-width:740px}}@media only screen and (min-width:1024px){.wrap{max-width:1000px}}@media only screen and (min-width:1220px){.wrap{max-width:1180px}}@media only screen and (min-width:1440px){.wrap{max-width:1280px;padding:0 30px}}.wrap--row{padding:0}.wrap--row:after{content:"";clear:both;display:table}.column{padding:0 20px}@media only screen and (min-width:1440px){.column{padding:0 30px}}.section-wrap{float:left;clear:both;width:100%;background:#f2f4f5;margin-top:40px;padding:40px 0}@media only screen and (min-width:768px){.section-wrap{margin-top:50px;padding:50px 0}}@media only screen and (min-width:1024px){.section-wrap{margin-top:60px;padding:60px 0}}@media only screen and (min-width:1220px){.section-wrap{margin-top:80px;padding:80px 0}}.header{padding:15px 0}@media only screen and (min-width:768px){.header{padding:20px 0}}@media only screen and (min-width:1220px){.header{padding:25px 0}}.header__content{position:relative;float:left;clear:both;width:100%}.header__logo{display:block;width:180px;max-width:80%}@media only screen and (min-width:768px){.header__logo{float:left;max-width:50%}}.header__logo__img,.header__logo__img__overlay{width:100%;height:auto}.header__logo__img__overlay{display:none}.header__title{font-size:25px;font-weight:700;letter-spacing:-.04em;line-height:1;color:#2A2F36}.header__title:hover{color:#dc5b5d}@media only screen and (min-width:768px){.header__title{font-size:30px}}@media only screen and (min-width:1220px){.header__title{font-size:35px}}@media only screen and (min-width:1024px){.menu{position:absolute;top:55%;right:0;-moz-transform:translate(0,-50%);-o-transform:translate(0,-50%);-ms-transform:translate(0,-50%);-webkit-transform:translate(0,-50%);transform:translate(0,-50%)}}.menu__toggle{position:absolute;z-index:100;top:50%;right:0;-moz-transform:translate(0,-50%);-o-transform:translate(0,-50%);-ms-transform:translate(0,-50%);-webkit-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;font-size:15px;line-height:20px;color:#2A2F36}@media only screen and (min-width:1024px){.menu__toggle{display:none}}.menu__toggle__icon{float:right;position:relative;width:24px;height:20px;margin-left:8px}.menu__toggle__icon span,.menu__toggle__icon span:after,.menu__toggle__icon span:before{content:'';position:absolute;top:8px;left:0;width:100%;height:3px;-webkit-transition:all .1s;-moz-transition:all .1s;-ms-transition:all .1s;-o-transition:all .1s;transition:all .1s;background:#2A2F36}.menu__toggle__icon span:before{top:-8px}.menu__toggle__icon span:after{top:8px}.menu--open .menu__toggle__icon span:after,.menu--open .menu__toggle__icon span:before{background:#dc5b5d!important}.menu--open .menu__toggle__icon span{background-color:transparent!important}.menu--open .menu__toggle__icon span:after,.menu--open .menu__toggle__icon span:before{top:0}.menu--open .menu__toggle__icon span:before{-moz-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg)}.menu--open .menu__toggle__icon span:after{-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.menu__wrap{position:fixed;z-index:90;top:0;right:0;bottom:0;left:0;background:rgba(255,255,255,.95);overflow:auto;visibility:hidden;opacity:0;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-ms-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}@media only screen and (min-width:1024px){.menu__wrap{position:relative;background:0 0;visibility:visible;overflow:visible;opacity:1;-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}}.menu--open .menu__wrap{visibility:visible;opacity:1}.menu__list{list-style:none;max-width:480px;margin:0 auto;padding:20px}@media only screen and (min-width:768px){.menu__list{max-width:740px}}@media only screen and (min-width:1024px){.menu__list{max-width:none;margin:0;padding:0}}.menu__list__item{position:relative;margin-top:0}@media only screen and (min-width:1024px){.menu__list__item{display:inline-block;margin-left:20px}.menu__list__item:first-child{margin-left:0}}.menu__list__item__link{font-size:25px;font-weight:500;color:#2A2F36;padding:10px 0;cursor:pointer}.menu__list__item__link:hover{color:#dc5b5d}@media only screen and (min-width:1024px){.menu__list__item__link{padding:0;font-size:15px;color:#2A2F36;border-bottom:2px solid transparent}.menu__list__item__link:hover{color:#dc5b5d}}@media only screen and (min-width:1220px){.menu__list__item__link{font-size:15px}}.menu__list__item__link.cc-active{color:#dc5b5d}@media only screen and (min-width:1024px){.menu__list__item__link.cc-active{color:#2A2F36;border-color:#dc5b5d}}.menu__list__dropdown{list-style:none;margin:0;padding:0}.menu__list__dropdown .menu__list__item:before{content:'— '}.menu__list__dropdown .menu__list__item__link{font-size:20px}@media only screen and (min-width:1024px){.menu__list__dropdown{display:none}}.menu__button{display:none}@media only screen and (min-width:1024px){.menu__button{display:inline-block;padding:11px 20px 12px;font-size:15px}}.buttons--circular .menu__button{border-radius:24px}@media only screen and (min-width:1024px){.buttons--circular .menu__button{border-radius:21px}}.footer{-webkit-transition:all .4s ease-in-out .8s;-moz-transition:all .4s ease-in-out .8s;-ms-transition:all .4s ease-in-out .8s;-o-transition:all .4s ease-in-out .8s;transition:all .4s ease-in-out .8s}.footer .wrap{padding:40px 20px 60px}@media only screen and (min-width:768px){.footer .wrap{padding:60px 20px 80px}}@media only screen and (min-width:1024px){.footer .wrap{padding:80px 20px 50px}}@media only screen and (min-width:1220px){.footer .wrap{padding:100px 20px 60px}}@media only screen and (min-width:1440px){.footer .wrap{padding:100px 30px 60px}}.footer .wrap:after{content:"";clear:both;display:table}@media only screen and (min-width:1024px){.footer__content{float:left;width:60%;margin-top:0}}.footer__logo{display:block;width:180px}.footer__title{font-size:25px;font-weight:700;letter-spacing:-.04em;line-height:1;color:#6C7A89}.footer__title:hover{color:#2A2F36}@media only screen and (min-width:768px){.footer__title{font-size:30px}}@media only screen and (min-width:1220px){.footer__title{font-size:35px}}.footer__text{display:block;margin-top:15px;font-size:15px;color:#2A2F36;font-weight:500}@media only screen and (min-width:768px){.footer__text{font-size:17px}}@media only screen and (min-width:1024px){.footer__text{margin-top:14px}}@media only screen and (min-width:1220px){.footer__text{margin-top:15px}}.footer__menu{list-style:none;margin:15px 0 0 0;padding:0}.footer__menu li{margin:0}@media only screen and (min-width:768px){.footer__menu li{display:inline-block;margin-right:10px}.footer__menu li:last-child{margin-right:0}}.footer__menu li a{font-size:15px;font-weight:400;color:#ABB7B7}@media only screen and (min-width:1024px){.footer__menu li a{font-size:13px}}@media only screen and (min-width:1220px){.footer__menu li a{font-size:15px}}.footer__menu li a:hover{color:#2A2F36}.footer__extras{margin-top:35px}@media only screen and (min-width:1024px){.footer__extras{float:right;width:40%;text-align:right;margin-top:0}}.footer__copyright{display:block;margin-top:15px;font-size:13px;color:#ABB7B7}.footer__copyright a{margin-right:10px;color:#ABB7B7;font-weight:400}.footer__copyright a:hover{color:#6C7A89}.footer__copyright span{margin-top:10px;display:block}@media only screen and (min-width:768px){.footer__copyright span{margin-top:0;display:inline-block}}.footer__credit{position:absolute;bottom:0;left:20px;padding:10px 15px;background:#f2f4f5;border-radius:3px 3px 0 0;font-size:11px;font-weight:500;color:#6C7A89}@media only screen and (min-width:1024px){.footer__credit{left:auto;right:20px}}.footer__credit:hover{background:#dc5b5d;color:#fff}.page-title{background:#122B36}.page-title__image{position:absolute;top:0;right:0;bottom:0;left:0;background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.page-title__image__img{visibility:hidden}.page-title__image__overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:#fff}.page-title__content{padding:40px 0}@media only screen and (min-width:768px){.page-title__content{padding:75px 0}}@media only screen and (min-width:1220px){.page-title__content{padding:100px 0}}.page-title__title{color:#fff;font-size:25px;font-weight:500;line-height:1.2;letter-spacing:-.04em}@media only screen and (min-width:768px){.page-title__title{font-size:32px}}@media only screen and (min-width:1220px){.page-title__title{font-size:40px}}.page-title__text{color:rgba(255,255,255,.7);font-size:15px;font-weight:400;line-height:1.6;letter-spacing:0}@media only screen and (min-width:768px){.page-title__text{font-size:18px}}@media only screen and (min-width:1220px){.page-title__text{font-size:21px}}.body--header-over .page-title{padding-top:50px}@media only screen and (min-width:768px){.body--header-over .page-title{padding-top:65px}}@media only screen and (min-width:1024px){.body--header-over .page-title{padding-top:75px}}@media only screen and (min-width:1220px){.body--header-over .page-title{padding-top:90px}}.page-title--center{text-align:center}.content blockquote,.content p>img{margin:20px 0}@media only screen and (min-width:768px){.content blockquote,.content p>img{margin:30px 0}}@media only screen and (min-width:1220px){.content blockquote,.content p>img{margin:40px 0}}@media only screen and (min-width:1024px){.content--narrow .wrap{max-width:700px}}.video-wrap{position:relative;max-width:100%;margin:20px 0}@media only screen and (min-width:768px){.video-wrap{margin:30px 0}}@media only screen and (min-width:1220px){.video-wrap{margin:40px 0}}.video{position:relative;width:100%;height:0}.video iframe{position:absolute;top:0;left:0;width:100%;height:100%}.socials{list-style:none;margin:0;padding:0}.socials__item{display:inline-block;margin:0 0 0 2px}.socials__item:first-child{margin-left:0}.socials__item__link{position:relative;display:block;width:30px;height:30px;border-radius:100%;background:#ABB7B7;font-size:17px;line-height:1;color:#fff}@media only screen and (min-width:768px){.socials__item__link{width:40px;height:40px;font-size:20px}}.socials__item__link svg{position:absolute;top:50%;left:50%;-moz-transform:translate(-50%,-52%);-o-transform:translate(-50%,-52%);-ms-transform:translate(-50%,-52%);-webkit-transform:translate(-50%,-52%);transform:translate(-50%,-52%)}.socials__item__link:hover{background:#dc5b5d;color:#fff}.blog{background:#f2f4f5;padding-bottom:30px}@media only screen and (min-width:768px){.blog{padding-bottom:40px}}@media only screen and (min-width:1024px){.blog{padding-bottom:50px}.blog .wrap--row{display:flex}}@media only screen and (min-width:1220px){.blog{padding-bottom:60px}}@media only screen and (min-width:1024px){.blog__posts{float:left;width:66.66%}}.blog-loader{display:none}.blog-post{position:relative;margin-top:40px}@media only screen and (min-width:1024px){.blog-post{margin-top:50px}}@media only screen and (min-width:1220px){.blog-post{margin-top:60px}}.blog-post--pagination{float:left;clear:both;width:100%}.pagination-prev{float:left}.pagination-next{float:right}.blog-post--hidden{opacity:.4;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-ms-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;pointer-events:none}.blog-post--loading{opacity:0;visibility:hidden;-moz-transform:translate(0,50px);-o-transform:translate(0,50px);-ms-transform:translate(0,50px);-webkit-transform:translate(0,50px);transform:translate(0,50px)}.blog-post--loaded{opacity:1;visibility:visible;-moz-transform:translate(0,0);-o-transform:translate(0,0);-ms-transform:translate(0,0);-webkit-transform:translate(0,0);transform:translate(0,0);-webkit-transition:all .8s cubic-bezier(.87,-.41,.19,1.44);-moz-transition:all .8s cubic-bezier(.87,-.41,.19,1.44);-ms-transition:all .8s cubic-bezier(.87,-.41,.19,1.44);-o-transition:all .8s cubic-bezier(.87,-.41,.19,1.44);transition:all .8s cubic-bezier(.87,-.41,.19,1.44)}@media only screen and (min-width:768px){.blog--shadows .blog-post__wrap{-webkit-box-shadow:0 10px 30px rgba(0,0,0,.05);-moz-box-shadow:0 10px 30px rgba(0,0,0,.05);box-shadow:0 10px 30px rgba(0,0,0,.05)}}.blog-post__image{display:block;position:relative;background-position:center;background-repeat:no-repeat;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.blog-post__content{display:block;position:relative;margin-top:15px}@media only screen and (min-width:768px){.blog-post__content{margin-top:0;background:#fff;padding:25px 30px 30px}}@media only screen and (min-width:1220px){.blog-post__content{padding:45px 50px 50px}}.blog-post__title a{font-weight:500}.blog-post__date{margin-top:0;color:#ABB7B7}.blog__sidebar{margin-top:40px;float:left;clear:both}@media only screen and (min-width:1024px){.blog__sidebar{float:right;clear:none;width:33.33%;margin-top:43px;padding-left:30px}}@media only screen and (min-width:1220px){.blog__sidebar{margin-top:51px;padding-left:40px}}.sidebar-item{margin-top:20px}@media only screen and (min-width:768px){.sidebar-item{margin-top:30px}}@media only screen and (min-width:1024px){.sidebar-item{margin-top:40px}}@media only screen and (min-width:1220px){.sidebar-item{margin-top:50px}}.sidebar-item:first-child{margin-top:0}@media only screen and (min-width:1024px){.sidebar-item--updates{position:-webkit-sticky;position:sticky;z-index:5;top:40px}}@media only screen and (min-width:1440px){.sidebar-item--updates{top:60px}}.sidebar-item__button{margin-top:20px}@media only screen and (min-width:1220px){.sidebar-item__button{margin-top:22px}}.blog-theme{margin:20px 0}@media only screen and (min-width:768px){.blog-theme{margin:30px 0;padding:40px;background:#f2f4f5}}@media only screen and (min-width:1024px){.blog-theme .theme{max-width:706px;margin:0 auto}}@media only screen and (min-width:1220px){.blog-theme{margin:40px 0}}.content .contact-form{margin:20px 0;padding:20px;background:#f2f4f5}@media only screen and (min-width:768px){.content .contact-form{margin:30px 0;padding:60px}}@media only screen and (min-width:1220px){.content .contact-form{margin:40px 0;padding:80px}}.content .contact-form:first-child{margin-top:0}.contact-form__item{margin-top:15px}@media only screen and (min-width:768px){.contact-form__item{margin-top:20px}}@media only screen and (min-width:1220px){.contact-form__item{margin-top:30px}}.contact-form__item:first-child{margin-top:0}.contact-form__item--error .contact-form__label{color:#D64541}.contact-form__item--error .contact-form__input,.contact-form__item--error .contact-form__textarea{border-color:#D64541}.contact-form__label{display:block;font-size:15px;font-weight:500;color:#6C7A89}@media only screen and (min-width:768px){.contact-form__label{font-size:17px}}@media only screen and (min-width:1220px){.contact-form__label{font-size:19px}}.contact-form__input,.contact-form__textarea{width:100%;margin-top:8px;border:2px solid #eee;border-radius:2px;padding:10px 12px;background:#fff;font-size:15px;line-height:1.4;color:#2A2F36;-webkit-transition:all .15s ease-in-out;-moz-transition:all .15s ease-in-out;-ms-transition:all .15s ease-in-out;-o-transition:all .15s ease-in-out;transition:all .15s ease-in-out}@media only screen and (min-width:768px){.contact-form__input,.contact-form__textarea{padding:15px 18px;font-size:17px}}@media only screen and (min-width:1220px){.contact-form__input,.contact-form__textarea{font-size:19px}}.contact-form__input:focus,.contact-form__textarea:focus{outline:0;border-color:#d5d5d5}::-webkit-input-placeholder{color:#ABB7B7}::-moz-placeholder{color:#ABB7B7}:-ms-input-placeholder{color:#ABB7B7}:-moz-placeholder{color:#ABB7B7}.contact-form__textarea{min-height:200px;resize:none}.hero{margin-top:0}.hero--alt{background:#f2f4f5}.hero__image{position:absolute;top:0;right:0;bottom:0;left:0;background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.hero__image__img{visibility:hidden}.hero__image__overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:#fff}.hero__content{padding:30px 0}@media only screen and (min-width:768px){.hero__content{padding:40px 0}}@media only screen and (min-width:1024px){.hero__content{padding:50px 0}}@media only screen and (min-width:1220px){.hero__content{padding:60px 0}}.hero__title{color:#2A2F36;font-size:30px;line-height:1.2;letter-spacing:-.04em}@media only screen and (min-width:768px){.hero__title{font-size:40px}}@media only screen and (min-width:1220px){.hero__title{font-size:50px}}.hero__title h1{display:inline-block;font-size:30px;line-height:1.2;letter-spacing:-.04em}@media only screen and (min-width:768px){.hero__title h1{font-size:40px}}@media only screen and (min-width:1220px){.hero__title h1{font-size:50px}}.hero__title span{display:block;font-weight:300}.hero__text{color:#6C7A89;font-size:15px;font-weight:400;line-height:1.6;letter-spacing:0}@media only screen and (min-width:768px){.hero__text{margin-top:20px;font-size:18px;white-space:pre-line}}@media only screen and (min-width:1220px){.hero__text{margin-top:25px;font-size:21px}}.hero__text br,.hero__title br{content:' '}.hero__text br:after,.hero__title br:after{content:' '}@media only screen and (min-width:1024px){.hero--full-height .hero__text br,.hero--full-height .hero__title br,.hero--standard .hero__text br,.hero--standard .hero__title br{content:initial}.hero--full-height .hero__text br:after,.hero--full-height .hero__title br:after,.hero--standard .hero__text br:after,.hero--standard .hero__title br:after{content:initial}}.hero__button{margin-top:22px}@media only screen and (min-width:1220px){.hero__button{margin-top:28px}}.body--header-over .header{position:absolute;top:0;right:0;left:0;z-index:10}.body--header-over .header__logo__img{display:none}.body--header-over .header__logo__img__overlay{display:block}.body--header-over .header__title{color:#2A2F36}.body--header-over .header__title:hover{color:#dc5b5d}.body--header-over .menu__toggle{color:#2A2F36}.body--header-over .menu__toggle__icon span,.body--header-over .menu__toggle__icon span:after,.body--header-over .menu__toggle__icon span:before{background:#2A2F36}.body--header-over.menu--open .menu__toggle__icon span{background-color:transparent}@media only screen and (min-width:1024px){.body--header-over .menu__list__item__link{color:#2A2F36}.body--header-over .menu__list__item__link:hover{color:#dc5b5d}.body--header-over .menu__list__item__link.active-link{color:#2A2F36;border-color:#dc5b5d}}.body--header-over .menu__button{border-color:#2A2F36;background:0 0;color:#2A2F36}.body--header-over .menu__button:hover{border-color:#2A2F36;background:#2A2F36;color:#dc5b5d}.body--header-over .hero{padding-top:50px}@media only screen and (min-width:768px){.body--header-over .hero{padding-top:65px}}@media only screen and (min-width:1024px){.body--header-over .hero{padding-top:75px}}@media only screen and (min-width:1220px){.body--header-over .hero{padding-top:90px}}@media only screen and (min-width:1024px){.body--header-over.body--header-stacked .hero{padding-top:115px}}@media only screen and (min-width:1220px){.body--header-over.body--header-stacked .hero{padding-top:130px}}.hero--full-height .hero{height:100vh;min-height:700px}.hero--full-height .hero .hero__content{position:absolute;top:50%;left:0;right:0;padding:0;-moz-transform:translate(0,-55%);-o-transform:translate(0,-55%);-ms-transform:translate(0,-55%);-webkit-transform:translate(0,-55%);transform:translate(0,-55%)}.body--header-above.hero--full-height .hero{height:calc(100vh - 85px);min-height:500px}@media only screen and (min-width:768px){.body--header-above.hero--full-height .hero{height:calc(100vh - 110px)}}@media only screen and (min-width:1024px){.body--header-above.hero--full-height .hero{height:calc(100vh - 130px)}}@media only screen and (min-width:1220px){.body--header-above.hero--full-height .hero{height:calc(100vh - 155px)}}.hero--split-image-left .hero .hero__image,.hero--split-image-right .hero .hero__image{position:relative}.hero--split-image-left .hero .hero__image__overlay,.hero--split-image-right .hero .hero__image__overlay{display:none}.hero--split-image-left .hero .hero__content,.hero--split-image-right .hero .hero__content{padding:40px 0}@media only screen and (min-width:1024px){.hero--split-image-left .hero,.hero--split-image-right .hero{height:100vh;min-height:700px}.hero--split-image-left .hero .hero__image,.hero--split-image-right .hero .hero__image{position:absolute;top:0;bottom:0}.hero--split-image-left .hero .hero__content,.hero--split-image-right .hero .hero__content{position:absolute;top:0;bottom:0;padding:0}.hero--split-image-left .hero .hero__content .wrap,.hero--split-image-right .hero .hero__content .wrap{position:absolute;top:50%;left:0;right:0;-moz-transform:translate(0,-55%);-o-transform:translate(0,-55%);-ms-transform:translate(0,-55%);-webkit-transform:translate(0,-55%);transform:translate(0,-55%);padding:0 40px}}@media only screen and (min-width:1220px){.hero--split-image-left .hero .hero__content .wrap,.hero--split-image-right .hero .hero__content .wrap{padding:0 60px}}.hero--split-image-left .hero .hero__button,.hero--split-image-right .hero .hero__button{border-color:#2A2F36;background:#2A2F36;color:#fff}.hero--split-image-left .hero .hero__button:hover,.hero--split-image-right .hero .hero__button:hover{border-color:#dc5b5d;background:#dc5b5d;color:#fff}@media only screen and (min-width:1024px){.hero--split-image-left .hero .hero__image{left:0;right:50%}.hero--split-image-left .hero .hero__content{left:50%;right:0}}@media only screen and (min-width:1024px){.hero--split-image-right .hero__image{left:50%;right:0}.hero--split-image-right .hero__content{left:0;right:50%}}body[data-page-url="/"].body--header-over.hero--split-image-left .hero,body[data-page-url="/"].body--header-over.hero--split-image-right .hero,body[data-page-url="/index"].body--header-over.hero--split-image-left .hero,body[data-page-url="/index"].body--header-over.hero--split-image-right .hero{padding-top:0}@media only screen and (min-width:1024px){body[data-page-url="/"].body--header-over.hero--split-image-left .menu__list__item__link,body[data-page-url="/index"].body--header-over.hero--split-image-left .menu__list__item__link{color:#2A2F36}body[data-page-url="/"].body--header-over.hero--split-image-left .menu__list__item__link:hover,body[data-page-url="/index"].body--header-over.hero--split-image-left .menu__list__item__link:hover{color:#dc5b5d}body[data-page-url="/"].body--header-over.hero--split-image-left .menu__list__item__link.active-link,body[data-page-url="/index"].body--header-over.hero--split-image-left .menu__list__item__link.active-link{color:#2A2F36;border-color:#dc5b5d}}@media only screen and (min-width:1024px){body[data-page-url="/"].body--header-over.hero--split-image-right .header__title,body[data-page-url="/index"].body--header-over.hero--split-image-right .header__title{color:#2A2F36}}@media only screen and (min-width:1024px){.body--header-above.hero--split-image-left .hero,.body--header-above.hero--split-image-right .hero{height:calc(100vh - 85px);min-height:500px}}@media only screen and (min-width:1024px) and (min-width:768px){.body--header-above.hero--split-image-left .hero,.body--header-above.hero--split-image-right .hero{height:calc(100vh - 110px)}}@media only screen and (min-width:1024px) and (min-width:1024px){.body--header-above.hero--split-image-left .hero,.body--header-above.hero--split-image-right .hero{height:calc(100vh - 130px)}}@media only screen and (min-width:1024px) and (min-width:1220px){.body--header-above.hero--split-image-left .hero,.body--header-above.hero--split-image-right .hero{height:calc(100vh - 155px)}}.hero--inside-image-left,.hero--inside-image-right{background:#f2f4f5}.hero--inside-image-left .hero__image__overlay,.hero--inside-image-right .hero__image__overlay{display:none}.hero--inside-image-left .hero__content,.hero--inside-image-right .hero__content{float:left;clear:both;width:100%}@media only screen and (min-width:1024px){.hero--inside-image-left .hero__content,.hero--inside-image-right .hero__content{position:relative;float:none;margin:0 auto;max-width:980px}.hero--inside-image-left .hero__content:after,.hero--inside-image-right .hero__content:after{content:"";clear:both;display:table}}@media only screen and (min-width:1220px){.hero--inside-image-left .hero__content,.hero--inside-image-right .hero__content{max-width:1180px}}@media only screen and (min-width:1024px){.hero--inside-image-left .hero__content .wrap,.hero--inside-image-right .hero__content .wrap{width:50%;padding:0;position:absolute;top:50%;-moz-transform:translate(0,-55%);-o-transform:translate(0,-55%);-ms-transform:translate(0,-55%);-webkit-transform:translate(0,-55%);transform:translate(0,-55%)}}.hero--inside-image-left .hero__image,.hero--inside-image-right .hero__image{position:relative;max-width:440px;margin:30px auto 0;padding:0 20px;background:0 0!important}.hero--inside-image-left .hero__image .hero__image__overlay,.hero--inside-image-right .hero__image .hero__image__overlay{display:none}@media only screen and (min-width:768px){.hero--inside-image-left .hero__image,.hero--inside-image-right .hero__image{max-width:660px;margin-top:50px}}@media only screen and (min-width:1024px){.hero--inside-image-left .hero__image,.hero--inside-image-right .hero__image{display:none}}.hero--inside-image-left .hero__image .hero__image__img,.hero--inside-image-right .hero__image .hero__image__img{visibility:visible;-webkit-box-shadow:0 10px 30px rgba(0,0,0,.2);-moz-box-shadow:0 10px 30px rgba(0,0,0,.2);box-shadow:0 10px 30px rgba(0,0,0,.2)}@media only screen and (min-width:1024px){.hero--inside-image-left .hero__content__img,.hero--inside-image-right .hero__content__img{display:block;width:45%;-webkit-box-shadow:0 10px 30px rgba(0,0,0,.2);-moz-box-shadow:0 10px 30px rgba(0,0,0,.2);box-shadow:0 10px 30px rgba(0,0,0,.2)}}.hero--inside-image-left .hero__button,.hero--inside-image-right .hero__button{border-color:#2A2F36;background:#2A2F36;color:#fff}.hero--inside-image-left .hero__button:hover,.hero--inside-image-right .hero__button:hover{border-color:#dc5b5d;background:#dc5b5d;color:#fff}@media only screen and (min-width:1024px){.hero--inside-image-left .hero__content__img{float:left}}@media only screen and (min-width:1024px){.hero--inside-image-left .wrap{left:50%}}@media only screen and (min-width:1024px){.hero--inside-image-right .hero__content__img{float:right}}@media only screen and (min-width:1024px){.hero--inside-image-right .wrap{left:0}}body[data-page-url="/"].body--header-over.hero--inside-image-left .header__title,body[data-page-url="/"].body--header-over.hero--inside-image-right .header__title,body[data-page-url="/index"].body--header-over.hero--inside-image-left .header__title,body[data-page-url="/index"].body--header-over.hero--inside-image-right .header__title{color:#2A2F36}body[data-page-url="/"].body--header-over.hero--inside-image-left .header__title:hover,body[data-page-url="/"].body--header-over.hero--inside-image-right .header__title:hover,body[data-page-url="/index"].body--header-over.hero--inside-image-left .header__title:hover,body[data-page-url="/index"].body--header-over.hero--inside-image-right .header__title:hover{color:#dc5b5d}body[data-page-url="/"].body--header-over.hero--inside-image-left .menu__toggle,body[data-page-url="/"].body--header-over.hero--inside-image-right .menu__toggle,body[data-page-url="/index"].body--header-over.hero--inside-image-left .menu__toggle,body[data-page-url="/index"].body--header-over.hero--inside-image-right .menu__toggle{color:#2A2F36}body[data-page-url="/"].body--header-over.hero--inside-image-left .menu__toggle__icon span,body[data-page-url="/"].body--header-over.hero--inside-image-left .menu__toggle__icon span:after,body[data-page-url="/"].body--header-over.hero--inside-image-left .menu__toggle__icon span:before,body[data-page-url="/"].body--header-over.hero--inside-image-right .menu__toggle__icon span,body[data-page-url="/"].body--header-over.hero--inside-image-right .menu__toggle__icon span:after,body[data-page-url="/"].body--header-over.hero--inside-image-right .menu__toggle__icon span:before,body[data-page-url="/index"].body--header-over.hero--inside-image-left .menu__toggle__icon span,body[data-page-url="/index"].body--header-over.hero--inside-image-left .menu__toggle__icon span:after,body[data-page-url="/index"].body--header-over.hero--inside-image-left .menu__toggle__icon span:before,body[data-page-url="/index"].body--header-over.hero--inside-image-right .menu__toggle__icon span,body[data-page-url="/index"].body--header-over.hero--inside-image-right .menu__toggle__icon span:after,body[data-page-url="/index"].body--header-over.hero--inside-image-right .menu__toggle__icon span:before{background:#2A2F36}body[data-page-url="/"].body--header-over.hero--inside-image-left.menu--open .menu__toggle__icon span,body[data-page-url="/"].body--header-over.hero--inside-image-right.menu--open .menu__toggle__icon span,body[data-page-url="/index"].body--header-over.hero--inside-image-left.menu--open .menu__toggle__icon span,body[data-page-url="/index"].body--header-over.hero--inside-image-right.menu--open .menu__toggle__icon span{background-color:transparent}@media only screen and (min-width:1024px){body[data-page-url="/"].body--header-over.hero--inside-image-left .menu__list__item__link,body[data-page-url="/"].body--header-over.hero--inside-image-right .menu__list__item__link,body[data-page-url="/index"].body--header-over.hero--inside-image-left .menu__list__item__link,body[data-page-url="/index"].body--header-over.hero--inside-image-right .menu__list__item__link{color:#2A2F36}body[data-page-url="/"].body--header-over.hero--inside-image-left .menu__list__item__link:hover,body[data-page-url="/"].body--header-over.hero--inside-image-right .menu__list__item__link:hover,body[data-page-url="/index"].body--header-over.hero--inside-image-left .menu__list__item__link:hover,body[data-page-url="/index"].body--header-over.hero--inside-image-right .menu__list__item__link:hover{color:#dc5b5d}body[data-page-url="/"].body--header-over.hero--inside-image-left .menu__list__item__link.active-link,body[data-page-url="/"].body--header-over.hero--inside-image-right .menu__list__item__link.active-link,body[data-page-url="/index"].body--header-over.hero--inside-image-left .menu__list__item__link.active-link,body[data-page-url="/index"].body--header-over.hero--inside-image-right .menu__list__item__link.active-link{color:#2A2F36;border-color:#dc5b5d}}.hero--center{text-align:center}.themes{background:#f2f4f5;margin-top:0;padding:30px 0}@media only screen and (min-width:768px){.themes{padding:40px 0}}@media only screen and (min-width:1024px){.themes{padding:50px 0}}@media only screen and (min-width:1220px){.themes{padding:60px 0}}.themes .column{margin-top:30px}@media only screen and (min-width:768px){.themes .column{float:left;width:50%;margin-top:40px}.themes .column:nth-child(2n+1){clear:left}.themes .column:last-child{display:none}}@media only screen and (min-width:1024px){.themes .column{width:33.33%}.themes .column:nth-child(2n+1){clear:none}.themes .column:nth-child(3n+1){clear:left}.themes .column:last-child{display:block}}@media only screen and (min-width:1440px){.themes .column{margin-top:60px}}.themes--show-all .column:last-child{display:block}.themes--no-top{padding-top:0}@media only screen and (min-width:768px){.themes.resources .column:last-child{display:block}}@media only screen and (min-width:1024px){.themes.resource-page .hero__text br{content:initial}.themes.resource-page .hero__text br:after{content:initial}}.themes.resource-page .theme__title{padding-right:0}.themes--alt{background:0 0}@media only screen and (min-width:768px){.themes--fewer .column:last-child{display:block}}@media only screen and (min-width:768px){.themes__intro p{white-space:pre-line}}@media only screen and (min-width:1440px){.themes__intro{margin-bottom:-8px}}.themes__button{margin-top:30px;width:100%;text-align:center}@media only screen and (min-width:768px){.themes__button{margin-top:40px}}@media only screen and (min-width:1440px){.themes__button{margin-top:60px}}.theme__image{position:relative;z-index:1;display:block;-webkit-box-shadow:0 6px 20px rgba(0,0,0,.1);-moz-box-shadow:0 6px 20px rgba(0,0,0,.1);box-shadow:0 6px 20px rgba(0,0,0,.1);-webkit-transition:all .4s cubic-bezier(.87,-.41,.19,1.44);-moz-transition:all .4s cubic-bezier(.87,-.41,.19,1.44);-ms-transition:all .4s cubic-bezier(.87,-.41,.19,1.44);-o-transition:all .4s cubic-bezier(.87,-.41,.19,1.44);transition:all .4s cubic-bezier(.87,-.41,.19,1.44);border-radius:0 0 3px 3px;overflow:hidden}.theme__image:hover{-moz-transform:translate(0,-8px);-o-transform:translate(0,-8px);-ms-transform:translate(0,-8px);-webkit-transform:translate(0,-8px);transform:translate(0,-8px);-webkit-box-shadow:0 12px 25px rgba(0,0,0,.1);-moz-box-shadow:0 12px 25px rgba(0,0,0,.1);box-shadow:0 12px 25px rgba(0,0,0,.1)}.theme__browser{height:24px;background:#dee3e5;padding-left:8px;border-radius:3px 3px 0 0}.theme__browser span{float:left;margin:8px 3px 0 0;width:8px;height:8px;border-radius:8px;background:#fff}.theme__screenshot{position:relative}.theme__screenshot__img{display:block}.theme__content{position:relative;margin-top:20px}.theme__title{padding-right:60px}.theme__marker{display:inline-block;margin:-3px 0 0 12px;vertical-align:middle;letter-spacing:.1em;padding:4px 8px 5px 8px;background:#dc5b5d;border-radius:3px;font-size:9px;line-height:11px;text-transform:uppercase;color:#fff}.theme__price{position:absolute;top:6px;right:0;color:#ABB7B7;font-weight:300;font-size:17px;letter-spacing:.04em}@media only screen and (min-width:1220px){.theme__price{font-size:19px}}.theme__subtitle{margin-top:5px;font-size:14px}@media only screen and (min-width:1220px){.theme__subtitle{font-size:16px}}.resource__content{margin-top:15px}.resource__content p{font-size:16px}.theme--exclusive .theme__browser{background:#c4cdd2}.theme--exclusive .theme__browser span{background:#fff}.theme-removed{display:none;margin-top:20px;padding:20px;background:#fff;border:3px solid #dc5b5d;line-height:1.5;color:#2A2F36}@media only screen and (min-width:768px){.theme-removed{margin-top:25px;padding:25px}}@media only screen and (min-width:1220px){.theme-removed{margin-top:30px;padding:30px}}.theme-removed--on{display:block}.ad-wrap{margin-top:30px}@media only screen and (min-width:768px){.ad-wrap{margin-top:40px;padding:20px;background:#f2f4f5;text-align:center}}@media only screen and (min-width:1220px){.ad-wrap{padding:30px}}@media only screen and (min-width:768px){body[data-page-url="/free/"] .ad-wrap{background:#fff}}.bundle{float:left;width:100%;margin:20px 0;background:#fff;border:4px solid #dc5b5d;padding:15px}.bundle:hover{background:#dc5b5d;color:#fff}@media only screen and (min-width:768px){.bundle{margin:30px 0}}@media only screen and (min-width:1220px){.bundle{margin:40px 0}}.bundle__image{display:block;width:180px;-webkit-box-shadow:0 0 20px rgba(0,0,0,.1);-moz-box-shadow:0 0 20px rgba(0,0,0,.1);box-shadow:0 0 20px rgba(0,0,0,.1)}@media only screen and (min-width:768px){.bundle__image{float:left;margin-right:15px}}@media only screen and (min-width:1024px){.bundle__image{margin-right:25px}}.bundle__title{margin-top:18px;display:block}@media only screen and (min-width:1024px){.bundle__title{margin-top:13px}}.bundle__text{margin-top:5px;line-height:1.4;font-weight:400}@media only screen and (min-width:1024px){.bundle__text{display:block}}@media only screen and (min-width:768px){.bundle-info{white-space:pre-line}}.cta-box{background:#f2f4f5;padding:40px 0;text-align:center}@media only screen and (min-width:768px){.cta-box{padding:50px 0}}@media only screen and (min-width:1024px){.cta-box{padding:60px 0 0}}@media only screen and (min-width:1220px){.cta-box{padding:80px 0 0}}.cta-box--no-top{margin-top:0;padding-top:0}.cta-box__box{background:#fff;padding:30px 20px;border-bottom:10px solid #dc5b5d;-webkit-box-shadow:0 10px 30px rgba(0,0,0,.1);-moz-box-shadow:0 10px 30px rgba(0,0,0,.1);box-shadow:0 10px 30px rgba(0,0,0,.1)}@media only screen and (min-width:768px){.cta-box__box{padding:40px 30px}}@media only screen and (min-width:1024px){.cta-box__box{padding:50px;margin-bottom:-30px}}@media only screen and (min-width:1220px){.cta-box__box{padding:60px;margin-bottom:-40px}}.cta-box__box .button--light{margin-left:10px}.cta-box__content p{font-size:18px;font-weight:300;letter-spacing:-.04em;line-height:1.6;color:#2A2F36}@media only screen and (min-width:768px){.cta-box__content p{font-size:25px}}@media only screen and (min-width:1220px){.cta-box__content p{font-size:30px}}.cta-box__content p br{content:' '}.cta-box__content p br:after{content:' '}@media only screen and (min-width:1024px){.cta-box__content p br{content:initial}.cta-box__content p br:after{content:initial}}.cta-box__button{margin-top:22px}@media only screen and (min-width:1220px){.cta-box__button{margin-top:28px}}.cta{background:#122B36}.cta__image{position:absolute;top:0;right:0;bottom:0;left:0;background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}.cta__image__img{visibility:hidden}.cta__image__overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:#fff}.cta__content{padding:40px 0}@media only screen and (min-width:768px){.cta__content{padding:70px 0}}@media only screen and (min-width:1220px){.cta__content{padding:100px 0}}.cta__title{color:#fff;font-size:25px;font-weight:500;line-height:1.4;letter-spacing:-.04em}@media only screen and (min-width:768px){.cta__title{font-size:32px}}@media only screen and (min-width:1220px){.cta__title{font-size:40px}}.cta__text{color:#eee;font-size:17px;font-weight:400;line-height:1.6;letter-spacing:0}@media only screen and (min-width:768px){.cta__text{font-size:20px}}@media only screen and (min-width:1220px){.cta__text{font-size:23px}}.cta__text br,.cta__title br{content:' '}.cta__text br:after,.cta__title br:after{content:' '}@media only screen and (min-width:1024px){.cta__text br,.cta__title br{content:initial}.cta__text br:after,.cta__title br:after{content:initial}}.cta__button{margin-top:22px;color:#eee;border-color:#eee}.cta__button:hover{border-color:#eee;background:#eee;color:#dc5b5d}@media only screen and (min-width:1220px){.cta__button{margin-top:28px}}.cta--center{text-align:center}.modal{position:fixed;z-index:1000;top:0;right:0;bottom:0;left:0;overflow:auto;padding:40px 20px;display:flex;align-items:center;justify-content:center;visibility:hidden;opacity:0;-webkit-transition:all .4s ease-in-out;-moz-transition:all .4s ease-in-out;-ms-transition:all .4s ease-in-out;-o-transition:all .4s ease-in-out;transition:all .4s ease-in-out}@media only screen and (min-width:768px){.modal{padding:50px 0}}@media only screen and (min-width:1220px){.modal{padding:60px 0}}.modal--on{visibility:visible;opacity:1}.modal--on .modal__browse,.modal--on .modal__wrap{visibility:visible;opacity:1;-moz-transform:translate(0,0);-o-transform:translate(0,0);-ms-transform:translate(0,0);-webkit-transform:translate(0,0);transform:translate(0,0);-webkit-transition:all .6s ease-in-out;-moz-transition:all .6s ease-in-out;-ms-transition:all .6s ease-in-out;-o-transition:all .6s ease-in-out;transition:all .6s ease-in-out}.modal__background{position:fixed;top:0;right:0;bottom:0;left:0;background:rgba(242,244,245,.95)}.modal__background:hover .modal__close{opacity:1}.modal__close{position:absolute;top:10px;right:18px;font-size:24px;text-align:right;color:#dc5b5d;opacity:.7;cursor:pointer;-webkit-transition:all .15s ease-in-out;-moz-transition:all .15s ease-in-out;-ms-transition:all .15s ease-in-out;-o-transition:all .15s ease-in-out;transition:all .15s ease-in-out}@media only screen and (min-width:768px){.modal__close{top:20px;right:20px;font-size:30px}}@media only screen and (min-width:1220px){.modal__close{top:30px;right:30px}}.modal__wrap{position:relative;max-width:400px;max-height:100%;margin:0 auto;flex-grow:1;visibility:hidden;opacity:0;-moz-transform:translate(0,50px);-o-transform:translate(0,50px);-ms-transform:translate(0,50px);-webkit-transform:translate(0,50px);transform:translate(0,50px);-webkit-transition:all .4s ease-in-out .4s;-moz-transition:all .4s ease-in-out .4s;-ms-transition:all .4s ease-in-out .4s;-o-transition:all .4s ease-in-out .4s;transition:all .4s ease-in-out .4s}@media only screen and (min-width:768px){.modal__wrap{max-width:620px}}@media only screen and (min-width:1024px){.modal__wrap{max-width:700px}}.modal__content{width:100%;background:#fff;padding:20px;margin-bottom:20px;-webkit-box-shadow:0 10px 30px rgba(0,0,0,.1);-moz-box-shadow:0 10px 30px rgba(0,0,0,.1);box-shadow:0 10px 30px rgba(0,0,0,.1)}@media only screen and (min-width:768px){.modal__content{padding:40px;margin-bottom:40px}}@media only screen and (min-width:1024px){.modal__content{padding:50px;margin-bottom:50px}}.modal--browse{display:none}@media only screen and (min-width:1024px){.modal--browse{display:flex}}.modal__browse{width:100%;text-align:center;visibility:hidden;opacity:0;-moz-transform:translate(0,50px);-o-transform:translate(0,50px);-ms-transform:translate(0,50px);-webkit-transform:translate(0,50px);transform:translate(0,50px);-webkit-transition:all .4s ease-in-out .4s;-moz-transition:all .4s ease-in-out .4s;-ms-transition:all .4s ease-in-out .4s;-o-transition:all .4s ease-in-out .4s;transition:all .4s ease-in-out .4s}.modal__browse .wrap--row{margin-top:20px}@media only screen and (min-width:1440px){.modal__browse .wrap--row{margin-top:30px}}.browse-item{float:left;width:25%;padding:20px}.browse-item:nth-child(5){margin-left:12.5%}@media only screen and (min-width:1440px){.browse-item{padding:30px}}.browse-item .theme__browser{height:18px;padding-left:6px}.browse-item .theme__browser span{margin-top:6px;width:6px;height:6px}.browse-item h5{font-size:17px;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-ms-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}@media only screen and (min-width:1220px){.browse-item h5{font-size:19px}}.browse-item:hover .theme__image{-moz-transform:translate(0,-8px);-o-transform:translate(0,-8px);-ms-transform:translate(0,-8px);-webkit-transform:translate(0,-8px);transform:translate(0,-8px);-webkit-box-shadow:0 12px 25px rgba(0,0,0,.1);-moz-box-shadow:0 12px 25px rgba(0,0,0,.1);box-shadow:0 12px 25px rgba(0,0,0,.1)}.browse-item:hover h5{color:#dc5b5d}.modal--contact .contact-form{margin-top:22px}@media only screen and (min-width:1220px){.modal--contact .contact-form{margin-top:32px}}.modal__embed-wrap{margin-top:22px}@media only screen and (min-width:1220px){.modal__embed-wrap{margin-top:32px}}.modal__embed-wrap #mc_embed_signup form{padding:0}.theme-hero{margin-top:0;background:#f2f4f5;padding:30px 0}@media only screen and (min-width:768px){.theme-hero{padding:40px 0}}@media only screen and (min-width:1024px){.theme-hero{padding:50px 0}.theme-hero .hero__text{width:66.66%}}@media only screen and (min-width:1220px){.theme-hero{padding:60px 0}}.theme-images{margin-top:0;background:#f2f4f5;padding-bottom:30px;overflow:hidden}@media only screen and (min-width:768px){.theme-images{padding-bottom:40px}}@media only screen and (min-width:1024px){.theme-images{padding-bottom:50px}}@media only screen and (min-width:1220px){.theme-images{padding-bottom:60px}}@media only screen and (min-width:1024px){.theme-images .column{width:80%}}.theme-images__carousel .owl-nav{display:none}.theme-images__carousel .owl-stage-outer{overflow:visible}.theme-images__carousel .owl-dots{margin-top:20px}@media only screen and (min-width:1024px){.theme-images__carousel .owl-dots{margin-top:30px}}.theme-images__carousel .owl-dots .owl-dot{display:inline-block;margin:0 8px 0 0;width:15px;height:15px;border:0;border-radius:100%;background:#ABB7B7;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-ms-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;cursor:pointer;outline:0}.theme-images__carousel .owl-dots .owl-dot.active{background:#dc5b5d}.theme-images__carousel-item{-webkit-box-shadow:0 6px 20px rgba(0,0,0,.1);-moz-box-shadow:0 6px 20px rgba(0,0,0,.1);box-shadow:0 6px 20px rgba(0,0,0,.1);border-radius:0 0 3px 3px;overflow:hidden;max-width:1140px}.theme-images__carousel-item img{width:100%}.owl-item .theme-images__carousel-item{opacity:.5;-webkit-transition:all .4s ease-in-out;-moz-transition:all .4s ease-in-out;-ms-transition:all .4s ease-in-out;-o-transition:all .4s ease-in-out;transition:all .4s ease-in-out}.owl-item.active .theme-images__carousel-item{opacity:1}.theme-content{margin-top:0;background:#f2f4f5;padding-bottom:30px}.theme-content .theme-content__main{margin-top:40px}@media only screen and (min-width:768px){.theme-content{padding-bottom:40px}}@media only screen and (min-width:1024px){.theme-content{padding-bottom:50px}.theme-content .theme-content__main{float:left;width:66.66%;margin-top:0}.theme-content .theme-content__sidebar{float:right;width:33.33%}}@media only screen and (min-width:1220px){.theme-content{padding-bottom:60px}}@media only screen and (min-width:768px){.theme-content__wrap{background:#fff;-webkit-box-shadow:0 10px 30px rgba(0,0,0,.05);-moz-box-shadow:0 10px 30px rgba(0,0,0,.05);box-shadow:0 10px 30px rgba(0,0,0,.05);padding:36px 40px 40px}}@media only screen and (min-width:1024px){.theme-content__wrap{padding:27px 30px 30px}}@media only screen and (min-width:1220px){.theme-content__wrap{padding:45px 50px 50px}}.theme-content__wrap p:first-of-type{font-size:17px;line-height:1.6;letter-spacing:0}@media only screen and (min-width:768px){.theme-content__wrap p:first-of-type{font-size:20px}}@media only screen and (min-width:1220px){.theme-content__wrap p:first-of-type{font-size:22px}}.theme-content__wrap a{border-bottom:2px solid #dc5b5d}.theme-features{margin-top:40px}.theme-feature{margin-top:20px}@media only screen and (min-width:768px){.theme-feature{margin-top:0;padding:20px;margin:0 -20px}.theme-feature:nth-child(2n-1){background:rgba(242,244,245,.5)}}@media only screen and (min-width:1024px){.theme-feature{padding:20px 15px;margin:0 -15px}.theme-feature:hover h4 .svg-inline--fa{-moz-transform:scale(1.5);-o-transform:scale(1.5);-ms-transform:scale(1.5);-webkit-transform:scale(1.5);transform:scale(1.5)}}@media only screen and (min-width:1220px){.theme-feature{padding:25px;margin:0 -25px}}.theme-feature h4{font-weight:600;line-height:1.2}.theme-feature h4 span{display:inline-block;width:20px}@media only screen and (min-width:768px){.theme-feature h4 span{width:28px}}.theme-feature h4 .svg-inline--fa{color:#dc5b5d;margin-right:6px;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-ms-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.theme-feature p:first-of-type{margin-top:5px;font-size:15px;font-weight:400;line-height:1.6;letter-spacing:0}@media only screen and (min-width:768px){.theme-feature p:first-of-type{font-size:15px}}@media only screen and (min-width:1220px){.theme-feature p:first-of-type{margin-top:8px;font-size:17px}}@media only screen and (min-width:768px){.theme-content__wrap ul{list-style-position:inside;padding:0}}@media only screen and (min-width:768px){.theme-content__wrap ul li{margin-top:0;padding:10px 20px;margin:0 -20px}.theme-content__wrap ul li:nth-child(2n-1){background:rgba(242,244,245,.5)}}@media only screen and (min-width:1024px){.theme-content__wrap ul li{padding:10px 15px;margin:0 -15px}}@media only screen and (min-width:1220px){.theme-content__wrap ul li{padding:15px 25px;margin:0 -25px}}@media only screen and (min-width:1024px){.theme-content__sidebar{position:-webkit-sticky;position:sticky;z-index:5;top:40px}}@media only screen and (min-width:1440px){.theme-content__sidebar{top:60px}}.theme-cta{background:#fff;padding:20px;border-bottom:6px solid #dc5b5d;-webkit-box-shadow:0 10px 30px rgba(0,0,0,.1);-moz-box-shadow:0 10px 30px rgba(0,0,0,.1);box-shadow:0 10px 30px rgba(0,0,0,.1)}.theme-cta .theme__image{display:none}.theme-cta .theme__content{margin-top:0}.theme-cta .theme__subtitle{font-size:15px;font-weight:500}@media only screen and (min-width:1220px){.theme-cta .theme__subtitle{font-size:17px}}@media only screen and (min-width:768px){.theme-cta{padding:27px 30px;border-bottom:8px solid #dc5b5d}}@media only screen and (min-width:1024px){.theme-cta{padding:0;background:0 0;border-bottom:0;-webkit-box-shadow:0 0 0 transparent;-moz-box-shadow:0 0 0 transparent;box-shadow:0 0 0 transparent}.theme-cta .theme__image{display:block}.theme-cta .theme__content{margin-top:20px}}.theme-cta__info{list-style:none;margin:6px 0 0;padding:0;font-size:15px;color:#ABB7B7}.theme-cta__info li{display:inline-block;margin:0 15px 0 0}.theme-cta__info li:last-child{margin-right:0}.theme-cta__info svg{margin-right:3px}.theme-cta__info a{color:#ABB7B7;font-weight:400}.theme-cta__info a:hover{color:#6C7A89}.theme-cta__buttons{margin-top:20px}@media only screen and (min-width:1024px){.theme-cta__buttons{margin-top:40px}}.theme-cta__buttons .button--large{padding-left:20px;padding-right:20px}.theme-hero__demo-button{margin-top:10px}@media only screen and (min-width:768px){.theme-hero__demo-button{display:inline-block;margin-top:0;margin-left:10px}}@media only screen and (min-width:1024px){.theme-hero__demo-button{display:block;margin-top:10px;margin-left:0}}.gallery{visibility:hidden;position:relative;margin:20px auto}@media only screen and (min-width:768px){.gallery{margin:30px auto}}@media only screen and (min-width:1220px){.gallery{margin:40px auto}}.gallery:first-child{margin-top:0}.gallery--on{visibility:visible}.gallery__item{position:relative}.gallery__item img{width:100%}.gallery--carousel .gallery__item__link{display:block;pointer-events:none}.gallery--carousel .owl-nav{display:none}.gallery--carousel .owl-dots{margin-top:20px;text-align:center}.gallery--carousel .owl-dots .owl-dot{display:inline-block;margin:0 3px;width:12px;height:12px;border:0;border-radius:100%;background:#ABB7B7;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-ms-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;cursor:pointer;outline:0}.gallery--carousel .owl-dots .owl-dot.active{background:#dc5b5d}.gallery--grid .gallery__wrap{margin-left:-20px;margin-right:-20px}.gallery--grid .gallery__item{float:left;width:50%;padding:10px}@media only screen and (min-width:1024px){.gallery--grid .gallery__item{padding:20px}}.gallery--grid .gallery__item__link{display:block;cursor:zoom-in;-webkit-box-shadow:0 6px 30px rgba(0,0,0,.1);-moz-box-shadow:0 6px 30px rgba(0,0,0,.1);box-shadow:0 6px 30px rgba(0,0,0,.1)}@media only screen and (min-width:1024px){.gallery--grid[data-columns="3"] .gallery__item{width:33.33%}}.gallery--grid[data-columns="4"] .gallery__item{width:33.33%}@media only screen and (min-width:768px){.gallery--grid[data-columns="4"] .gallery__item{width:25%}}.gallery--grid[data-columns="5"] .gallery__item{width:33.33%}@media only screen and (min-width:768px){.gallery--grid[data-columns="5"] .gallery__item{width:25%}}@media only screen and (min-width:1024px){.gallery--grid[data-columns="5"] .gallery__item{width:20%}}.gallery--grid[data-columns="6"] .gallery__item{width:33.33%}@media only screen and (min-width:768px){.gallery--grid[data-columns="6"] .gallery__item{width:25%}}@media only screen and (min-width:1024px){.gallery--grid[data-columns="6"] .gallery__item{width:20%}}@media only screen and (min-width:1220px){.gallery--grid[data-columns="6"] .gallery__item{width:16.66%}}.promo{display:none}@media only screen and (min-width:768px){.promo{display:block;position:fixed;z-index:10;bottom:0;right:0;width:740px;padding:20px;border-top:6px solid #dc5b5d;background:#fff;-webkit-box-shadow:0 6px 20px rgba(0,0,0,.1);-moz-box-shadow:0 6px 20px rgba(0,0,0,.1);box-shadow:0 6px 20px rgba(0,0,0,.1);line-height:1.5}.promo:hover .promo__cta{color:#dc5b5d}}.promo__image{float:left;width:180px;margin:-67px 15px 0 0;-webkit-box-shadow:0 0 20px rgba(0,0,0,.1);-moz-box-shadow:0 0 20px rgba(0,0,0,.1);box-shadow:0 0 20px rgba(0,0,0,.1)}.promo__intro{display:block;font-size:14px;font-weight:400;color:#6C7A89;white-space:nowrap}.promo__cta{display:block;font-size:17px;font-weight:600;-webkit-transition:all .15s ease-in-out;-moz-transition:all .15s ease-in-out;-ms-transition:all .15s ease-in-out;-o-transition:all .15s ease-in-out;transition:all .15s ease-in-out;white-space:nowrap}.about-mission{margin-top:0;padding:30px 0;background:#f2f4f5}@media only screen and (min-width:768px){.about-mission{padding:40px 0}}@media only screen and (min-width:1024px){.about-mission{padding:50px 0}}@media only screen and (min-width:1220px){.about-mission{padding:60px 0}}.about-mission .column{margin-top:20px}@media only screen and (min-width:1024px){.about-mission .column{margin-top:36px;float:left;width:33.33%}}@media only screen and (min-width:1440px){.about-mission .column{margin-top:55px}}@media only screen and (min-width:768px){.about-mission__box{padding:30px;background:#fff;-webkit-box-shadow:0 8px 25px rgba(0,0,0,.05);-moz-box-shadow:0 8px 25px rgba(0,0,0,.05);box-shadow:0 8px 25px rgba(0,0,0,.05)}}.about-mission__box h3{display:inline-block;border-bottom:3px solid #dc5b5d}@media only screen and (min-width:1024px){.about-us .wrap--row{display:flex;align-items:center}}.about-us .wrap--row img{-webkit-box-shadow:0 8px 25px rgba(0,0,0,.05);-moz-box-shadow:0 8px 25px rgba(0,0,0,.05);box-shadow:0 8px 25px rgba(0,0,0,.05)}.about-us .column{margin-top:30px}@media only screen and (min-width:1024px){.about-us .column{margin-top:0;width:50%}.about-us .column:first-child{order:2}}@media only screen and (min-width:1220px){.about-us .column:last-child{padding-right:60px}}@media only screen and (min-width:1440px){.about-us .column:last-child{padding-right:80px}}.about-us .column p:first-of-type{font-size:18px}@media only screen and (min-width:768px){.about-us .column p:first-of-type{font-size:22px}}@media only screen and (min-width:1220px){.about-us .column p:first-of-type{font-size:24px}}.about-developers .column{margin-top:20px}@media only screen and (min-width:1024px){.about-developers .column{margin-top:36px;float:left;width:33.33%}}@media only screen and (min-width:1440px){.about-developers .column{margin-top:55px}}.theme-developer img{width:200px;border-radius:100%}.theme-developer h3{margin-top:20px}.theme-developer p{color:#6C7A89}.theme-developer p.theme-developer__cta{color:#2A2F36;font-size:15px;font-weight:500;text-transform:uppercase;letter-spacing:.04em;-webkit-transition:all .15s ease-in-out;-moz-transition:all .15s ease-in-out;-ms-transition:all .15s ease-in-out;-o-transition:all .15s ease-in-out;transition:all .15s ease-in-out}.theme-developer p.theme-developer__cta svg{margin-left:5px}.theme-developer:hover h3{color:#2A2F36}.theme-developer:hover p{color:#6C7A89}.theme-developer:hover p.theme-developer__cta{color:#dc5b5d}@media only screen and (min-width:1024px){.thanks-order{display:flex;align-items:center}}.thanks-order .column{margin-top:30px}@media only screen and (min-width:1024px){.thanks-order .column{margin-top:0;width:50%}.thanks-order .column:first-child{order:2}}@media only screen and (min-width:1220px){.thanks-order .column:last-child{padding-right:60px}}@media only screen and (min-width:1440px){.thanks-order .column:last-child{padding-right:80px}}
.tweet a{color: #6C7A89 !important; font-weight:400}
.timePosted a{color: #2A2F36 !important;}
#HTML1{overflow: auto;
position: -webkit-sticky;
position: sticky;
top: 5%;}
</style>
<!-- Styles -->
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<b:template-skin><![CDATA[
body#layout main{width:70%; float:left; }
body#layout main div.articles{background:}
body#layout aside{width:30%; float:right}
body#layout aside div.section{background:}
body#layout footer{display: none;}
]]></b:template-skin>
<style>.menu__list__item__link.aktif{color:#dc5b5d;border-color: #dc5b5d;}.blog-post__content {
padding: 45px 50px 50px;
letter-spacing: 0em;
line-height: 1.6;
font-size: 19px;
}
div#HTML3{background:#fffedf !important}
#Feed1 .widget-content ul li a{font-weight:300}
/* yorumlar */
.comments .avatar-image-container {
float: left;
max-height: 36px;
overflow: hidden;
width: 36px;
}
.comments .avatar-image-container img {
width: 36px;
height: 36px;
}
.comment-replies .comment-thread ol li.comment {
border-bottom: 1px solid #eee;
margin-top: 30px; }
.comment-replies .comment-thread ol li.comment:last-child{border:none}
.thread-chrome.thread-expanded .comment-replies .continue {display:none}
.comments .thread-toggle {
display: none;
margin-left: 0;
}
.comment-actions{display:none}
#top-continue {margin: 30px auto 20px auto;}
.comments .continue a {
display: block;
font-weight: bold;
padding: 0;
margin-top:-10px
}
.comment-replies p.comment-content{padding-bottom:15px}
.comment-replies a.comment-reply {background: #fff;
max-width: 115px;
padding: 5px;}
span.blog-admin a{display:none}
.comment-thread ol li.comment{list-style:none}
.comment-thread ol{padding:0}
ol.thread-chrome .thread-expanded li.comment{padding-bottom:0}
.thread-chrome .comment-block{margin-bottom: -15px;
margin-top: -15px;}
.comment-replies .comment-thread .comment-header{margin-left: 50px !important; }
.comment-replies .comment-thread{}
.comments .comments-content .datetime {margin-left: 0px; font-size:13px; display:block;}
.comments a{color:#444}
.comments .comments-content .comment-header{margin-left: 50px;}
.comments .comment .comment-actions a {background:#eee; padding:5px; font-size:13px}
span.blog-admin a{display:none}
.comment-header cite.user{ font-style: normal;}
pre{padding: 10px;
overflow: auto;
font-size: 15px;
/*line-height: 35px;*/
background: #f7f7f7;}
.avatar-image-container{
margin-right:10px;
background:#fff;
height:50px;min-height: 50px;
width:50px;min-width:50px;
border-radius:35px;
}
.avatar-image-container img {border-radius:35px; background: url(https://lh3.googleusercontent.com/zFdxGE77vvD2w5xHy6jkVuElKv-U9_9qLkRYK8OnbDeJPtjSZ82UPq5w6hJ-SA=s35);
background-repeat: no-repeat;
background-position: center;
background-size: 100%;
width:50px;
min-width:50px;
height:50px;
min-height:50px;
}
.Blog .comments ol > li {
position: relative;
padding: 25px;
background-color: #fefefe;
box-shadow: 0 6px 18px 0 rgba(9,32,76,.035);
}
.Blog .comments ol > li > .comment-replies {
padding: 12px 15px 15px 15px;
margin-top: 15px;
background-color: #f9f9f9;
border-radius:5px;
}
.Blog .comments ol > li > .comment-replies ..avatar-image-container{
top: 25px;
position: relative;}
.Blog .comments .comment-header span.icon.user.blog-author {
background: url(https://cdn0.iconfinder.com/data/icons/ecommerce-business/24/Artboard_11-16.png) bottom center no-repeat;
height: 16px;
display: inline-block;
width: 16px;
margin-left: 5px;
}
*/yorumlar bitiş */
.blog__sidebar .widget-content{font-size: 19px; margin-top: 15px;
font-weight: 400;
line-height: 1.6;
letter-spacing: 0;}
.status-msg-wrap{margin-top:20px;}
.widget{margin-bottom:20px}
.widget h2{font-weight: 600;
line-height: 1.3;
letter-spacing: -.02em; font-size:26px}
.widget-item-control{display:none}
.comments h4{margin-bottom:25px}
.header__logo{width:100%}
a.button{margin-top:10px}
h2.blog-post__title{font-size:28px}
.blog-post__date{margin-bottom:15px}
.footer .wrap{padding: 40px 20px 50px;}
@media print, screen and (max-width: 860px) {
.blog-post__content{padding:0}}
@media print, screen and (max-width: 860px) {
#xsidebar {max-width:99%; overflow:hidden}
#xsidebar #syorumlar{max-width:½99 !important; overflow:hidden}
}
</style>
<b:if cond='data:blog.pageType == "item"'>
<style>.blog-post__content img{padding-bottom:15px}
</style>
</b:if>
<b:if cond='data:blog.pageType != "item"'>
</b:if>
<b:switch var='data:blog.pageType'>
<b:case value='static_page'/>
<b:case value='item'/>
<b:default/>
<style>.blog-post__content img {display:none}</style></b:switch>
<meta expr:content='data:post.lastUpdatedISO8601' property='article:last-modified'/>
<style>
body.dark {background:#212121 !important; color: #f9f9f9;}
body.dark .header{background:#424242}
body.dark a, body.dark h1, body.dark h2, body.dark h3{color: #f9f9f9;}
body.dark .blog {background:#212121 !important; color: #f9f9f9;}
body.dark .blog-post__content{background:#424242}
body.dark .footer{background:#424242}
body.dark .footer__credit{background:#616161}
body.dark .footer__text{color:#f9f9f9}
body.dark #comments{background:#424242}
body.dark #comments a.comment-reply{background:#616161; color: #f9f9f9;}
body.dark ul.trail-items a{color:#f9f9f9}
body.darkclass h3,
body.darkclass a {
/*test*/
}
body.dark .blog-post__content pre{background:#212121; margin-top:15px; margin-bottom:15px; color:#f9f9f9;}
body.dark #xsidebar .widget {
margin-bottom: 20px;
background:#424242;
padding: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
#comments .comment-content{overflow:hidden}
@media only screen and (max-width:768px){ body.dark .blog-post__content{padding:20px}
}
#xsidebar .widget {
margin-bottom: 20px;
background: #fff;
padding: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
input[type=button], input[type=submit], input[type=reset] {-webkit-appearance: none;
display: inline-block;
text-align: center;
border-radius: 2px;
line-height: 19px;
cursor: pointer;
margin-left: -1px;
padding: 4px 15px;
border: 1px solid #c6c6c6;
color: #000;
text-decoration: none;
font-family: sans-serif;
font-size: 13px;
margin-right: 5px;
background: #fff;}
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover{background:#f7f7f7}
</style>
<b:if cond='data:blog.url == "https://www.zaferzent.com/p/blogger-kod-rehberi.html"'>
<style>#xsidebar{display:none}@media only screen and (min-width:1024px){.blog__posts{float:left;width:100%}}</style>
</b:if>
<b:if cond='data:blog.url == "https://www.zaferzent.com/p/twitter-gunlugum.html"'>
<style>#xsidebar{display:none}@media only screen and (min-width:1024px){.blog__posts{float:left;width:100%}}</style>
</b:if>
<b:if cond='data:blog.pageType != "item"'>
<style>#HTML3{display:none}</style></b:if>
<style>#HTML3{display:none}/**içindekiler kutusu**/</style>
<script>(function(root,factory){if(typeof define==='function'&&define.amd){define([],factory);}else if(typeof exports==='object'){module.exports=factory();}else{factory();}}(this,function(){var domNode='';var maxTweets=20;var parseLinks=true;var queue=[];var inProgress=false;var printTime=true;var printUser=true;var formatterFunction=null;var supportsClassName=true;var showRts=true;var customCallbackFunction=null;var showInteractionLinks=true;var showImages=false;var useEmoji=false;var targetBlank=true;var lang='en';var permalinks=true;var dataOnly=false;var script=null;var scriptAdded=false;function handleTweets(tweets){if(customCallbackFunction===null){var x=tweets.length;var n=0;var element=document.getElementById(domNode);var html='<ul>';while(n<x){html+='<li>'+tweets[n]+'</li>';n++;}
html+='</ul>';element.innerHTML=html;}else{customCallbackFunction(tweets);}}
function strip(data){return data.replace(/<b[^>]*>(.*?)<\/b>/gi,function(a,s){return s;}).replace(/class="(?!(tco-hidden|tco-display|tco-ellipsis))+.*?"|data-query-source=".*?"|dir=".*?"|rel=".*?"/gi,'');}
function targetLinksToNewWindow(el){var links=el.getElementsByTagName('a');for(var i=links.length-1;i>=0;i--){links[i].setAttribute('target','_blank');}}
function getElementsByClassName(node,classname){var a=[];var regex=new RegExp('(^| )'+classname+'( |$)');var elems=node.getElementsByTagName('*');for(var i=0,j=elems.length;i<j;i++){if(regex.test(elems[i].className)){a.push(elems[i]);}}
return a;}
function extractImageUrl(image_data){if(image_data!==undefined&&image_data.innerHTML.indexOf('data-srcset')>=0){var data_src=image_data.innerHTML.match(/data-srcset="([A-z0-9%_\.-]+)/i)[0];return decodeURIComponent(data_src).split('"')[1];}}
var twitterFetcher={fetch:function(config){if(config.maxTweets===undefined){config.maxTweets=20;}
if(config.enableLinks===undefined){config.enableLinks=true;}
if(config.showUser===undefined){config.showUser=true;}
if(config.showTime===undefined){config.showTime=true;}
if(config.dateFunction===undefined){config.dateFunction='default';}
if(config.showRetweet===undefined){config.showRetweet=true;}
if(config.customCallback===undefined){config.customCallback=null;}
if(config.showInteraction===undefined){config.showInteraction=true;}
if(config.showImages===undefined){config.showImages=false;}
if(config.useEmoji===undefined){config.useEmoji=false;}
if(config.linksInNewWindow===undefined){config.linksInNewWindow=true;}
if(config.showPermalinks===undefined){config.showPermalinks=true;}
if(config.dataOnly===undefined){config.dataOnly=false;}
if(inProgress){queue.push(config);}else{inProgress=true;domNode=config.domId;maxTweets=config.maxTweets;parseLinks=config.enableLinks;printUser=config.showUser;printTime=config.showTime;showRts=config.showRetweet;formatterFunction=config.dateFunction;customCallbackFunction=config.customCallback;showInteractionLinks=config.showInteraction;showImages=config.showImages;useEmoji=config.useEmoji;targetBlank=config.linksInNewWindow;permalinks=config.showPermalinks;dataOnly=config.dataOnly;var head=document.getElementsByTagName('head')[0];if(script!==null){head.removeChild(script);}
script=document.createElement('script');script.type='text/javascript';if(config.list!==undefined){script.src='https://syndication.twitter.com/timeline/list?'+'callback=__twttrf.callback&dnt=false&list_slug='+
config.list.listSlug+'&screen_name='+config.list.screenName+'&suppress_response_codes=true&lang='+(config.lang||lang)+'&rnd='+Math.random();}else if(config.profile!==undefined){script.src='https://syndication.twitter.com/timeline/profile?'+'callback=__twttrf.callback&dnt=false'+'&screen_name='+config.profile.screenName+'&suppress_response_codes=true&lang='+(config.lang||lang)+'&rnd='+Math.random();}else if(config.likes!==undefined){script.src='https://syndication.twitter.com/timeline/likes?'+'callback=__twttrf.callback&dnt=false'+'&screen_name='+config.likes.screenName+'&suppress_response_codes=true&lang='+(config.lang||lang)+'&rnd='+Math.random();}else{script.src='https://cdn.syndication.twimg.com/widgets/timelines/'+
config.id+'?&lang='+(config.lang||lang)+'&callback=__twttrf.callback&'+'suppress_response_codes=true&rnd='+Math.random();}
head.appendChild(script);}},callback:function(data){if(data===undefined||data.body===undefined){inProgress=false;if(queue.length>0){twitterFetcher.fetch(queue[0]);queue.splice(0,1);}
return;}
if(!useEmoji){data.body=data.body.replace(/(<img[^c]*class="Emoji[^>]*>)|(<img[^c]*class="u-block[^>]*>)/g,'');}
if(!showImages){data.body=data.body.replace(/(<img[^c]*class="NaturalImage-image[^>]*>|(<img[^c]*class="CroppedImage-image[^>]*>))/g,'');}
if(!printUser){data.body=data.body.replace(/(<img[^c]*class="Avatar"[^>]*>)/g,'');}
var div=document.createElement('div');div.innerHTML=data.body;if(typeof(div.getElementsByClassName)==='undefined'){supportsClassName=false;}
function swapDataSrc(element){var avatarImg=element.getElementsByTagName('img')[0];avatarImg.src=avatarImg.getAttribute('data-src-2x');return element;}
var tweets=[];var authors=[];var times=[];var images=[];var rts=[];var tids=[];var permalinksURL=[];var x=0;if(supportsClassName){var tmp=div.getElementsByClassName('timeline-Tweet');while(x<tmp.length){if(tmp[x].getElementsByClassName('timeline-Tweet-retweetCredit').length>0){rts.push(true);}else{rts.push(false);}
if(!rts[x]||rts[x]&&showRts){tweets.push(tmp[x].getElementsByClassName('timeline-Tweet-text')[0]);tids.push(tmp[x].getAttribute('data-tweet-id'));if(printUser){authors.push(swapDataSrc(tmp[x].getElementsByClassName('timeline-Tweet-author')[0]));}
times.push(tmp[x].getElementsByClassName('dt-updated')[0]);permalinksURL.push(tmp[x].getElementsByClassName('timeline-Tweet-timestamp')[0]);if(tmp[x].getElementsByClassName('timeline-Tweet-media')[0]!==undefined){images.push(tmp[x].getElementsByClassName('timeline-Tweet-media')[0]);}else{images.push(undefined);}}
x++;}}else{var tmp=getElementsByClassName(div,'timeline-Tweet');while(x<tmp.length){if(getElementsByClassName(tmp[x],'timeline-Tweet-retweetCredit').length>0){rts.push(true);}else{rts.push(false);}
if(!rts[x]||rts[x]&&showRts){tweets.push(getElementsByClassName(tmp[x],'timeline-Tweet-text')[0]);tids.push(tmp[x].getAttribute('data-tweet-id'));if(printUser){authors.push(swapDataSrc(getElementsByClassName(tmp[x],'timeline-Tweet-author')[0]));}
times.push(getElementsByClassName(tmp[x],'dt-updated')[0]);permalinksURL.push(getElementsByClassName(tmp[x],'timeline-Tweet-timestamp')[0]);if(getElementsByClassName(tmp[x],'timeline-Tweet-media')[0]!==undefined){images.push(getElementsByClassName(tmp[x],'timeline-Tweet-media')[0]);}else{images.push(undefined);}}
x++;}}
if(tweets.length>maxTweets){tweets.splice(maxTweets,(tweets.length-maxTweets));authors.splice(maxTweets,(authors.length-maxTweets));times.splice(maxTweets,(times.length-maxTweets));rts.splice(maxTweets,(rts.length-maxTweets));images.splice(maxTweets,(images.length-maxTweets));permalinksURL.splice(maxTweets,(permalinksURL.length-maxTweets));}
var arrayTweets=[];var x=tweets.length;var n=0;if(dataOnly){while(n<x){arrayTweets.push({tweet:tweets[n].innerHTML,author:authors[n]?authors[n].innerHTML:'Unknown Author',author_data:{profile_url:authors[n]?authors[n].querySelector('[data-scribe="element:user_link"]').href:null,profile_image:authors[n]?authors[n].querySelector('[data-scribe="element:avatar"]').getAttribute('data-src-1x'):null,profile_image_2x:authors[n]?authors[n].querySelector('[data-scribe="element:avatar"]').getAttribute('data-src-2x'):null,screen_name:authors[n]?authors[n].querySelector('[data-scribe="element:screen_name"]').title:null,name:authors[n]?authors[n].querySelector('[data-scribe="element:name"]').title:null},time:times[n].textContent,timestamp:times[n].getAttribute('datetime').replace('+0000','Z').replace(/([\+\-])(\d\d)(\d\d)/,'$1$2:$3'),image:extractImageUrl(images[n]),rt:rts[n],tid:tids[n],permalinkURL:(permalinksURL[n]===undefined)?'':permalinksURL[n].href});n++;}}else{while(n<x){if(typeof(formatterFunction)!=='string'){var datetimeText=times[n].getAttribute('datetime');var newDate=new Date(times[n].getAttribute('datetime').replace(/-/g,'/').replace('T',' ').split('+')[0]);var dateString=formatterFunction(newDate,datetimeText);times[n].setAttribute('aria-label',dateString);if(tweets[n].textContent){if(supportsClassName){times[n].textContent=dateString;}else{var h=document.createElement('p');var t=document.createTextNode(dateString);h.appendChild(t);h.setAttribute('aria-label',dateString);times[n]=h;}}else{times[n].textContent=dateString;}}
var op='';if(parseLinks){if(targetBlank){targetLinksToNewWindow(tweets[n]);if(printUser){targetLinksToNewWindow(authors[n]);}}
if(printUser){op+='<div class="user">'+strip(authors[n].innerHTML)+'</div>';}
op+='<p class="tweet">'+strip(tweets[n].innerHTML)+' ';if(printTime){if(permalinks){op+='<a class="time" href="'+permalinksURL[n]+'">'+times[n].getAttribute('aria-label')+'</a></p>';}else{op+='<p class="timePosted">'+
times[n].getAttribute('aria-label')+'</p>';}}}else{if(tweets[n].textContent){if(printUser){op+='<p class="user">'+authors[n].textContent+'</p>';}
op+='<p class="tweet">'+tweets[n].textContent+'</p>';if(printTime){op+='<p class="timePosted">'+times[n].textContent+'</p>';}}else{if(printUser){op+='<p class="user">'+authors[n].textContent+'</p>';}
op+='<p class="tweet">'+tweets[n].textContent+'</p>';if(printTime){op+='<p class="timePosted">'+times[n].textContent+'</p>';}}}
if(showInteractionLinks){op+='<p class="interact"><a href="https://twitter.com/intent/'+'tweet?in_reply_to='+tids[n]+'" class="twitter_reply_icon"'+
(targetBlank?' target="_blank">':'>')+'Reply</a><a href="https://twitter.com/intent/retweet?'+'tweet_id='+tids[n]+'" class="twitter_retweet_icon"'+
(targetBlank?' target="_blank">':'>')+'Retweet</a>'+'<a href="https://twitter.com/intent/favorite?tweet_id='+
tids[n]+'" class="twitter_fav_icon"'+
(targetBlank?' target="_blank">':'>')+'Favorite</a></p>';}
if(showImages&&images[n]!==undefined&&extractImageUrl(images[n])!==undefined){op+='<div class="media">'+'<img src="'+extractImageUrl(images[n])+'" alt="Image from tweet" />'+'</div>';}
if(showImages){arrayTweets.push(op);}else if(!showImages&&tweets[n].textContent.length){arrayTweets.push(op);}
n++;}}
handleTweets(arrayTweets);inProgress=false;if(queue.length>0){twitterFetcher.fetch(queue[0]);queue.splice(0,1);}}};window.__twttrf=twitterFetcher;window.twitterFetcher=twitterFetcher;return twitterFetcher;}));
var configProfile = {
"profile": {"screenName": 'webgunlugu'},
"domId": 'tweets',
"maxTweets": 20,
"enableLinks": true,
"showUser": false,
"showTime": true,
"showImages": false,
"lang": 'tr'
};
twitterFetcher.fetch(configProfile);
</script>
</head>
<body class='loading body--header-standard body--header-above buttons--circular' data-page-url='/' data-site-url='https://www.zaferzent.com'>
<header class='header'>
<div class='wrap'>
<div class='header__content'>
<!-- Site title and logo -->
<a class='header__logo' href='/' title='Web Günlüğü'>
<h1>Web Günlüğü</h1>
<!--<img class='header__logo__img' data-cms-original-src='/images/logo.png' src='http://d1qmdf3vop2l07.cloudfront.net/enigmatic-tuba.cloudvent.net/compressed/e1c0aeb11d9e1291bf874e919ec7fee9.png'/>-->
<p style='display:none'>blogger ipuçları, eklentileri ve temalarının yer aldığı web günlüğü</p>
</a>
<div class='menu'>
<div class='menu__toggle js-menu-toggle'>
<div class='menu__toggle__icon'><span/></div>
</div>
<b:section class='menu__wrap' id='menu' maxwidgets='1' showaddelement='no'>
<b:widget id='PageList1' locked='false' title='My Page' type='PageList' version='1'>
<b:widget-settings>
<b:widget-setting name='pageListJson'><![CDATA[{'home': {'href': 'https://www.zaferzent.com/', 'title': 'Ana Sayfa', 'position': 0}, '6382543924258095835': {'href': 'https://www.zaferzent.com/p/blogger.html', 'title': 'Blogger', 'position': 1}, '3775467454933662052': {'href': 'https://www.zaferzent.com/p/arsiv.html', 'title': 'Ar\u015fiv', 'position': 2}, '213693941365067443': {'href': 'https://www.zaferzent.com/p/iletisim.html', 'title': '\u0130leti\u015fim', 'position': 3}}]]></b:widget-setting>
<b:widget-setting name='homeTitle'>Ana Sayfa</b:widget-setting>
</b:widget-settings>
<b:includable id='main'>
<b:if cond='data:title != ""'/>
<b:if cond='data:mobile'>
<select expr:id='data:widget.instanceId + "_select"'>
<b:loop values='data:links' var='link'>
<b:if cond='data:link.isCurrentPage'>
<option expr:value='data:link.href' selected='selected'><data:link.title/></option>
<b:else/>
<option expr:value='data:link.href'><data:link.title/></option>
</b:if>
</b:loop>
</select>
<b:else/>
<ul aria-expanded='false' class='menu__list'>
<b:loop values='data:links' var='link'>
<b:if cond='data:link.isCurrentPage'>
<li class='menu__list__item active-link'><a class='menu__list__item__link aktif' expr:href='data:link.href'><data:link.title/></a></li>
<b:else/>
<li class='menu__list__item'><a class='menu__list__item__link' expr:href='data:link.href'><data:link.title/></a></li>
</b:if>
</b:loop>
<style>.search {
position: relative;
}
.search input {
position: absolute;
right: 0;
width: 0;
top: 0;
height:30px;
display:none;
margin-right:20px;
border:none
max-width: 380px;
border:1px solid #6C7A89;
border-radius:5px;
width:380px; padding:3px;
font-size:15px;
color:#6C7A89;
}
::-webkit-input-placeholder { /* Edge */
color: #6C7A89 !important;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
color: #6C7A89 !important;
}
::placeholder {
color: #6C7A89 !important;
}
</style>
<li class='menu__list__item'><form action='/search' class='search' method='get'><a class='menu__list__item__link fal fa-search ara' style=''/>
<input class='s' name='q' placeholder='arama yapınız' type='text'/>
</form></li>
<li class='menu__list__item' style=' '><a class='button menu__button js-browse' href='/'>Diğer</a></li>
<li class='menu__list__item'>
<span>
<a class='normalmode menu__list__item__link'><i class='dark fal fa-sun'/></a>
<a class='darkmode menu__list__item__link'><i class='light fal fa-moon'/></a></span>
</li>
</ul>
</b:if>
</b:includable>
</b:widget>
</b:section>
</div>
<span class='widget-item-control'>
<a class='item-control blog-admin' href='https://www.blogger.com/rearrange?blogID=523714864558755043&widgetType=HTML&widgetId=PageList1&action=editWidget&sectionId=xsidebar' rel='nofollow' style='display:none'>Menüyü Düzenle</a></span>
</div><!-- .access-inner -->
</div><!-- #access -->
</header><!-- #header -->
<div class='page'>
<div class='page__content' data-page-title='Blog – Jekyll Themes'>
<section class='blog blog--standard blog--shadows'>
<div class='wrap wrap--row'>
<div class='column blog__posts'>
<b:section class='articles' id='articles' showaddelement='no'>
<b:widget id='Blog1' locked='true' title='Blog Kayıtları' type='Blog' version='1'>
<b:widget-settings>
<b:widget-setting name='commentLabel'>Comments</b:widget-setting>
<b:widget-setting name='showShareButtons'>true</b:widget-setting>
<b:widget-setting name='authorLabel'>by</b:widget-setting>
<b:widget-setting name='disableGooglePlusShare'>true</b:widget-setting>
<b:widget-setting name='style.unittype'>TextAndImage</b:widget-setting>
<b:widget-setting name='timestampLabel'>Tarih:</b:widget-setting>
<b:widget-setting name='reactionsLabel'/>
<b:widget-setting name='showAuthorProfile'>true</b:widget-setting>
<b:widget-setting name='style.layout'>1x1</b:widget-setting>
<b:widget-setting name='showLocation'>false</b:widget-setting>
<b:widget-setting name='showTimestamp'>true</b:widget-setting>
<b:widget-setting name='postsPerAd'>1</b:widget-setting>
<b:widget-setting name='style.bordercolor'>#ffffff</b:widget-setting>
<b:widget-setting name='backlinksLabel'/>
<b:widget-setting name='showDateHeader'>true</b:widget-setting>
<b:widget-setting name='style.textcolor'>#000000</b:widget-setting>
<b:widget-setting name='showCommentLink'>true</b:widget-setting>
<b:widget-setting name='style.urlcolor'>#008000</b:widget-setting>
<b:widget-setting name='showAuthor'>true</b:widget-setting>
<b:widget-setting name='style.linkcolor'>#0000ff</b:widget-setting>
<b:widget-setting name='style.bgcolor'>#ffffff</b:widget-setting>
<b:widget-setting name='showLabels'>true</b:widget-setting>
<b:widget-setting name='postLabelsLabel'>Tags</b:widget-setting>
<b:widget-setting name='showBacklinks'>false</b:widget-setting>
<b:widget-setting name='showInlineAds'>false</b:widget-setting>
<b:widget-setting name='showReactions'>false</b:widget-setting>
</b:widget-settings>
<b:includable id='main' var='top'>
<!-- posts -->
<div class='blog-posts hfeed'>
<!--breadcrumbs start-->
<b:if cond='data:blog.pageType == "item"'>
<p class='breadcrumbs'>
<span class='post-labels'>
<a expr:href='data:blog.homepageUrl' rel='tag'>Anasayfa</a> »
<b:loop values='data:posts' var='post'>
<b:if cond='data:post.labels'>
<b:loop values='data:post.labels' var='label'>
<b:if cond='data:label.isLast == true'>
<a expr:href='data:label.url' rel='tag'><data:label.name/></a>
</b:if>
</b:loop>
<b:else/>
» labelled
</b:if>
<!--» <span><<data:post.title/></span>-->
</b:loop>
</span>
</p>
</b:if>
<b:if cond='data:blog.pageType == "static_page"'>
<p class='breadcrumbs'>
<a expr:href='data:blog.homepageUrl'>Anasayfa</a> » <data:blog.pageName/>
</p>
</b:if>
<b:if cond='data:blog.pageType == "archive"'>
<p class='breadcrumbs'>
<a expr:href='data:blog.homepageUrl'>Anasayfa</a> » <data:blog.pageName/>
</p>
</b:if>
<b:if cond='data:blog.searchLabel'>
<p class='breadcrumbs'>
<a expr:href='data:blog.homepageUrl'>Anasayfa</a> » <data:blog.pageName/>
</p>
</b:if>
<style>@media only screen and (max-width:768){.breadcrumbs{display:none}} .breadcrumbs{overflow:hidden; margin:20px 0 20px 0 !important}.blog-post{margin-top:0}</style>
<b:if cond='data:blog.pageType != "error_page"'>
<style>.status-msg-wrap{display:none}</style>
</b:if>
<b:switch var='data:blog.pageType'>
<b:case value='static_page'/>
<style>.blog-post{margin-top:0}</style>
<b:case value='item'/>
<style>.blog-post{margin-top:0} .blog__sidebar {
margin-top: 70px;
}</style>
<b:default/>
<style>.blog-post{margin-top:40px} </style>
</b:switch>
<!--breadcrumbs end-->
<b:include data='top' name='status-message'/>
<data:defaultAdStart/>
<b:loop values='data:posts' var='post'>
<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == "static_page"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
<b:if cond='data:post.includeAd'>
<b:if cond='data:post.isFirstPost'>
<data:defaultAdEnd/>
<b:else/>
<data:adEnd/>
</b:if>
<data:adCode/>
<data:adStart/>
</b:if>
<b:if cond='data:post.trackLatency'>
<data:post.latencyJs/>
</b:if>
</b:loop>
<data:adEnd/>
</div>
<!-- navigation -->
<b:include name='nextprev'/>
<b:if cond='data:top.showStars'>
<script src='http://www.google.com/jsapi' type='text/javascript'/>
<script type='text/javascript'>
google.load("annotations", "1", {"locale": "<data:top.languageCode/>"});
function initialize() {
google.annotations.setApplicationId(<data:top.blogspotReviews/>);
google.annotations.createAll();
google.annotations.fetch();
}
google.setOnLoadCallback(initialize);
</script>
</b:if>
<b:if cond='data:isReSearchEnabled'>
<script src='http://www.google.com/jsapi' type='text/javascript'/>
<data:reSearchJs/>
<script type='text/javascript'>
google.load('search', '1');
function reSearchInit() {
var blogSearcher = new google.search.BlogSearch();
var blogHomepageUrl = '<data:blogHomepageUrl/>';
var adCodeUri = '<data:reSearchAdCodeUri/>';
var referrer = document.referrer;
var reSearch = new BLOG_ReSearch(blogSearcher,
blogHomepageUrl,
adCodeUri,
referrer);
reSearch.run();
};
google.setOnLoadCallback(reSearchInit);
</script>
</b:if>
</b:includable>
<b:includable id='aboutPostAuthor'>
<div class='author-name'>
<a class='g-profile' expr:href='data:post.author.profileUrl' rel='author' title='author profile'>
<span>
<data:post.author.name/>
</span>
</a>
</div>
<div>
<span class='author-desc'>
<data:post.author.aboutMe/>
</span>
</div>
</b:includable>
<b:includable id='addComments'>
<a expr:href='data:post.commentsUrl' expr:onclick='data:post.commentsUrlOnclick'>
<b:message name='messages.postAComment'/>
</a>
</b:includable>
<b:includable id='backlinkDeleteIcon' var='backlink'>
<span expr:class='"item-control " + data:backlink.adminClass'>
<a expr:href='data:backlink.deleteUrl' expr:title='data:top.deleteBacklinkMsg'>
<img src='http://www.blogger.com/img/icon_delete13.gif'/>
</a>
</span>
</b:includable>
<b:includable id='backlinks' var='post'>
<a name='links'/>
<h4>
<data:post.backlinksLabel/>
</h4>
<b:if cond='data:post.numBacklinks != 0'>
<dl class='comments-block' id='comments-block'>
<b:loop values='data:post.backlinks' var='backlink'>
<div class='collapsed-backlink backlink-control'>
<dt class='comment-title'>
<span class='backlink-toggle-zippy'>
 
</span>
<a expr:href='data:backlink.url' rel='nofollow'>
<data:backlink.title/>
</a>
<b:include data='backlink' name='backlinkDeleteIcon'/>
</dt>
<dd class='comment-body collapseable'>
<data:backlink.snippet/>
</dd>
<dd class='comment-footer collapseable'>
<span class='comment-author'>
<data:post.authorLabel/>
<data:backlink.author/>
</span>
<span class='comment-timestamp'>
<data:post.timestampLabel/>
<data:backlink.timestamp/>
</span>
</dd>
</div>
</b:loop>
</dl>
</b:if>
<p class='comment-footer'>
<a class='comment-link' expr:href='data:post.createLinkUrl' expr:id='data:widget.instanceId + "_backlinks-create-link"' target='_blank'>
<data:post.createLinkLabel/>
</a>
</p>
</b:includable>
<b:includable id='blogThisShare'>
<b:with value='"window.open(this.href, \"_blank\", \"height=270,width=475\"); return false;"' var='onclick'>
<b:include name='platformShare'/>
</b:with>
</b:includable>
<b:includable id='breadcrumb' var='posts'>
</b:includable>
<b:includable id='bylineByName' var='byline'>
<b:switch var='data:byline.name'>
<b:case value='share'/>
<b:include cond='data:post.shareUrl' name='postShareButtons'/>
<b:case value='comments'/>
<b:include cond='data:post.allowComments' name='postCommentsLink'/>
<b:case value='location'/>
<b:include cond='data:post.location' name='postLocation'/>
<b:case value='timestamp'/>
<b:include cond='not data:view.isPage' name='postTimestamp'/>
<b:case value='author'/>
<b:include name='postAuthor'/>
<b:case value='labels'/>
<b:include cond='data:post.labels' name='postLabels'/>
<b:case value='icons'/>
<b:include cond='data:post.emailPostUrl' name='emailPostIcon'/>
</b:switch>
</b:includable>
<b:includable id='bylineRegion' var='regionItems'>
<b:loop values='data:regionItems' var='byline'>
<b:include data='byline' name='bylineByName'/>
</b:loop>
</b:includable>
<b:includable id='comment-form' var='post'>
<div class='comment-form'>
<a name='comment-form'/>
<p>
<data:blogCommentMessage/>
</p>
<data:blogTeamBlogMessage/>
<a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
<iframe allowtransparency='true' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='275' id='comment-editor' name='comment-editor' scrolling='auto' src='' width='100%'/>
<data:post.friendConnectJs/>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe('<data:post.appRpcRelayPath/>', '<data:post.communityId/>');
</script>
</div>
</b:includable>
<b:includable id='commentAuthorAvatar'>
<div class='avatar-image-container'>
<img class='author-avatar' expr:src='data:comment.authorAvatarSrc' height='35' width='35'/>
</div>
</b:includable>
<b:includable id='commentDeleteIcon' var='comment'>
<span expr:class='"item-control " + data:comment.adminClass'>
<a expr:href='data:comment.deleteUrl' expr:title='data:top.deleteCommentMsg'>
<img src='http://www.blogger.com/img/icon_delete13.gif'/>
</a>
</span>
</b:includable>
<b:includable id='commentForm' var='post'>
<div class='comment-form'>
<a name='comment-form'/>
<h4 id='comment-post-message'><data:messages.postAComment/></h4>
<b:if cond='data:this.messages.blogComment != ""'>
<p><data:this.messages.blogComment/></p>
</b:if>
<b:include data='post' name='commentFormIframeSrc'/>
<iframe allowtransparency='allowtransparency' class='blogger-iframe-colorize blogger-comment-from-post' expr:height='data:cmtIframeInitialHeight ?: "90px"' frameborder='0' id='comment-editor' name='comment-editor' src='' width='100%'/>
<data:post.cmtfpIframe/>
<script type='text/javascript'>
BLOG_CMT_createIframe('<data:post.appRpcRelayPath/>');
</script>
</div>
</b:includable>
<b:includable id='commentFormIframeSrc' var='post'>
<a expr:href='data:post.commentFormIframeSrc' id='comment-editor-src'/>
</b:includable>
<b:includable id='commentItem' var='comment'>
<div class='comment' expr:id='"c" + data:comment.id'>
<b:include cond='data:blog.enabledCommentProfileImages' name='commentAuthorAvatar'/>
<div class='comment-block'>
<div class='comment-author'>
<b:if cond='data:comment.authorUrl'>
<b:message name='messages.authorSaidWithLink'>
<b:param expr:value='data:comment.author' name='authorName'/>
<b:param expr:value='data:comment.authorUrl' name='authorUrl'/>
</b:message>
<b:else/>
<b:message name='messages.authorSaid'>
<b:param expr:value='data:comment.author' name='authorName'/>
</b:message>
</b:if>
</div>
<div expr:class='"comment-body" + (data:comment.isDeleted ? " deleted" : "")'>
<data:comment.body/>
</div>
<div class='comment-footer'>
<span class='comment-timestamp'>
<a expr:href='data:comment.url' title='comment permalink'>
<data:comment.timestamp/>
</a>
<b:include data='comment' name='commentDeleteIcon'/>
</span>
</div>
</div>
</div>
</b:includable>
<b:includable id='commentList' var='comments'>
<div id='comments-block'>
<b:loop values='data:comments' var='comment'>
<b:include data='comment' name='commentItem'/>
</b:loop>
</div>
</b:includable>
<b:includable id='commentPicker' var='post'>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threadedComments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:includable>
<b:includable id='comment_count_picker' var='post'>
<b:if cond='data:post.commentSource == 1'>
<span class='cmt_count_iframe_holder' expr:data-count='data:post.numComments' expr:data-onclick='data:post.addCommentOnclick' expr:data-post-url='data:post.url' expr:data-url='data:post.canonicalUrl'>
</span>
<b:else/>
<a class='comment-link' expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'>
<data:post.commentLabelFull/>
:
</a>
</b:if>
</b:includable>
<b:includable id='comment_picker' var='post'>
<b:if cond='data:post.commentSource == 1'>
<b:include data='post' name='iframe_comments'/>
<b:else/>
<b:if cond='data:post.showThreadedComments'>
<b:include data='post' name='threaded_comments'/>
<b:else/>
<b:include data='post' name='comments'/>
</b:if>
</b:if>
</b:includable>
<b:includable id='comments' var='post'>
<div class='comments' id='comments'>
<a name='comments'/>
<b:if cond='data:post.allowComments'>
<h4>
Yorumlar
</h4>
<b:if cond='data:post.commentPagingRequired'>
<span class='paging-control-container'>
<b:if cond='data:post.hasOlderLinks'>
<a expr:class='data:post.oldLinkClass' expr:href='data:post.oldestLinkUrl'>
<data:post.oldestLinkText/>
</a>
 
<a expr:class='data:post.oldLinkClass' expr:href='data:post.olderLinkUrl'>
<data:post.olderLinkText/>
</a>
 
</b:if>
<data:post.commentRangeText/>
<b:if cond='data:post.hasNewerLinks'>
 
<a expr:class='data:post.newLinkClass' expr:href='data:post.newerLinkUrl'>
<data:post.newerLinkText/>
</a>
 
<a expr:class='data:post.newLinkClass' expr:href='data:post.newestLinkUrl'>
<data:post.newestLinkText/>
</a>
</b:if>
</span>
</b:if>
<div expr:id='data:widget.instanceId + "_comments-block-wrapper"'>
<dl expr:class='data:post.avatarIndentClass' id='comments-block'>
<b:loop values='data:post.comments' var='comment'>
<dt expr:class='"comment-author " + data:comment.authorClass' expr:id='data:comment.anchorName'>
<b:if cond='data:comment.favicon'>
<img expr:src='data:comment.favicon' height='16px' style='margin-bottom:-2px;' width='16px'/>
</b:if>
<a expr:name='data:comment.anchorName'/>
<b:if cond='data:blog.enabledCommentProfileImages'>
<data:comment.authorAvatarImage/>
</b:if>
<b:if cond='data:comment.authorUrl'>
<a expr:href='data:comment.authorUrl' rel='nofollow'>
<data:comment.author/>
</a>