-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-165.htm
1471 lines (1281 loc) · 95 KB
/
index-165.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<!--[if !IE]>
<html class="no-js non-ie" lang="fi"> <![endif]-->
<!--[if IE 7 ]>
<html class="no-js ie7" lang="fi"> <![endif]-->
<!--[if IE 8 ]>
<html class="no-js ie8" lang="fi"> <![endif]-->
<!--[if IE 9 ]>
<html class="no-js ie9" lang="fi"> <![endif]-->
<!--[if gt IE 9]><!-->
<html class="no-js" lang="fi"> <!--<![endif]-->
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hirsala Golf - Huippukunnossa – luonnollisesti</title>
<link rel="profile" href="http://gmpg.org/xfn/11"/>
<link rel="pingback" href="https://hirsalagolf.fi/xmlrpc.php"/>
<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<script data-cfasync="false" data-pagespeed-no-defer>//<![CDATA[
var gtm4wp_datalayer_name = "dataLayer";
var dataLayer = dataLayer || [];
var gtm4wp_use_sku_instead = 0;
var gtm4wp_id_prefix = '';
var gtm4wp_remarketing = 1;
var gtm4wp_eec = 1;
var gtm4wp_classicec = false;
var gtm4wp_currency = 'EUR';
var gtm4wp_product_per_impression = 0;
var gtm4wp_needs_shipping_address = false;
//]]>
</script>
<!-- End Google Tag Manager for WordPress by gtm4wp.com -->
<!-- This site is optimized with the Yoast SEO plugin v15.3 - https://yoast.com/wordpress/plugins/seo/ -->
<meta name="description" content="Huippukunnossa – luonnollisesti" />
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<link rel="canonical" href="https://hirsalagolf.fi/" />
<link rel="next" href="https://hirsalagolf.fi/page/2/" />
<meta property="og:locale" content="fi_FI" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Hirsala Golf - Huippukunnossa – luonnollisesti" />
<meta property="og:description" content="Huippukunnossa – luonnollisesti" />
<meta property="og:url" content="https://hirsalagolf.fi/" />
<meta property="og:site_name" content="Hirsala Golf" />
<meta name="twitter:card" content="summary" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://hirsalagolf.fi/#organization","name":"Hirsala Golf","url":"https://hirsalagolf.fi/","sameAs":[],"logo":{"@type":"ImageObject","@id":"https://hirsalagolf.fi/#logo","inLanguage":"fi","url":"https://hirsalagolf.fi/wp-content/uploads/sites/38/2017/05/hirsala-golf_black.jpg","width":2717,"height":945,"caption":"Hirsala Golf"},"image":{"@id":"https://hirsalagolf.fi/#logo"}},{"@type":"WebSite","@id":"https://hirsalagolf.fi/#website","url":"https://hirsalagolf.fi/","name":"Hirsala Golf","description":"Huippukunnossa \u2013 luonnollisesti","publisher":{"@id":"https://hirsalagolf.fi/#organization"},"potentialAction":[{"@type":"SearchAction","target":"https://hirsalagolf.fi/?s={search_term_string}","query-input":"required name=search_term_string"}],"inLanguage":"fi"},{"@type":"CollectionPage","@id":"https://hirsalagolf.fi/#webpage","url":"https://hirsalagolf.fi/","name":"Hirsala Golf - Huippukunnossa \u2013 luonnollisesti","isPartOf":{"@id":"https://hirsalagolf.fi/#website"},"about":{"@id":"https://hirsalagolf.fi/#organization"},"description":"Huippukunnossa \u2013 luonnollisesti","inLanguage":"fi","potentialAction":[{"@type":"ReadAction","target":["https://hirsalagolf.fi/"]}]}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//s.w.org' />
<!-- This site uses the Google Analytics by ExactMetrics plugin v6.3.0 - Using Analytics tracking - https://www.exactmetrics.com/ -->
<script type="text/javascript" data-cfasync="false">
(window.gaDevIds=window.gaDevIds||[]).push("dNDMyYj");
var em_version = '6.3.0';
var em_track_user = true;
var em_no_track_reason = '';
var disableStr = 'ga-disable-UA-1585540-32';
/* Function to detect opted out users */
function __gaTrackerIsOptedOut() {
return document.cookie.indexOf(disableStr + '=true') > -1;
}
/* Disable tracking if the opt-out cookie exists. */
if ( __gaTrackerIsOptedOut() ) {
window[disableStr] = true;
}
/* Opt-out function */
function __gaTrackerOptout() {
document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStr] = true;
}
if ( 'undefined' === typeof gaOptout ) {
function gaOptout() {
__gaTrackerOptout();
}
}
if ( em_track_user ) {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','__gaTracker');
window.ga = __gaTracker; __gaTracker('create', 'UA-1585540-32', 'auto');
__gaTracker('set', 'forceSSL', true);
__gaTracker('send','pageview');
__gaTracker( function() { window.ga = __gaTracker; } );
} else {
console.log( "" );
(function() {
/* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */
var noopfn = function() {
return null;
};
var noopnullfn = function() {
return null;
};
var Tracker = function() {
return null;
};
var p = Tracker.prototype;
p.get = noopfn;
p.set = noopfn;
p.send = noopfn;
var __gaTracker = function() {
var len = arguments.length;
if ( len === 0 ) {
return;
}
var f = arguments[len-1];
if ( typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function' ) {
console.log( 'Not running function __gaTracker(' + arguments[0] + " ....) because you are not being tracked. " + em_no_track_reason );
return;
}
try {
f.hitCallback();
} catch (ex) {
}
};
__gaTracker.create = function() {
return new Tracker();
};
__gaTracker.getByName = noopnullfn;
__gaTracker.getAll = function() {
return [];
};
__gaTracker.remove = noopfn;
window['__gaTracker'] = __gaTracker;
window.ga = __gaTracker; })();
}
</script>
<!-- / Google Analytics by ExactMetrics -->
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/hirsalagolf.fi\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.5.6"}};
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='asteikko-auth-style-css' href='https://hirsalagolf.fi/wp-content/plugins/asteikko-auth/css/style.css?ver=1.2.4' type='text/css' media='all' />
<link rel='stylesheet' id='gp-styles-css' href='https://hirsalagolf.fi/wp-content/themes/golfpiste-kentat/style.css?ver=5.5.6' type='text/css' media='all' />
<link rel='stylesheet' id='wp-block-library-css' href='https://hirsalagolf.fi/wp-includes/css/dist/block-library/style.min.css?ver=5.5.6' type='text/css' media='all' />
<link rel='stylesheet' id='wc-block-vendors-style-css' href='https://hirsalagolf.fi/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/vendors-style.css?ver=3.6.0' type='text/css' media='all' />
<link rel='stylesheet' id='wc-block-style-css' href='https://hirsalagolf.fi/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/style.css?ver=3.6.0' type='text/css' media='all' />
<link rel='stylesheet' id='gp-widgets-front-styles-css' href='https://hirsalagolf.fi/wp-content/plugins/gp-views/assets/css/main.css?ver=5.5.6' type='text/css' media='all' />
<link rel='stylesheet' id='osd_sms_css-css' href='https://hirsalagolf.fi/wp-content/plugins/osd-social-media-sharing/includes/style.css?ver=5.5.6' type='text/css' media='all' />
<link rel='stylesheet' id='wpmenucart-icons-css' href='https://hirsalagolf.fi/wp-content/plugins/woocommerce-menu-bar-cart/css/wpmenucart-icons.css?ver=2.9.6' type='text/css' media='all' />
<link rel='stylesheet' id='wpmenucart-font-css' href='https://hirsalagolf.fi/wp-content/plugins/woocommerce-menu-bar-cart/css/wpmenucart-font.css?ver=2.9.6' type='text/css' media='all' />
<link rel='stylesheet' id='wpmenucart-css' href='https://hirsalagolf.fi/wp-content/plugins/woocommerce-menu-bar-cart/css/wpmenucart-main.css?ver=2.9.6' type='text/css' media='all' />
<style id='wpmenucart-inline-css' type='text/css'>
.et-cart-info { display:none !important; } .site-header-cart { display:none !important; }
</style>
<link rel='stylesheet' id='woocommerce-layout-css' href='https://hirsalagolf.fi/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=4.7.2' type='text/css' media='all' />
<link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://hirsalagolf.fi/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=4.7.2' type='text/css' media='only screen and (max-width: 768px)' />
<link rel='stylesheet' id='woocommerce-general-css' href='https://hirsalagolf.fi/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=4.7.2' type='text/css' media='all' />
<style id='woocommerce-inline-inline-css' type='text/css'>
.woocommerce form .form-row .required { visibility: visible; }
</style>
<link rel='stylesheet' id='exactmetrics-popular-posts-style-css' href='https://hirsalagolf.fi/wp-content/plugins/google-analytics-dashboard-for-wp/assets/css/frontend.min.css?ver=6.3.0' type='text/css' media='all' />
<link rel='stylesheet' id='child-style-css' href='https://hirsalagolf.fi/wp-content/themes/golfpiste-kentat-hirsalagolf/style.css?ver=5.5.6' type='text/css' media='all' />
<link rel='stylesheet' id='wc-bundle-style-css' href='https://hirsalagolf.fi/wp-content/plugins/woocommerce-product-bundles/assets/css/wc-pb-frontend.css?ver=5.2.4' type='text/css' media='all' />
<script type='text/javascript' src='https://hirsalagolf.fi/wp-includes/js/jquery/jquery.js?ver=1.12.4-wp' id='jquery-core-js'></script>
<script type='text/javascript' id='exactmetrics-frontend-script-js-extra'>
/* <![CDATA[ */
var exactmetrics_frontend = {"js_events_tracking":"true","download_extensions":"zip,mp3,mpeg,pdf,docx,pptx,xlsx,rar","inbound_paths":"[{\"path\":\"\\\/go\\\/\",\"label\":\"affiliate\"},{\"path\":\"\\\/recommend\\\/\",\"label\":\"affiliate\"}]","home_url":"https:\/\/hirsalagolf.fi","hash_tracking":"false"};
/* ]]> */
</script>
<script type='text/javascript' src='https://hirsalagolf.fi/wp-content/plugins/google-analytics-dashboard-for-wp/assets/js/frontend.min.js?ver=6.3.0' id='exactmetrics-frontend-script-js'></script>
<script type='text/javascript' id='wpmenucart-ajax-assist-js-extra'>
/* <![CDATA[ */
var wpmenucart_ajax_assist = {"shop_plugin":"woocommerce","always_display":""};
/* ]]> */
</script>
<script type='text/javascript' src='https://hirsalagolf.fi/wp-content/plugins/woocommerce-menu-bar-cart/javascript/wpmenucart-ajax-assist.js?ver=2.9.6' id='wpmenucart-ajax-assist-js'></script>
<script type='text/javascript' src='https://hirsalagolf.fi/wp-content/plugins/duracelltomi-google-tag-manager/js/gtm4wp-form-move-tracker.js?ver=1.11.6' id='gtm4wp-form-move-tracker-js'></script>
<script type='text/javascript' src='https://hirsalagolf.fi/wp-content/plugins/duracelltomi-google-tag-manager/js/gtm4wp-social-tracker.js?ver=1.11.6' id='gtm4wp-social-actions-js'></script>
<script type='text/javascript' src='https://hirsalagolf.fi/wp-content/plugins/duracelltomi-google-tag-manager/js/gtm4wp-woocommerce-enhanced.js?ver=1.11.6' id='gtm4wp-woocommerce-enhanced-js'></script>
<link rel="https://api.w.org/" href="https://hirsalagolf.fi/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://hirsalagolf.fi/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://hirsalagolf.fi/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.5.6" />
<meta name="generator" content="WooCommerce 4.7.2" />
<!-- Google Tag Manager for WordPress by gtm4wp.com -->
<script data-cfasync="false" data-pagespeed-no-defer>//<![CDATA[
var google_tag_params = {"pageTitle":"Hirsala Golf - Huippukunnossa \u2013 luonnollisesti","pagePostType":"frontpage","postCountOnPage":10,"postCountTotal":1105,"ecomm_prodid":[],"ecomm_pagetype":"home","ecomm_totalvalue":0};
var dataLayer_content = {"pageTitle":"Hirsala Golf - Huippukunnossa – luonnollisesti","pagePostType":"frontpage","postCountOnPage":10,"postCountTotal":1105,"ecomm_prodid":[],"ecomm_pagetype":"home","ecomm_totalvalue":0,"google_tag_params":window.google_tag_params};
dataLayer.push( dataLayer_content );//]]>
</script>
<script data-cfasync="false">//<![CDATA[
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.'+'js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-KTPMVMP');//]]>
</script>
<!-- End Google Tag Manager -->
<!-- End Google Tag Manager for WordPress by gtm4wp.com --> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript>
<link rel="icon" href="https://hirsalagolf.fi/wp-content/uploads/sites/38/2017/05/cropped-Hirsala-Golf-favicon-32x32.jpg" sizes="32x32" />
<link rel="icon" href="https://hirsalagolf.fi/wp-content/uploads/sites/38/2017/05/cropped-Hirsala-Golf-favicon-192x192.jpg" sizes="192x192" />
<link rel="apple-touch-icon" href="https://hirsalagolf.fi/wp-content/uploads/sites/38/2017/05/cropped-Hirsala-Golf-favicon-180x180.jpg" />
<meta name="msapplication-TileImage" content="https://hirsalagolf.fi/wp-content/uploads/sites/38/2017/05/cropped-Hirsala-Golf-favicon-270x270.jpg" />
<style>
.bank-button:hover {
border: 1px solid #0079c1 }
.bank-button-border {
border: 1px solid #0079c1 }
.wb_paytrail_collector_calculator_wrap {
background: #ce006d !important;
color: #ffffff !important;
}
</style>
<style type="text/css" id="wp-custom-css">
/*
Voit kirjoittaa oman CSS-koodisi tähän.
Napsauta ohjepainiketta yllä saadaksesi lisätietoja.
*/
#tee_times_search {
background: none;
border: none;
margin-bottom: 10px;
}
.tt-time-select {
display: block;
}
.tt-time-select .tt-wrapper {
display: none;
}
.page-id-2121 .post-edit{
display:none;
}
.page-id-2121 .entry-title{
display:none;
}
.page-id-2121 #wpadminbar{
display:none;
}
.related{clear:both;}
@media screen and (max-width: 650px) {
.lahtoaikavimpain .widget-inner {
width: 96% !important;
text-align: center;
}
.lahtoaikavimpain .vaalea-linkki {
padding: 10px 10px;
}
}
@media screen and (max-width: 1350px) {
.varaa-peliaika {
margin-top: -45px !important;
}
}
@media screen and (max-width: 961px) {
#menu-item-176 {
float: left;
width: 40px;
margin-bottom: 20px; }
#menu-item-176 a {
text-align: center;
padding: 0; }
#menu-item-177 {
float: left;
width: 40px;
margin-bottom: 20px;
padding: 0;
}
#menu-item-177 a {
text-align: center;
padding: 0; }
#menu-item-1661 {
float: left;
width: calc(50% - 60px);
margin-bottom: 20px; }
#menu-item-177 a {
text-align: center;
padding: 0; }
#menu-item-1661 a {
text-align: right;
padding: 0;
padding-right:10px;
}
#menu-item-1662 a {
text-align: center;
padding: 0;
}
#menu-item-1662 {
float: left;
width: 40px;
margin-bottom: 20px; }
#menu-item-177 a {
text-align: center;
padding: 0; }
#menu-item-178 {
float: left;
width: calc(50% - 60px);
margin-bottom: 40px; }
#menu-item-178 a {
padding: 0;
padding-left:10px;}
} </style>
<style>
body {
background: #ffffff;
font-family: FuturaPTBook;
font-size: 14px;
color: #4b564e; }
h1,h2,h3,h4 {
color: #4b564e; }
a {
color: #4b564e; }
a:hover, a:focus, a:active {
color: #ddac7a;
}
.entry-title a {
color: #4b564e;
}
#wrapper {
background: #ffffff; }
#container.simple,
.section.content-width,
.section-wrapper,
#wrapper,
.header-wrapper,
.long .main-nav ul,
.floating .header-wrap
{
max-width: 2000px;
}
#footer-wrapper, #footer {
background: #3B453C;
color: #e9eeef; }
#footer a {
color: #e9eeef; }
#footer h2, #footer h3, #footer h4 {
color: #e9eeef; }
.main-nav .menu {
text-align: right; }
.main-nav, .js .main-nav, .floating #header {
background: #ffffff; }
ul.menu > li, .menu-button {
color: #4b564e; }
ul.menu > li:hover, ul.menu > li:active,
.menu .current_page_item a,
.menu .current-menu-item a,
.menu .current-menu-parent a,
.menu .current-menu-ancestor a, .menu-button:hover, .menu-button.active {
background: #ffffff;
color: #4b564e;
}
.main-nav .sub-menu, .main-nav li li {
background: #3B453D; }
@media screen and (min-width: 900px) {
#wrapper {
padding-right: 0px; padding-left: 0px; }
}
@media screen and (max-width: 650px) {
.js .main-nav .menu li, .js .main-nav .menu,.js .floating .main-nav .menu {
background: #3B453D; }
}
.post-type-archive-product .menu-verkkokauppa-container{display:none;}
.widget_nav_menu {max-width:250px;}
.menu-verkkokauppa-container{
background-color: #e9eeef;
padding: 30px 60px 30px 30px;
}
.menu-verkkokauppa-container ul li{display:block; font-size:14px;}
.menu-verkkokauppa-container ul li a{font-size:14px; line-height:20px; height:20px;}
#cookie_msg{z-index:99999999 !important;}
#menu-verkkokauppa .current-menu-item > a, .sidebar-nav .current-menu-parent > a {
color: #ddac7a;
background:none;
}
#menu-verkkokauppa li a:before {
content: "/";
padding-right: 8px;
}
#menu-verkkokauppa li:hover {
color: #ddac7a;
background:none;
}
.hole-list-carousel .hole-item {
width: 100%;
}
.backLinkki {
text-align: center;
background-color: #ddac7a;
margin-bottom: 10px;
-webkit-border-radius: 5px;
border-radius: 5px;
background-clip: padding-box;
padding:5px 20px;
}
@media screen and (min-width:1341px){
.menu a {
padding: 0 0.8em;
}
}
@media screen and (max-width:1340px){
.menu a {
padding: 0 4px;
}
}
@media screen and (min-width:960px) and (max-width:1010px){
.logo img {
margin: 0 !important;
width: 115px;
}
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce a.added_to_cart {
color: #4b564e;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
color: #4b564e;
}
article + .article-thumbnail {
display: none;
}
.header-teksti a {
margin-right: 7px;
padding: 10px 15px;
}
.header-teksti a:hover {
color: #ddac7a !important;
}
#menu-item-966 { margin-right: 4%;}
@media screen and (max-width: 1100px) {
#menu-item-966 { margin-right: 0;}
}
@media screen and (max-width: 961px) {
#menu-item-966 { margin-bottom: 50px;}
.header-teksti {
left: 0;
}
.header-teksti p + p {
font-size: 0;
margin-top: -10px;
}
}
@media screen and (max-width: 650px){
.header-teksti p + p {
margin-top: 15px;
}
.header-teksti a {
padding: 0 30px;
display: block;
margin: 5px auto !important;
line-height: 2.5;
}
.lz-offline-content{display:none;}
}
body .asauth-widget-login .trayMenuContentButton {
background-color: #3b453d;
color: #ddac7a;
}
.menu a { font-weight: 400;}
.etusivu-post-list-item h4 {margin: 10px 0;}
.header-laatikko-teksti h6 a {color: #e9cbab;}
.aukiolo_sivu .opening_hours__row { margin-bottom: 5px; font-size: 16px;}
.aukiolo_sivu .updated {margin-top: 20px;}
.page-id-18 .widget_gptabswidget{display:none;}
.jasenvalikko {display: none;}
.kauppavalikko{display:block; max-width:250px;}
@media screen and (max-width: 650px){
.etusivu-post-list-item h4 {
padding: 0 20px !important;
}
.header-laatikot { top: 390px;}
}
.lahtoaikavimpain .vaalea-linkki{margin-right: 10px;}
.sponsor-10 {float: left; margin-top: -10px;}
@media screen and (max-width: 650px){
.sponsor-9, .sponsor-10 {width: 33.333%;}
}
@media screen and (min-width: 651px) and (max-width:750px){
.kauppavalikko {max-width:176px;}
}
.lahtoaikavimpain .widget-wrapper, .lahtoaikavimpain .widget-wrapper p {margin: 0;}
@media screen and (max-width: 961px){
.lahtoaikavimpain .widget-inner {
width: 600px;
}
}
.category-33 #content {display: none;}
.page-id-45 .listing-item .title {font-size: 20px;}
#footer .jakaja .widget-inner {display: none;}
.widget-container > .businessgolf { position: absolute;
width: 200px;
top: -244px;
left: 0;}
@media screen and (max-width: 961px) {
.widget-container > .businessgolf {
top: -262px;
}
}
@media screen and (max-width: 650px){
.header-teksti p {
font-size: 34px;
}
.widget-container > .businessgolf {
top: -418px;
z-index: 9999;
right: 4px;
left: auto;
width: 35%;
max-width: 150px;
}
.lahtoaikavimpain .widget-inner {
width: 100% !important;
}
}
@media screen and (max-width: 650px) and (min-width: 430px){
.widget-container > .businessgolf {
right: 0;
left: 261px;
margin-left: auto;
margin-right: auto;
}
}
.widget_gpsubmenu {max-width:250px;}
.sidebar-nav ul {margin-top: 0px;}
.sidebar .gallery img {max-width: 200px !important; border: none !important; width: 100%; height: auto;}
.sidebar .gallery .gallery-item {max-width: none;}
.gallery-caption h6 { font-family: FuturaPTDemi;
font-size: 16px;
margin-top: 10px;
margin-bottom: 5px;}
.gallery br + br {
display: block;
}
.gallery .gallery-caption {font-size: 14px;
letter-spacing: 0.6px;
line-height: 21px;}
@media screen and (max-width: 768px){
.gallery .gallery-item {width: 50% !important;}
.sidebar .gallery .gallery-item:nth-child(3), .sidebar .gallery .gallery-item:nth-child(6), .sidebar .gallery .gallery-item:nth-child(8), .sidebar .gallery .gallery-item:nth-child(10) {clear: both;}
}
@media screen and (max-width: 480px){
.gallery .gallery-item {
width: 100% !important;
}}
.header-laatikko {padding-top: 15px; padding-bottom: 15px;}
@media screen and (max-width: 650px){
.header-laatikko {padding-top: 12px; padding-bottom: 12px;}
.page-id-43 iframe {height: 200px;}
}
article a { color: #ddac7a;}
article a:hover { color: #c58849;}
.hole-map {margin-top: -340px;}
@media screen and (max-width: 961px) {
.hole-map { margin-top: 0;}
}
@media screen and (max-width: 400px) {
.hole-sponsor__logo {width: 100%;}
}
#gallery-2 img {
border: none !important;
}
.mfp-counter {right: 15px;}
.hole-navigation {margin-top: 0;}
.hole-content-wrapper {min-height: 0; height: auto !important;}
.page-id-2121 #wrapper {padding: 0;}
.page-id-2121 #tee_times_search, .page-id-2121 .tt_results .teetimegrid {margin: 0; padding: 0;}
.page-id-2121 .lz-parent-hirsalagolf, .page-id-2121 br, .page-id-2121 .zef-contact-container {display: none !important;}
.home .varaa-peliaika {margin-top: 20px !important;}
.page-id-2121 #cookie_msg {display: none !important;}
.page-id-2121 .teetimegrid .gridexpl td {
line-height: 0.8;
height: 25px;
padding: 2px 8px 3px 8px!important;
vertical-align: middle;
}
.yhteistyo {
width: 100%;
}
</style>
<link href="https://fonts.googleapis.com/css?family=Unna:400i" rel="stylesheet">
</head>
<body class="home blog theme-golfpiste-kentat woocommerce-no-js">
<!-- Segment Pixel - Advertiser Pixel - DO NOT MODIFY -->
<img src="https://secure.adnxs.com/seg?member_id=7458&add_code=76191B&t=2" width="1" height="1" style="display:none" />
<!-- End of Segment Pixel -->
<!-- Hotjar Tracking Code for www.hirsalagolf.fi -->
<script>
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:798253,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
</script>
<script type="text/javascript">
var _fiq = _fiq || [];
_fiq.unshift(['trackPageview']);
_fiq.unshift(['account', 'b17d8ede-1cf6-4748-8ce0-23b98fdfdcf1']);
(function() {
var _fi = document.createElement('script');
_fi.type = 'text/javascript';
_fi.async = true;
_fi.src = '//insight.fonecta.fi/fi.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(_fi, s);
})();
</script>
<script type="text/javascript" async src="https://bot.leadoo.com/bot/chat.js?code=4TcMRvza"></script>
<script>
/*
jQuery(document).ready(function($){
var event = $("#popup").click(function(e) {
e.stopPropagation();
e.preventDefault();
e.stopImmediatePropagation();
return false;
});
// disable right click
$("#popup").bind('contextmenu', function(e) {
e.stopPropagation();
e.preventDefault();
e.stopImmediatePropagation();
return false;
});
if(localStorage.getItem('popState11') != 'proved'){
$("#popup").delay(1000).fadeIn();
$('html, body').toggleClass('no-scroll');
localStorage.setItem('popState11','proved')
}
$('#popup-close').click(function(e) // You are clicking the close button
{
$('#popup').fadeOut(); // Now the pop up is hiden.
window.location.href= "https://hirsalagolf.fi/kauppa/";
});
$('#popup-close2').click(function(e) // You are clicking the close button
{
$('#popup').fadeOut(); // Now the pop up is hiden.
});
$('#popup').click(function(e)
{
$('#popup').fadeOut();
});
$('#close').click(function(e)
{
$('#popup').fadeOut();
});
});
*/
</script>
<!--<div id="popup" class="hirsalaPopUp2" style=""pointer-events: none; display:none;">
<div class="popUpContent" id="popUpContent" style="z-index:999999;">
<div id="close" class="close">Sulje mainos</div>
<div id="popup-close">
<div id="popoupDesktop">
<img src="http://hirsalagolf.fi/wp-content/uploads/sites/38/2018/12/etusivu-popup.jpg" alt=""/>
</div>
<div id="popoupMobile" style="display:none;">
<img src="http://hirsalagolf.fi/wp-content/uploads/sites/38/2018/12/etusivu-popup-mobiili.jpg">
</div>
</div>
</div>
</div>-->
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/fi_FI/sdk.js#xfbml=1&version=v2.4";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div id="container" class="hfeed simple only-content">
<div class="skip-container cf">
<a class="skip-link screen-reader-text focusable" href="#content">Siirry suoraan sisältöön</a>
</div>
<div id="widget-area-top" class="widget-area">
<div id='gptexteditorwidget-58' class='widget-wrapper grid logo widget_gptexteditorwidget col-940 t-col-940'><div class='widget-inner'><p><a href="https://hirsalagolf.fi/"><img loading="lazy" width="316" height="70" class="alignnone size-full wp-image-158" src="/wp-content/uploads/sites/38/2017/04/hirsalalogo2x.png" alt="" srcset="https://hirsalagolf.fi/wp-content/uploads/sites/38/2017/04/hirsalalogo2x.png 316w, https://hirsalagolf.fi/wp-content/uploads/sites/38/2017/04/hirsalalogo2x-300x66.png 300w, https://hirsalagolf.fi/wp-content/uploads/sites/38/2017/04/hirsalalogo2x-200x44.png 200w" sizes="(max-width: 316px) 100vw, 316px" /></a></p>
</div></div><div id='gptexteditorwidget-12' class='widget-wrapper grid header-teksti widget_gptexteditorwidget col-460 t-col-460'><div class='widget-inner'><p>KIITOS KAUDESTA 2021!<br />
KAUDEN 2022 PELIOIKEUDET NYT ENNAKKOTARJOUKSINA</p>
<p><a href="https://hirsalagolf.fi//pelaamaan/ajanvarausohje/">Ajanvarausohje </a><a style="background-color: rgba(75, 86, 78, 0.9); color: #e9cbab;" href="https://hirsalagolf.fi/kauppa/">Verkkokauppa</a><a style="background-color: rgba(75, 86, 78, 0.9); color: #e9cbab; margin-right: 0;" href="https://hirsalagolf.fi/premium/">Premium</a></p>
</div></div><div id='gptexteditorwidget-13' class='widget-wrapper grid header-laatikot widget_gptexteditorwidget col-940 t-col-940'><div class='widget-inner'><div class="header-laatikko">
<div class="header-laatikko-kuvake kuvake1"><img loading="lazy" class="alignnone size-full wp-image-147" src="/wp-content/uploads/sites/38/2017/04/puhb2x.png" alt="" width="60" height="60" /></div>
<div class="header-laatikko-teksti">
<h6>Caddiemaster</h6>
<p>Puh. <a href="tel:01002010">0100 2010</a> (0,98€/min+pvm)<br />
<a href="mailto:info@hirsalagolf.fi">info@hirsalagolf.fi</a><br />
<a href="https://hirsalagolf.fi//pelaamaan/ajanvarausohje/">Varaa peliaika »</a><br />
<a href="#section-wrapper-1">Selaa lähtöaikoja</a></p>
</div>
</div>
<div class="header-laatikko">
<div class="header-laatikko-kuvake kuvake2"><img loading="lazy" class="alignnone size-full wp-image-162" src="/wp-content/uploads/sites/38/2017/04/kellob2x.png" alt="" width="60" height="60" /></div>
<div class="header-laatikko-teksti">
<h6><a href="https://hirsalagolf.fi/pelaamaan/aukiolotiedot/">Aukioloajat</a></h6>
<div id='openinghours-2' class='widget-wrapper grid widget_openinghours col-940 t-col-940'><div class='widget-inner'> <div class="gpwidget coursesopen one">
<div class="openinghours_courses segment"> <div class="opening_hours__row">
<strong class="opening_hours__row__label">Kenttä:</strong>
<div class="value_wrapper" style="display: inline-block">
<span class="opening_hours__row__value course_open">Suljettu</span>
</div>
</div>
</div><div class="openinghours_practices segment"></div><div class="openinghours_facilities segment">
<div class="opening_hours__row">
<strong class="opening_hours__row__label">Caddiemaster: </strong>
<div class="value_wrapper" style="display: inline-block">
<span class='gp-highlight gp-notice opening_hours__row__detail'>Suljettu </span>
<span class="opening_hours__row__detail">
<span id="desc_3987" class="description facility_description"></span>
</span>
</div>
</div>
<div class="opening_hours__row">
<strong class="opening_hours__row__label">Ravintola: </strong>
<div class="value_wrapper" style="display: inline-block">
<span class='gp-highlight gp-notice opening_hours__row__detail'>Suljettu </span>
<span class="opening_hours__row__detail">
<span id="desc_3989" class="description facility_description">ravintola@hirsalagolf.fi & puh. 010 3237664</span>
</span>
</div>
</div>
<div class="opening_hours__row">
<strong class="opening_hours__row__label">Pukuhuoneet: </strong>
<div class="value_wrapper" style="display: inline-block">
<span class='gp-highlight gp-notice opening_hours__row__detail'>Suljettu </span>
<span class="opening_hours__row__detail">
<span id="desc_3991" class="description facility_description"></span>
</span>
</div>
</div>
</div> </div>
</div></div>
</div>
</div>
<div class="header-laatikko">
<div class="header-laatikko-kuvake kuvake3"><img loading="lazy" class="alignnone size-full wp-image-140" src="/wp-content/uploads/sites/38/2017/04/kompassib2x.png" alt="" width="60" height="60" /></div>
<div class="header-laatikko-teksti">
<h6>Löydä perille</h6>
<p>Hirsalantie 215, 02420 Jorvas<br />
<a href="https://www.google.fi/maps/place/Hirsalantie+215,+02420+Kirkkonummi/@60.1211506,24.5301841,17z/data=!4m15!1m9!4m8!1m0!1m6!1m2!1s0x468d8cf78e0147b5:0x9ec6d087e045a55e!2sHirsalantie+215,+02420+Kirkkonummi!2m2!1d24.5323781!2d60.1211506!3m4!1s0x468d8cf78e0147b5:0x9ec6d087e045a55e!8m2!3d60.1211506!4d24.5323781" target="_blank" rel="noopener noreferrer">Katso kartalta »</a></p>
</div>
</div>
<div class="header-laatikko">
<div class="header-laatikko-kuvake"></div>
<div class="header-laatikko-teksti">
<h6><a href="https://uutiskirje.hirsalagolf.fi/" target="_blank" rel="noopener">Tilaa uutiskirje »</a></h6>
</div>
</div>
</div></div><div id='custom_html-9' class='widget-wrapper grid widget_custom_html col-940 t-col-940'><div class='widget-inner'><div class="textwidget custom-html-widget"><header><script type="text/javascript" async src="https://bot.leadoo.com/bot/dynamic/chat.js?company=hzJowk5"></script></header></div></div></div> </div>
<div style="clear:both;"></div>
<div id="header" style="background-image: url('https://hirsalagolf.fi/wp-content/uploads/sites/38/2021/04/Ammattikuvaajan-ottamat-kuvat-019_copy-scaled.jpg'); background-size: cover; background-position: center center;" class="above-header-and-logo">
<nav class="main-nav">
<div class="menu-button" id="nav-toggle"><i class="fa fa-navicon"></i><span class="screen-reader-text">Valikko</span></div>
<ul id="menu-paavalikko" class="menu"><li id="menu-item-1927" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-1927"><a href="https://hirsalagolf.fi/kauppa/">Verkkokauppa</a>
<ul class="sub-menu">
<li id="menu-item-2329" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2329"><a href="https://hirsalagolf.fi/kauppa/">Kaikki tuotteet</a></li>
<li id="menu-item-8333" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-8333"><a href="https://hirsalagolf.fi/tuote-osasto/kampanja/">Kampanjat</a></li>
<li id="menu-item-1932" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-1932"><a href="https://hirsalagolf.fi/tuote-osasto/pelioikeudet/">Pelioikeudet</a></li>
<li id="menu-item-4810" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-4810"><a href="https://hirsalagolf.fi/tuote-osasto/jasenyydet/">Jäsenyydet</a></li>
<li id="menu-item-1933" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-1933"><a href="https://hirsalagolf.fi/tuote-osasto/greenfeet/">Green feet</a></li>
<li id="menu-item-1931" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-1931"><a href="https://hirsalagolf.fi/tuote-osasto/sarjakortit/">Green Fee -paketit / sarjakortit</a></li>
<li id="menu-item-7736" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-7736"><a href="https://hirsalagolf.fi/tuote-osasto/pelipaketit/">VIP-paketit</a></li>
<li id="menu-item-1928" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1928"><a href="https://hirsalagolf.fi/ostoskori/">Ostoskori</a></li>
<li id="menu-item-1929" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1929"><a href="https://hirsalagolf.fi/kassa/">Kassa</a></li>
<li id="menu-item-1930" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1930"><a href="https://hirsalagolf.fi/verkkokaupan-toimitusehdot/">Verkkokaupan toimitusehdot</a></li>
</ul>
</li>
<li id="menu-item-85" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-85"><a href="http://hirsalagolf.fi//pelaamaan/ajanvarausohje/">Pelaamaan</a>
<ul class="sub-menu">
<li id="menu-item-54" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-54"><a href="https://hirsalagolf.fi/pelaamaan/ajanvarausohje/">Ajanvarausohjeet</a></li>
<li id="menu-item-66" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-66"><a href="https://hirsalagolf.fi/hinnasto/">Hinnasto</a></li>
<li id="menu-item-56" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-56"><a href="https://hirsalagolf.fi/pelaamaan/peliohjeet/">Peliohjeet</a></li>
<li id="menu-item-60" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-60"><a href="https://hirsalagolf.fi/kentta/kentta/">Kenttä</a></li>
<li id="menu-item-61" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-61"><a href="https://hirsalagolf.fi/kentta/vaylaesittelyt/">Väyläesittelyt</a></li>
<li id="menu-item-1656" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1656"><a href="https://hirsalagolf.fi/kentta/ymparisto/">Ympäristö</a></li>
<li id="menu-item-74" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-74"><a href="https://hirsalagolf.fi/palvelut/tapahtumat/">Tapahtumakalenteri</a></li>
<li id="menu-item-1478" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1478"><a href="https://hirsalagolf.fi/kentta/holes-in-one/">Holarit ja albatrossit</a></li>
<li id="menu-item-8483" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8483"><a href="https://hirsalagolf.fi/golden-sun-golf-ranking/">Golden Sun Golf -ranking</a></li>
</ul>
</li>
<li id="menu-item-87" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-87"><a href="http://hirsalagolf.fi//palvelut/klubitalo/">Palvelut</a>
<ul class="sub-menu">
<li id="menu-item-72" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-72"><a href="https://hirsalagolf.fi/palvelut/ravintola/">Ravintola Hirsala Verde</a></li>
<li id="menu-item-68" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-68"><a href="https://hirsalagolf.fi/palvelut/klubitalo/">Klubitalo</a></li>
<li id="menu-item-71" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-71"><a href="https://hirsalagolf.fi/palvelut/harjoitusalueet/">Novelle Range & Uusi lähipelialue</a></li>
<li id="menu-item-8445" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8445"><a href="https://hirsalagolf.fi/padel/">Padel</a></li>
<li id="menu-item-5456" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5456"><a href="https://hirsalagolf.fi/talviharjoittelu/">Simulaattori ja harjoitustilat</a></li>
<li id="menu-item-6860" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6860"><a href="https://hirsalagolf.fi/geometric-golf/">Geometric Golf</a></li>
<li id="menu-item-69" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-69"><a href="https://hirsalagolf.fi/palvelut/prot/">PROT (opetus)</a></li>
<li id="menu-item-73" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-73"><a href="https://hirsalagolf.fi/palvelut/majoitus/">Majoitus</a></li>
<li id="menu-item-5590" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5590"><a href="https://hirsalagolf.fi/terveiset-toimistolle/">Terveiset toimistolle</a></li>
</ul>
</li>
<li id="menu-item-84" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-84"><a href="https://hirsalagolf.fi/kategoria/ajankohtaista/">Uutiset</a></li>
<li id="menu-item-7804" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-7804"><a href="https://hirsalagolf.fi/kentta/hirsalalaisille/">Hirsalalaisille</a>
<ul class="sub-menu">
<li id="menu-item-966" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-966"><a href="https://hirsalagolf.fi/jasenille/">Jäsenille</a></li>
<li id="menu-item-58" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-58"><a href="https://hirsalagolf.fi/pelaamaan/jasenyys/">Jäsenyys 2021</a></li>
<li id="menu-item-4007" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4007"><a href="https://hirsalagolf.fi/premium/">Premium-jäsenyys</a></li>
<li id="menu-item-2111" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2111"><a href="https://hirsalagolf.fi/pelaamaan/osakasedut/">Edut hirsalalaisille</a></li>
<li id="menu-item-8526" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8526"><a href="https://hirsalagolf.fi/yhtiojarjestys/">Oy:n yhtiöjärjestys ja ry:n säännöt</a></li>
</ul>
</li>
<li id="menu-item-75" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-75"><a href="https://hirsalagolf.fi/yrityksille/">Yrityksille</a>
<ul class="sub-menu">
<li id="menu-item-8493" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8493"><a href="https://hirsalagolf.fi/pelipaketit-yrityksille/">Pelipaketit yrityksille</a></li>
<li id="menu-item-1600" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1600"><a href="https://hirsalagolf.fi/yrityksille/">Yritystapahtumat</a></li>
<li id="menu-item-1599" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1599"><a href="https://hirsalagolf.fi/kokoustilat/">Kokouskabinetti ja VIP-saunatilat</a></li>
</ul>
</li>
<li id="menu-item-88" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-88"><a href="http://hirsalagolf.fi//yhteystiedot/yhteystiedot/">Yhteystiedot</a>
<ul class="sub-menu">
<li id="menu-item-77" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-77"><a href="https://hirsalagolf.fi/yhteystiedot/yhteystiedot/">Yhteystiedot</a></li>
<li id="menu-item-112" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-112"><a href="https://hirsalagolf.fi//yhteystiedot/henkilosto/toimisto/">Henkilöstö</a>
<ul class="sub-menu">
<li id="menu-item-79" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-79"><a href="https://hirsalagolf.fi/yhteystiedot/henkilosto/toimisto/">Toimisto</a></li>
<li id="menu-item-80" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-80"><a href="https://hirsalagolf.fi/yhteystiedot/henkilosto/kentanhoito/">Kentänhoito</a></li>
<li id="menu-item-7338" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7338"><a href="https://hirsalagolf.fi/yhteystiedot/henkilosto/prot-golf-opetus/">Prot / golf-opetus</a></li>
<li id="menu-item-81" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-81"><a href="https://hirsalagolf.fi/yhteystiedot/henkilosto/hallitus/">Hallitus ja johtokunta</a></li>
</ul>
</li>
<li id="menu-item-82" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-82"><a href="https://hirsalagolf.fi/yhteystiedot/laskutusohje/">Laskutusohje</a></li>
</ul>
</li>
<li id="menu-item-1661" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1661"><a href="https://hirsalagolf.fi/in-english/"><img src="/wp-content/uploads/sites/38/2017/10/United-Kingdom.png" height="14"></a></li>
<li id="menu-item-1662" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1662"><a href="https://hirsalagolf.fi/pa-svenska/"><img src="/wp-content/uploads/sites/38/2017/10/Sweden.png" height="14"></a></li>
<li id="menu-item-89" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-89"><a target="_blank" rel="noopener noreferrer" href="https://www.facebook.com/hirsalagolf"><img src="/wp-content/uploads/sites/38/2017/04/fb2x.png" height="14" width="6"></a></li>
<li id="menu-item-90" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-90"><a target="_blank" rel="noopener noreferrer" href="https://twitter.com/hirsalagolf?lang=fi"><img src="/wp-content/uploads/sites/38/2017/04/twitter2x.png" height="12" width="15"></a></li>
<li id="menu-item-91" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-91"><a target="_blank" rel="noopener noreferrer" href="https://www.instagram.com/explore/locations/259635965/hirsala-golf/"><img src="/wp-content/uploads/sites/38/2017/04/insta2x.png" height="13" width="14"></a></li>
<li id="menu-item-176" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-176"><a target="_blank" rel="noopener noreferrer" href="https://www.facebook.com/hirsalagolf"><img src="/wp-content/uploads/sites/38/2017/04/fbgreen2x.png" height="15" width="7"></a></li>
<li id="menu-item-177" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-177"><a target="_blank" rel="noopener noreferrer" href="https://twitter.com/hirsalagolf?lang=fi"><img src="/wp-content/uploads/sites/38/2017/04/twittergreen2x.png" height="14" width="17"></a></li>
<li id="menu-item-178" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-178"><a target="_blank" rel="noopener noreferrer" href="https://www.instagram.com/explore/locations/259635965/hirsala-golf/"><img src="/wp-content/uploads/sites/38/2017/04/instagreen2x.png" height="15" width="16"></a></li>
</ul>
</nav>
<div class="logo-wrapper"><div id="logo">
<a href="https://hirsalagolf.fi/">
<img src="https://hirsalagolf.fi/wp-content/uploads/sites/38/2017/04/hirsalalogo2x-200x44.png" alt="Hirsala Golf"/>
</a>
</div><!-- end of #logo --></div>
<div style="clear:both;"></div>
<div id="carousel" class="header-carousel" data-slick='{"fade":false,"speed":"300","autoplaySpeed":"6000"}'>
<div class="carousel-item" style="background:url('https://hirsalagolf.fi/wp-content/uploads/sites/38/2021/04/Ammattikuvaajan-ottamat-kuvat-019_copy-scaled.jpg') no-repeat; background-size:cover;background-position:center;">
<div class="carousel-item__content">
<div class="carousel-item__text"></div>
</div>
</div>
</div>
</div>
<!-- #header -->
<div id="wrapper" class="clearfix">
<div id="content" class="grid col-940">
<div class="widget-container">
<div id='hirsalapostlistwidget-2' class='widget-wrapper grid widget_hirsalapostlistwidget col-300 t-col-940'><div class='widget-inner'><h3 class="widget-title"><a href="http://hirsalagolf.fi/kategoria/ajankohtaista/">Ajankohtaista</a></h3><div class="hirsala-post-list-container"><div id="post-9675" class="etusivu-post-list-item">
<h4 class="etusivu-heading"><a href="https://hirsalagolf.fi/hirsala-golfn-ryhmamatka-belekiin-tayttyy-vahitellen-varaa-oma-paikkasi/">Hirsala Golf:n ryhmämatka Belekiin täyttyy vähitellen – varaa oma paikkasi!</a></h4>
<div class="etusivu-excerpt"><p>Hirsala Golf järjestää Golden Sun Golf:n kanssa ryhmämatkan Belekin upeille golfkentille ja aurinkoon maaliskuussa 2022.…</p>
</div>
<span><a href="https://hirsalagolf.fi/hirsala-golfn-ryhmamatka-belekiin-tayttyy-vahitellen-varaa-oma-paikkasi/">Lue lisää »</a></span>
</div>
<div id="post-9644" class="etusivu-post-list-item">
<h4 class="etusivu-heading"><a href="https://hirsalagolf.fi/hirsalan-talviharjoittelutilat-aukeavat-marraskuun-alussa-tulossa-lisatilaa-harjoittelulle/">Hirsalan talviharjoittelutilat aukeavat marraskuun alussa – tulossa lisätilaa harjoittelulle</a></h4>
<div class="etusivu-excerpt"><p>Hirsalan klubitaloon avattiin viime talvena hienot sisäharjoittelutilat, joita kehitetään lisää tälle talvikaudelle. Markkinoiden tarkin lyöntisimulaattori…</p>
</div>
<span><a href="https://hirsalagolf.fi/hirsalan-talviharjoittelutilat-aukeavat-marraskuun-alussa-tulossa-lisatilaa-harjoittelulle/">Lue lisää »</a></span>
</div>
<div id="post-9639" class="etusivu-post-list-item">
<h4 class="etusivu-heading"><a href="https://hirsalagolf.fi/hirsalan-paatostapahtuman-la-30-10-ohjelma/">Hirsalan päätöstapahtuman (la 30.10.) ohjelma</a></h4>
<div class="etusivu-excerpt"><p>Hirsalassa vietetään lauantaina 30.10. kauden päätöstapahtumaa (KAIKILLE AVOIN), jonka aikataulu on seuraava: ULKOAKTIVITEETIT: Klo 10…</p>
</div>
<span><a href="https://hirsalagolf.fi/hirsalan-paatostapahtuman-la-30-10-ohjelma/">Lue lisää »</a></span>
</div>
</div><a href="http://hirsalagolf.fi/kategoria/ajankohtaista/" class="all-post-link">Näytä kaikki</a></div></div><div id='custom_html-4' class='widget-wrapper grid widget_custom_html col-940 t-col-940'><div class='widget-inner'><div class="textwidget custom-html-widget"><a href="/kauppa">Verkkokaupassa nyt</a></div></div></div><div id='woocommerce_products-2' class='widget-wrapper grid woocommerce widget_products col-620 t-col-940'><div class='widget-inner'><h3 class="widget-title">Verkkokaupassa nyt</h3><ul class="product_list_widget"><li>
<a data-gtm4wp_product_id="6611" data-gtm4wp_product_name="Aamupelioikeus kaudelle 2022" data-gtm4wp_product_price="795" data-gtm4wp_product_cat="Pelioikeuskampanja" data-gtm4wp_product_url="https://hirsalagolf.fi/tuote/early-bird-2022-aamupelioikeus/" data-gtm4wp_productlist_name="Verkkokaupassa nyt (widget)" data-gtm4wp_product_listposition="1" data-gtm4wp_product_stocklevel="4" data-gtm4wp_product_brand="" href="https://hirsalagolf.fi/tuote/early-bird-2022-aamupelioikeus/">
<img width="300" height="300" src="https://hirsalagolf.fi/wp-content/uploads/sites/38/2021/10/Aamupelioikeus-795-300x300.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="" loading="lazy" srcset="https://hirsalagolf.fi/wp-content/uploads/sites/38/2021/10/Aamupelioikeus-795-300x300.png 300w, https://hirsalagolf.fi/wp-content/uploads/sites/38/2021/10/Aamupelioikeus-795-150x150.png 150w, https://hirsalagolf.fi/wp-content/uploads/sites/38/2021/10/Aamupelioikeus-795-100x100.png 100w" sizes="(max-width: 300px) 100vw, 300px" /> <span class="product-title">Aamupelioikeus kaudelle 2022</span>
</a>
<del><span class="woocommerce-Price-amount amount"><bdi>990,00 <span class="woocommerce-Price-currencySymbol">€</span></bdi></span></del> <ins><span class="woocommerce-Price-amount amount"><bdi>795,00 <span class="woocommerce-Price-currencySymbol">€</span></bdi></span></ins>
</li>
<li>
<a data-gtm4wp_product_id="6595" data-gtm4wp_product_name="9 reiän pelioikeus 2022" data-gtm4wp_product_price="750" data-gtm4wp_product_cat="Pelioikeuskampanja" data-gtm4wp_product_url="https://hirsalagolf.fi/tuote/9-reian-pelioikeus-2022/" data-gtm4wp_productlist_name="Verkkokaupassa nyt (widget)" data-gtm4wp_product_listposition="2" data-gtm4wp_product_stocklevel="5" data-gtm4wp_product_brand="" href="https://hirsalagolf.fi/tuote/9-reian-pelioikeus-2022/">
<img width="300" height="300" src="https://hirsalagolf.fi/wp-content/uploads/sites/38/2021/10/9-reian-pelioikeus-750-300x300.png" class="attachment-woocommerce_thumbnail size-woocommerce_thumbnail" alt="" loading="lazy" srcset="https://hirsalagolf.fi/wp-content/uploads/sites/38/2021/10/9-reian-pelioikeus-750-300x300.png 300w, https://hirsalagolf.fi/wp-content/uploads/sites/38/2021/10/9-reian-pelioikeus-750-150x150.png 150w, https://hirsalagolf.fi/wp-content/uploads/sites/38/2021/10/9-reian-pelioikeus-750-100x100.png 100w" sizes="(max-width: 300px) 100vw, 300px" /> <span class="product-title">9 reiän pelioikeus 2022</span>
</a>
<del><span class="woocommerce-Price-amount amount"><bdi>890,00 <span class="woocommerce-Price-currencySymbol">€</span></bdi></span></del> <ins><span class="woocommerce-Price-amount amount"><bdi>750,00 <span class="woocommerce-Price-currencySymbol">€</span></bdi></span></ins>
</li>
<li>
<a data-gtm4wp_product_id="7031" data-gtm4wp_product_name="Kaveripelioikeus 2022" data-gtm4wp_product_price="4190" data-gtm4wp_product_cat="Syyskampanja" data-gtm4wp_product_url="https://hirsalagolf.fi/tuote/kaveripelioikeus-2022/" data-gtm4wp_productlist_name="Verkkokaupassa nyt (widget)" data-gtm4wp_product_listposition="3" data-gtm4wp_product_stocklevel="3" data-gtm4wp_product_brand="" href="https://hirsalagolf.fi/tuote/kaveripelioikeus-2022/">