-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1194 lines (964 loc) Β· 51.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Highland Roastery</title>
<meta property="og:locale" content="id_ID" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Highland Roastery" />
<meta property="og:description" content="Roastery House and Coffee Shop in Papua, Indonesia." />
<meta property="og:url" content="https://highlandroastery.com" />
<meta property="og:site_name" content="Highland Roastery" />
<meta property="og:image" content="https://highlandroastery.com/assets/images/logo-hr.png" />
<link rel="shortcut icon" href="assets/images/logo/favourite_icon.png">
<!-- fraimwork - css include -->
<!-- <link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css"> -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- icon font - css include -->
<!-- <link rel="stylesheet" type="text/css" href="assets/css/fontawesome.css"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- animation - css include -->
<link rel="stylesheet" type="text/css" href="assets/css/animate.css">
<!-- carousel - css include -->
<link rel="stylesheet" type="text/css" href="assets/css/slick.css">
<link rel="stylesheet" type="text/css" href="assets/css/slick-theme.css">
<!-- popup - css include -->
<link rel="stylesheet" type="text/css" href="assets/css/magnific-popup.css">
<!-- jquery-ui - css include -->
<link rel="stylesheet" type="text/css" href="assets/css/jquery-ui.css">
<!-- custom - css include -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" href="assets/css/hide.google.element.css">
<!-- Bendera icon - css include -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.5.0/css/flag-icon.min.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- body_wrap - start -->
<div class="body_wrap">
<!-- backtotop - start -->
<div class="backtotop">
<a href="#" class="scroll">
<i class="far fa-arrow-up"></i>
<i class="far fa-arrow-up"></i>
</a>
</div>
<!-- backtotop - end -->
<!-- preloader - start -->
<div id="preloader"></div>
<!-- preloader - end -->
<!-- header_section - start
================================================== -->
<header class="header_section style_2">
<div class="content_wrap">
<div class="container maxw_1560">
<div class="row align-items-center">
<div class="col-lg-2 col-md-6 col-6">
<div class="brand_logo">
<a class="brand_link" href="index.html">
<img src="assets/images/logo/favourite_icon.png" srcset="assets/images/logo/logo_white_1x.png" alt="logo_not_found">
</a>
</div>
</div>
<div class="col-lg-10 col-md-6 col-6">
<nav class="main_menu navbar navbar-expand-lg">
<button class="mobile_menu_btn navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#main_menu_dropdown" aria-controls="main_menu_dropdown" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"><i class="fal fa-bars"></i></span>
</button>
<div class="main_menu_inner collapse navbar-collapse" id="main_menu_dropdown">
<ul class="main_menu_list ul_li">
<li class="">
<a class="nav-link" href="#beranda" id="home_submenu" role="button" aria-expanded="false">
BERANDA
</a>
</li>
<li class="">
<a class="nav-link" href="#galeri" id="experience_submenu" role="button"
aria-expanded="false">
GALERI
</a>
</li>
<li class="">
<a class="nav-link" href="#produk-kopi-papua" id="experience_submenu" role="button"
aria-expanded="false">
PRODUK KOPI PAPUA
</a>
</li>
<li class="">
<a class="nav-link" href="#pelatihan" id="experience_submenu" role="button" aria-expanded="false">
PELATIHAN BARISTA
</a>
</li>
<li class="">
<a class="nav-link" href="#tentang-usaha" id="about_submenu" role="button" aria-expanded="false">
TENTANG USAHA</a>
</li>
<li class="">
<a class="nav-link" href="#tim-barista" id="portfolio_submenu" role="button"
aria-expanded="false">
TIM BARISTA
</a>
</li>
<li class="">
<a class="nav-link" href="#hubungi-kami" id="portfolio_submenu" role="button"
aria-expanded="false">
HUBUNGI KAMI
</a>
</li>
</ul>
</div>
<ul class="header_btns_group ul_li_right">
<li>
<div class="btn " id="google_translate_element"></div>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<!-- collapse search - start -->
<div class="main_search_collapse collapse" id="main_search_collapse">
<div class="main_search_form card">
<div class="container maxw_1560">
<form action="#">
<div class="form_item">
<input type="search" name="search" placeholder="Search here...">
<button type="submit" class="submit_btn"><i class="fal fa-search"></i></button>
</div>
</form>
</div>
</div>
</div>
<!-- collapse search - end -->
</header>
<!-- header_section - end
================================================== -->
<!-- main body - start
================================================== -->
<main>
<!-- banner_section - start
================================================== -->
<section class="banner_section deco_wrap overflow-hidden" id="beranda"
style="background-image: url(assets/images/backgrounds/bg_06.png);">
<div class="container">
<div class="row">
<div class="col-lg-7 col-md-7 col-sm-7">
<div class="banner_content text-white">
<h1 class="banner_title text-white text-uppercase wow fadeInUp" data-wow-delay=".2s"
style="font-size: 140px;">Highland Roastery
</h1>
<p class="wow fadeInUp" data-wow-delay=".3s" style="font-size: 30px;">
Good Farmer - Best Coffee - Better Quality
</p>
<ul class="btns_group ul_li wow fadeInUp" data-wow-delay=".4s">
<li><a class="btn btn_border border_white text-uppercase" href="#tentang-usaha">Tentang Usaha</a></li>
<li><a class="btn btn_primary text-uppercase" href="#produk-kopi-papua">Produk Kopi Papua</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="deco_item coffee_image wow fadeInRight" data-wow-delay=".3s">
<img src="assets/images/banner/img_01.png" alt="image_not_found">
</div>
<div class="deco_item leaf_image wow fadeInLeft" data-wow-delay=".4s">
<img src="assets/images/decorations/leaf_01.png" alt="image_not_found">
</div>
<div class="deco_big_text text-uppercase">
<div class="container wow fadeInUp" data-wow-delay=".1s">
Cafenod
</div>
</div>
<div class="scratch scratch_bottom">
<img src="assets/images/decorations/scratch_01.png" alt="image_not_found">
</div>
</section>
<!-- banner_section - end
================================================== -->
<section class="">
<div class="container">
<div class="row py-5 my-5">
<div class="col-lg-12 ps-lg-5">
<img src="assets/images/global-women/global-sisters-program-cover.jpg" alt="Global Women Cover"
class="w-100 shadow rounded wow fadeInUp" data-wow-delay=".2s"
style="border: solid rgb(199, 161, 122);visibility: visible;animation-delay: 0.1s;animation-name: fadeInUp;">
<div class="row">
<div class="col-lg-4">
<h1 class="text-uppercase display-3 fw-bold mt-4">Global Sisters Program</h1>
</div>
<div class="col-lg-8">
<p class="pt-4">Program ini bertujuan untuk membangun kemampuan dan ketahanan ekonomi di kalangan
pengusaha perempuan ASEAN khususnya di Filipina dan Indonesia. Program ini juga merupakan peluang
untuk menghubungkan pengusaha perempuan ASEAN ke Australia. Program dimulai pada Juni 2022 dan akan
berlangsung hingga Mei 2023 dan semua partisipasi akan dilakukan secara virtual.</p>
<p>Para Perempuan Papua yang dipimpin oleh Lucia Runggeari, yang dibantu oleh para Global Sistes,
telah melakukan sesi pendidikan peer-to-peer. Tujuan dari sesi-sesi ini, sebagaimana dinyatakan oleh
Global Sisters: bertujuan untuk memungkinkan bisnis dan menciptakan keamanan ekonomi jangka panjang
bagi perempuan di Indonesia dan Filipina.</h4>
<a class="btn btn_primary text-uppercase mt-4" href="./global-sisters.html"><i
class="fas fa-arrow-right me-2"></i> Selengkapnya</a>
</div>
</div>
</div>
<!-- .col end -->
</div>
</div>
</section>
<!-- about_section - start
================================================== -->
<section class="about_section sec_ptb_120 pb-0 bg-dark" id="tentang-usaha">
<div class="container">
<div class="row align-items-center justify-content-lg-between">
<div class="col-lg-6 col-md-6 order-last">
<div class="about_image2">
<img class="wow fadeInUp rounded shadow" data-wow-delay=".1s" src="assets/images/about/img_02.png"
alt="image_not_found" style="border: solid; border-color: #c7a17a;">
<div class="year_content_wrap text-uppercase">
<span class="wow fadeInUp text-orange text-light" data-wow-delay=".2s">Sejak....</span>
<strong class="wow fadeInUp" data-wow-delay=".3s">2014</strong>
</div>
<div class="leaf_image wow fadeInUp" data-wow-delay=".4s">
<img src="assets/images/decorations/leaf_02.png" alt="image_not_found">
</div>
</div>
</div>
<div class="col-lg-5 col-md-6 pb-5">
<div class="about_content">
<div class="section_title text-uppercase">
<h2 class="small_title wow fadeInUp text-light" data-wow-delay=".1s"><i class="fas fa-coffee"></i>
Tentang Usaha
</h2>
<h3 class="big_title wow fadeInUp text-light" data-wow-delay=".2s">
<u>10 Tahun Pengalaman</u>
</h3>
</div>
<p class="wow fadeInUp text-light" data-wow-delay=".3s">
Highland Roastery berdiri pada bulan September 2014, awalnya kami diperkenalkan oleh seorang teman
yang bernama βKris Priyatmokoβ beliau memberitahukan kami bahwa kopi merupakan βEMAS HIJAUβ yang
pada saatnya akan berkembang pesat.pada awalnya kami memakai nama Highland Coffee.
</p>
<ul class="about_info ul_li_block">
<li class="wow fadeInUp" data-wow-delay=".5s">
<h4 class="text-uppercase text-light">PERUBAHAN NAMA
</h4>
<p class="mb-0 text-light">
Tahun 2018 Highland Coffe berubah nama menjadi Highland Roastery, setelah kami mengikuti Kursus
roasting atas saran dari mas βKris Priyatmokoβ kami fokuskan bisnis kami menjadi tempat sangrai
kopi.
</p>
</li>
<li class="wow fadeInUp" data-wow-delay=".5s">
<h4 class="text-uppercase text-light">PERKEMBANGAN LAYANAN </h4>
<p class="mb-0 text-light">
Dengan perkembangan kopi yang pesat, pada Tahun 2019, kami bertemu dengan Work tream Leader I
program Ekonomi Hijau βGiri Arwanaβ , dan berdiskusi tentang perkembangan Highland Roastery agar
menjadi tempat pelatihan.
</p>
</li>
<li class="wow fadeInUp" data-wow-delay=".5s">
<h4 class="text-uppercase text-light">3 LAYANAN UTAMA </h4>
<p class="mb-0 text-light">
Kemudian, di Tahun 2020 atas bantuan program Ekonomi Hijau, Highland Roastery berdiri dengan 3
layanan utama yaitu 1). Produksi/Roastery, 2). Coffee Academy dan 3). Coffee shop sebagai promosi
produk. Pada akhir tahun 2020, kelas barista pertama dilaksanakan hingga saat ini.
</p>
</li>
<li>
<div class="chip_item">
<div class="chip_thumbnail">
<img src="assets/images/ceo-highland-roastery.png" alt="image_not_found" width="200px">
</div>
<div class="chip_content text-uppercase">
<h5 class="chip_name text-light">Lucia S. Runggeari</h5>
<span class="chip_title">Chief Executive Officer</span>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- about_section - end
================================================== -->
<!-- feature_primary_section - start
================================================== -->
<section class="feature_primary_section2 deco_wrap"
style="background-image: url(assets/images/backgrounds/bg_07.png);">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-6">
<div class="feature_primary wow fadeInUp" data-wow-delay=".2s">
<div class="item_icon">
<img src="assets/images/feature/icon_03.png" alt="icon_not_found">
</div>
<h3 class="item_title text-uppercase">Good Farmer</h3>
<p class="mb-0"> Petani yang tekun dan memahami proses pengelolaan kopi </p>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6">
<div class="feature_primary wow fadeInUp" data-wow-delay=".3s">
<div class="item_icon">
<img src="assets/images/feature/icon_01.png" alt="icon_not_found">
</div>
<h3 class="item_title text-uppercase">Best Coffee</h3>
<p class="mb-0"> Kopi terbaik dihasilkan melalui pengelolaan pasca panen yang baik </p>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6">
<div class="feature_primary wow fadeInUp" data-wow-delay=".4s">
<div class="item_icon">
<img src="assets/images/feature/icon_02.png" alt="icon_not_found">
</div>
<h3 class="item_title text-uppercase">Better Quality</h3>
<p class="mb-0"> Kualitas kopi terbaik dihasilkan melalui proses pengelolaan kopi oleh petani yang baik
</p>
</div>
</div>
</div>
</div>
<div class="scratch scratch_bottom">
<img src="assets/images/decorations/scratch_01.png" alt="image_not_found">
</div>
</section>
<!-- feature_primary_section - end
================================================== -->
<!-- Galeri - start
================================================== -->
<section class="shop_section sec_ptb_120" style="padding-bottom: 10px;" id="galeri">
<!-- <section class="feature_primary_section2 deco_wrap"
style="background-image: url(assets/images/backgrounds/bg_07.png);" id="galeri"> -->
<div class="container">
<div class="section_title">
<div class="row align-items-center ">
<div class="col-lg-8 offset-lg-2 col-md-12 col-sm-12 text-center">
<h2 class="small_title wow fadeInUp text-uppercase text-coklat" data-wow-delay=".1s"><i
class="fas fa-camera"></i>GALERI KEGIATAN</h2>
<h3 class="big_title wow fadeInUp text-uppercase" data-wow-delay=".2s">
KISAH KOPI YANG MENGINSPIRASI
</h3>
<p class=" wow fadeInUp pt-3" data-wow-delay=".2s" style="font-size:larger;">Temukan cerita tentang kopi Papua melalui galeri kami. Dari suasana hangat di coffee shop dengan kopi khas Papua, pelatihan barista yang mengasah keterampilan, hingga kompetisi barista yang seru. Kami juga menghargai kerja keras petani kopi Papua yang menghasilkan biji kopi terbaik, serta proses roasting yang menghasilkan cita rasa unik dalam setiap cangkir kopi.</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="card p-0 wow fadeInUp m-3 border-0" data-wow-delay=".2s">
<img style="border-radius: 7px ;" src="assets/images/gallery/1.png" class="" alt="load-image">
<div style="border-radius: 10px ;" class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">Petani Kopi Papua: Pahlawan di Balik Cita Rasa</h5>
<p class="mt-3">Melihat lebih dekat kehidupan petani kopi Papua yang bekerja keras untuk menghasilkan biji kopi terbaik.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="card p-0 wow fadeInUp m-3 border-0" data-wow-delay=".2s">
<img style="border-radius: 7px ;" src="assets/images/gallery/3.png" class="" alt="load-image">
<div style="border-radius: 10px ;" class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">Momen Panen Kopi
di Pegunungan Papua</h5>
<p class="mt-3">Foto-foto seru saat panen kopi di kebun-kebun kopi Papua yang penuh warna dan semangat.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="card p-0 wow fadeInUp m-3 border-0" data-wow-delay=".2s">
<img style="border-radius: 7px ;" src="assets/images/gallery/2.png" class="" alt="load-image">
<div style="border-radius: 10px ;" class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">Proses Roasting Kopi
di Highland Roastery</h5>
<p class="mt-3">Menelusuri setiap langkah dalam proses roasting untuk menghasilkan aroma kopi Papua yang khas.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="card p-0 wow fadeInUp m-3 border-0" data-wow-delay=".2s">
<img style="border-radius: 7px ;" src="assets/images/gallery/4.png" class="" alt="load-image">
<div style="border-radius: 10px ;" class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">Turut Menghadiri Kompetisi Barista di Jayapura</h5>
<p class="mt-3">Melihat lebih dekat kehidupan petani kopi Papua yang bekerja keras untuk menghasilkan biji kopi terbaik.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="card p-0 wow fadeInUp m-3 border-0" data-wow-delay=".2s">
<img style="border-radius: 7px ;" src="assets/images/gallery/1.png" class="" alt="load-image">
<div style="border-radius: 10px ;" class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">Petani Kopi Papua: Pahlawan di Balik Cita Rasa</h5>
<p class="mt-3">Melihat lebih dekat kehidupan petani kopi Papua yang bekerja keras untuk menghasilkan biji kopi terbaik.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="card p-0 wow fadeInUp m-3 border-0" data-wow-delay=".2s">
<img style="border-radius: 7px ;" src="assets/images/gallery/3.png" class="" alt="load-image">
<div style="border-radius: 10px ;" class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">Momen Panen Kopi
di Pegunungan Papua</h5>
<p class="mt-3">Foto-foto seru saat panen kopi di kebun-kebun kopi Papua yang penuh warna dan semangat.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="card p-0 wow fadeInUp m-3 border-0" data-wow-delay=".2s">
<img style="border-radius: 7px ;" src="assets/images/gallery/2.png" class="" alt="load-image">
<div style="border-radius: 10px ;" class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">Proses Roasting Kopi
di Highland Roastery</h5>
<p class="mt-3">Menelusuri setiap langkah dalam proses roasting untuk menghasilkan aroma kopi Papua yang khas.</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-3">
<div class="card p-0 wow fadeInUp m-3 border-0" data-wow-delay=".2s">
<img style="border-radius: 7px ;" src="assets/images/gallery/4.png" class="" alt="load-image">
<div style="border-radius: 10px ;" class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">Turut Menghadiri Kompetisi Barista di Jayapura</h5>
<p class="mt-3">Melihat lebih dekat kehidupan petani kopi Papua yang bekerja keras untuk menghasilkan biji kopi terbaik.</p>
</div>
</div>
</div>
</div>
</div>
<div class="scratch scratch_bottom">
<img src="assets/images/backgrounds/bg_15.png" width="100%" alt="image_not_found">
</div>
</section>
<!-- Galeri - end
================================================== -->
<!-- shop_section - start
================================================== -->
<section class="shop_section sec_ptb_120" id="tim-barista">
<div class="container">
<div class="section_title">
<div class="row align-items-center">
<div class="col-lg-8 offset-lg-2 col-md-12 col-sm-12 text-center">
<h2 class="small_title wow fadeInUp text-uppercase text-coklat" data-wow-delay=".1s"><i
class="fas fa-users"></i>TIM
BARISTA</h2>
<h3 class="big_title wow fadeInUp text-uppercase" data-wow-delay=".2s">
BARISTA HIGHLAND ROASTERY
</h3>
<p class=" wow fadeInUp pt-3" data-wow-delay=".2s" style="font-size:larger;">Tim Highland Roastery
terdiri dari anak-anak Mudah Papua yang memiliki semangat yang tinggi dalam bekerja sebagai barista.
Berikut ini Tim Barista kami yang dapat Anda jumpai apabila berkunjung ke Highland Roastery.</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="card shadow-sm p-0 wow fadeInUp m-3 border-0" data-wow-delay=".2s">
<img style="border-radius: 7px ;" src="assets/images/team/Agus Elopore.png" class="" alt="load-image">
<div style="border-radius: 10px ;" class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">Agus Elopore</h5>
<a class="btn_text text-uppercase pb-3"><span>Barista</span></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="card shadow-sm p-0 wow fadeInUp m-3 border-0" data-wow-delay=".2s">
<img style="border-radius: 7px ;" src="assets/images/team/James Amin Elopore.png" class=" card-img-top"
alt="load-image">
<div class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">James Amin Elopore</h5>
<a class="btn_text text-uppercase pb-3"><span>Barista</span></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="card shadow-sm p-0 wow fadeInUp m-3 border-0" data-wow-delay=".2s">
<img style="border-radius: 7px ;" src="assets/images/team/Herman S. Meage.png" class=" card-img-top"
alt="load-image">
<div class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">Herman S. Meage</h5>
<a class="btn_text text-uppercase pb-3"><span>Barista</span></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="card p-0 wow fadeInUp m-3 border-0 shadow-sm">
<img src="assets/images/team/Yunus T. Meage - Asisten Soaster.jpeg" alt="load-image"
style="border-radius: 7px ;">
<div class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">yunus t. meage</h5>
<a class="btn_text text-uppercase pb-3"><span>asisten roaster</span></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="card p-0 wow fadeInUp m-3 border-0 shadow-sm">
<img style="border-radius: 7px ;" src="assets/images/team/Amos E. Wetipo - Asisten Grading.jpeg"
alt="load-image">
<div class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">Amos E. Wetipo</h5>
<a class="btn_text text-uppercase pb-3"><span>Manager</span></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="card p-0 wow fadeInUp m-3 border-0 shadow-sm">
<img src="assets/images/team/Septinus Wetipo - Barista.jpeg" alt="load-image"
style="border-radius: 7px ;">
<div class="card-body text-center">
<h5 class="card-title text-coklat text-uppercase">Septinus Wetipo</h5>
<a class="btn_text text-uppercase pb-3"><span>Barista</span></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- shop_section - end
================================================== -->
<!-- recipe_menu_section - start
================================================== -->
<section class="recipe_menu_section sec_ptb_120 deco_wrap text-white"
style="background-image: url(assets/images/backgrounds/bg_08.png);" id="produk-kopi-papua">
<div class="container">
<div class="section_title text-center">
<h2 class="small_title text-white wow fadeInUp text-uppercase" data-wow-delay=".2s"><i
class="fas fa-coffee"></i> Produk
Kopi Papua</h2>
<h3 class="big_title text-white wow fadeInUp text-uppercase" data-wow-delay=".3s">
Produk Kopi Highland Roastery
</h3>
<p class=" wow fadeInUp pt-3" data-wow-delay=".2s" style="font-size:larger;">Highland Roastery telah bekerja
sama dengan berbagai petani lokal Papua dalam menyediakan kopi-kopi Asli Papua dari berbagai daerah.
Berikut ini beberapa paket produk Kopi Papua yang bisa Anda coba.</p>
</div>
<div class="recipe_item_grid grid wow fadeInUp" data-wow-delay=".5s">
<div class="element-item kopi-200g greantea " data-category="kopi-200g">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-4 col-md-12 col-sm-12">
<div class="shop_card wow fadeInUp" data-wow-delay=".2s">
<a class="item_image" href="#">
<img src="assets/images/products/mockup-hr-coffee-200g-peneli.png" width="200px"
alt="image_not_found">
</a>
<div class="item_content">
<h3 class="item_title text-uppercase mb-2">
<a href="#">PENELI</a>
</h3>
<div class="text-dark fw-bold mb-2">
Tersedia 200g Rp 90K & 1kg Rp 300K
</div>
<div class=" text-center">
<a class="btn btn_border border_black text-uppercase d-block"
href="https://web.whatsapp.com/send?phone=+6282199253560&text=Hello Admin, saya berminat membeli Kopi Peneli πππ½.%0aNama lengkap saya ..."
target="_blank">Pesan Sekarang</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12">
<div class="shop_card wow fadeInUp" data-wow-delay=".2s">
<a class="item_image" href="shop_details.html">
<img src="assets/images/products/mockup-hr-coffee-200g-kiwirok.png" width="200px"
alt="image_not_found">
</a>
<div class="item_content">
<h3 class="item_title text-uppercase mb-2">
<a href="#">Kiwirok</a>
</h3>
<div class="text-dark fw-bold mb-2">
Tersedia 200g Rp 90K & 1kg Rp 300K
</div>
<div class=" text-center">
<a class="btn btn_border border_black text-uppercase d-block"
href="https://web.whatsapp.com/send?phone=+6282199253560&text=Hello Admin, saya berminat membeli Kopi Kiwirok πππ½.%0aNama lengkap saya ..."
target="_blank">Pesan Sekarang</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12">
<div class="shop_card wow fadeInUp" data-wow-delay=".2s">
<a class="item_image" href="shop_details.html">
<img src="assets/images/products/mockup-hr-coffee-200g-okbab.png" width="200px"
alt="image_not_found">
</a>
<div class="item_content">
<h3 class="item_title text-uppercase mb-2">
<a href="#">Okbab</a>
</h3>
<div class="text-dark fw-bold mb-2">
Tersedia 200g Rp 90K & 1kg Rp 300K
</div>
<div class=" text-center">
<a class="btn btn_border border_black text-uppercase d-block"
href="https://web.whatsapp.com/send?phone=+6282199253560&text=Hello Admin, saya berminat membeli Kopi Okbab πππ½.%0aNama lengkap saya ..."
target="_blank">Pesan Sekarang</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12">
<div class="shop_card wow fadeInUp" data-wow-delay=".2s">
<a class="item_image" href="shop_details.html">
<img src="assets/images/products/mockup-hr-coffee-200g-sabin.png" width="200px"
alt="image_not_found">
</a>
<div class="item_content">
<h3 class="item_title text-uppercase mb-2">
<a href="#">Sabin</a>
</h3>
<div class="text-dark fw-bold mb-2">
Tersedia 200g Rp 90K & 1kg Rp 300K
</div>
<div class=" text-center">
<a class="btn btn_border border_black text-uppercase d-block"
href="https://web.whatsapp.com/send?phone=+6282199253560&text=Hello Admin, saya berminat membeli Kopi Sabin πππ½.%0aNama lengkap saya ..."
target="_blank">Pesan Sekarang</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12">
<div class="shop_card wow fadeInUp" data-wow-delay=".3s">
<a class="item_image" href="#">
<img src="assets/images/products/mockup-hr-coffee-200g-tiom.png" width="200px"
alt="image_not_found">
</a>
<div class="item_content">
<h3 class="item_title text-uppercase mb-2">
<a href="#">Tiom</a>
</h3>
<div class="text-dark fw-bold mb-2">
Tersedia 200g Rp 90K & 1kg Rp 300K
</div>
<div class=" text-center">
<a class="btn btn_border border_black text-uppercase d-block"
href="https://web.whatsapp.com/send?phone=+6282199253560&text=Hello Admin, saya berminat membeli Kopi Okbab πππ½.%0aNama lengkap saya ..."
target="_blank">Pesan Sekarang</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12">
<div class="shop_card wow fadeInUp" data-wow-delay=".1s">
<a class="item_image" href="shop_details.html">
<img src="assets/images/products/mockup-hr-coffee-200g-tangma.png" width="200px"
alt="image_not_found">
</a>
<div class="item_content">
<h3 class="item_title text-uppercase mb-2">
<a href="#">Tangma</a>
</h3>
<div class="text-dark fw-bold mb-2">
Tersedia 200g Rp 90K & 1kg Rp 300K
</div>
<div class=" text-center">
<a class="btn btn_border border_black text-uppercase d-block"
href="https://web.whatsapp.com/send?phone=+6282199253560&text=Hello Admin, saya berminat membeli Kopi Tangma πππ½.%0aNama lengkap saya ..."
target="_blank">Pesan Sekarang</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12">
<div class="shop_card wow fadeInUp" data-wow-delay=".1s">
<a class="item_image" href="shop_details.html">
<img src="assets/images/products/mockup-hr-coffee-200g-kurima.png" width="200px"
alt="image_not_found">
</a>
<div class="item_content">
<h3 class="item_title text-uppercase mb-2">
<a href="#">Kurima</a>
</h3>
<div class="text-dark fw-bold mb-2">
Tersedia 200g Rp 90K & 1kg Rp 300K
</div>
<div class=" text-center">
<a class="btn btn_border border_black text-uppercase d-block"
href="https://web.whatsapp.com/send?phone=+6282199253560&text=Hello Admin, saya berminat membeli Kopi Kurima πππ½.%0aNama lengkap saya ..."
target="_blank">Pesan Sekarang</a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 col-sm-12">
<div class="shop_card wow fadeInUp" data-wow-delay=".1s">
<a class="item_image" href="shop_details.html">
<img src="assets/images/products/mockup-hr-coffee-200g-okhika.png" width="200px"
alt="image_not_found">
</a>
<div class="item_content">
<h3 class="item_title text-uppercase mb-2">
<a href="#">Kurima</a>
</h3>
<div class="text-dark fw-bold mb-2">
Tersedia 200g Rp 90K & 1kg Rp 300K
</div>
<div class=" text-center">
<a class="btn btn_border border_black text-uppercase d-block"
href="https://web.whatsapp.com/send?phone=+6282199253560&text=Hello Admin, saya berminat membeli Kopi Okhika πππ½.%0aNama lengkap saya ..."
target="_blank">Pesan Sekarang</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="deco_big_text text-uppercase text-center wow fadeInUp" data-wow-delay=".1s"> Kopi Papua </div>
<div class="scratch scratch_top">
<img src="assets/images/decorations/scratch_02.png" alt="image_not_found">
</div>
<div class="scratch scratch_bottom">
<img src="assets/images/decorations/scratch_01.png" alt="image_not_found">
</div>
</section>
<!-- recipe_menu_section - end
================================================== -->
<!-- blog_section - start
================================================== -->
<section class="blog_section sec_ptb_120" id="pelatihan">
<div class="container">
<div class="section_title text-center">
<h2 class="small_title wow fadeInUp text-uppercase" data-wow-delay=".1s"><i class="fas fa-coffee"></i>
Pelatihan</h2>
<h3 class="big_title wow fadeInUp text-uppercase" data-wow-delay=".2s">Persiapkan Calon Barista dan Roaster
</h3>
<p class=" wow fadeInUp pt-3" data-wow-delay=".2s" style="font-size:larger;">Kami menyediakan pelatihan
untuk mempersiapkan kebutuhan
barista dan roaster sesuai dengan kebuthan di tempat Anda. Berikut ini adalah beberapa program pelatihan
yang tersedia dan sudah banyak diminati dan juga sudah dilaksanakan.</p>
</div>
<div class="row justify-content-center">
<div class="col-lg-4 col-md-4 col-sm-6">
<div class="blog_grid wow fadeInUp" data-wow-delay=".1s">
<!-- <div class="post_date bg_default_brown text-uppercase">5,jan</div> -->
<a class="item_image" href="#">
<img src="assets/images/training/hr-training-seduh-manual.png" alt="image_not_found">
</a>
<div class="item_content">
<h3 class="item_title text-uppercase">
Seduh Manual
</h3>
<p>
Pengetahuan dasar kopi, pengenalan alat, metode seduh manual.
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6">
<div class="blog_grid wow fadeInUp" data-wow-delay=".2s">
<!-- <div class="post_date bg_default_brown text-uppercase">5,jan</div> -->
<a class="item_image" href="#">
<img src="assets/images/training/1.png" alt="image_not_found">
</a>
<div class="item_content">
<h3 class="item_title text-uppercase">
Dasar Espresso
</h3>
<p>
Pengetahuan dasar kopi, pengenalan alat dan mesin espresso, teknik pembuatan espresso, dan resep
kopi
</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-6">
<div class="blog_grid wow fadeInUp" data-wow-delay=".3s">
<!-- <div class="post_date bg_default_brown text-uppercase">5,jan</div> -->
<a class="item_image" href="#">
<img src="assets/images/training/hr-training-roasting-1.png" alt="image_not_found">
</a>
<div class="item_content">
<h3 class="item_title text-uppercase">
Dasar Roasting
</h3>
<p>
Sejarah kopi, pengenalan biji kopi, pengenalan mesin sangrai (roasting), teknik mencampur kopi,
teknik mengobservasi rasa.
</p>
</div>
</div>
</div>
</div>
<div class="load_more text-center wow fadeInUp" data-wow-delay=".4s">
<a class="btn btn_border border_black bg-dark text-light text-uppercase"
href="https://web.whatsapp.com/send?phone=+6282199253560&text=Hello Admin, saya berminat mendaftar kursus πππ½.%0aNama lengkap saya ..."
target="_blank">DAFTAR
KURSUS</a>
</div>
</div>
<div class="scratch scratch_bottom">
<img src="assets/images/decorations/scratch_01.png" alt="image_not_found">
</div>
</section>
<!-- blog_section - end
================================================== -->
</main>
<!-- main body - end
================================================== -->
<!-- footer_section - start
================================================== -->
<footer class="footer_section text-white deco_wrap" id="hubungi-kami"
style="background-image: url(assets/images/backgrounds/bg_08.png);">
<div class="footer_widget_area">