-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1241 lines (1069 loc) · 55.8 KB
/
Copy pathindex.html
File metadata and controls
1241 lines (1069 loc) · 55.8 KB
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 content="width=device-width, initial-scale=1.0" name="viewport">
<!-- <title>Dr. Florim Cuculi | Home</title>
<meta content="Dr. Florim Cuculi" name="description">
<meta content="Dr. Florim Cuculi" name="keywords">
<meta name="image" property="og:image" content="https://drflorimcuculi.com/assets/img/logooo-meta.png">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="195">
<meta property="og:url" content="https://drflorimcuculi.com/" /> -->
<!-- Primary Meta Tags -->
<!-- Primary Meta Tags -->
<title>Dr. Florim Cuculi</title>
<meta name="title" content="Dr. Florim Cuculi">
<meta name="description" content="Interventional Cardiologist, Lucerne Switzerland Co-Chief Department of Cardiology
Heart Centre Lucerne, Lucerne Kantonsspital
Director Cardio Center Luzern,
Luzern Switzerland">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://drflorimcuculi.com/">
<meta property="og:title" content="Dr. Florim Cuculi">
<meta property="og:description" content="Interventional Cardiologist, Lucerne Switzerland Co-Chief Department of Cardiology
Heart Centre Lucerne, Lucerne Kantonsspital
Director Cardio Center Luzern,
Luzern Switzerland">
<meta property="og:image" content="https://drflorimcuculi.com/assets/img/logooo-meta.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://drflorimcuculi.com/">
<meta property="twitter:title" content="Dr. Florim Cuculi">
<meta property="twitter:description" content="Interventional Cardiologist, Lucerne Switzerland Co-Chief Department of Cardiology
Heart Centre Lucerne, Lucerne Kantonsspital
Director Cardio Center Luzern,
Luzern Switzerland">
<meta property="twitter:image" content="https://drflorimcuculi.com/assets/img/logooo-meta.png">
<!-- Favicons -->
<link href="assets/img/favicon-logo.png" rel="icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Roboto:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: BizLand - v3.7.0
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
<script>
$('#myModal').on('hidden.bs.modal', function () {
$('iframe').contents().find('video')[0].pause();
});
</script>
</head>
<body>
<!-- ======= Top Bar ======= -->
<section id="topbar" class="d-flex align-items-center">
<div class="container d-flex justify-content-center justify-content-md-between">
<div class="contact-info d-flex align-items-center">
<i class="bi bi-envelope d-flex align-items-center"><a href="mailto:ccl@hin.ch">ccl@hin.ch</a></i>
<i class="bi bi-phone d-flex align-items-center ms-4"><a href="tel:+41412260230">+41412260230</a></i>
</div>
<div class="social-links d-none d-md-flex align-items-center">
Social Media:
<a href="https://facebook.com/florim.cuculi/" target="_blank" class="facebook"><i
class="bi bi-facebook"></i></a>
<a href="https://instagram.com/dr.florimcuculi/" target="_blank" class="instagram"><i
class="bi bi-instagram"></i></a>
<a href="https://linkedin.com/in/florim-cuculi-0265ab87/" target="_blank" class="linkedin"><i
class="bi bi-linkedin"></i></a>
<a href="https://youtube.com/user/Papillarmuskel/videos/" target="_blank" class="youtube"><i
class="bi bi-youtube"></i></a>
</div>
</div>
</section>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo"><a href="index.html"><img src="assets/img/logooo.png" class="img-fluid"></a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo"><img src="assets/img/logo.png" alt=""></a>-->
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#home">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#healthy-heart">Healthy Heart</a></li>
<li><a class="nav-link scrollto" href="#testimonials">Testimonials</a></li>
<li><a class="nav-link scrollto" href="#covid19">COVID-19</a></li>
<li class="dropdown"><a class="nav-link scrollto" href="#gallery"><span>Gallery</span> <i
class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="full-gallery.html#full-gallery">Full Gallery</a></li>
</ul>
</li>
<li><a class="nav-link scrollto" href="#faq">FAQ</a></li>
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Home Section ======= -->
<section id="home" class="d-flex align-items-center">
<div class="container" data-aos="zoom-out" data-aos-delay="100">
<h1>Prof. Dr. med. <span>Florim Cuculi</span></h1><br>
<a href="https://cardio-center.ch"><img src="assets/img/clients/partner-1.png" class="img-fluid" alt=""></a><br>
<h2>Interventional Cardiologist, Lucerne Switzerland<br><br>
Co-Chief Department of Cardiology<br>
Heart Centre Lucerne, Lucerne Kantonsspital<br>
Director Cardio Center Luzern,<br>
Luzern Switzerland
</h2>
<div class="d-flex">
<a href="#about" class="btn-get-started scrollto">Read more</a>
<button type="button" class="btn btn-watch-video" data-bs-toggle="modal" data-src="https://youtu.be/eELNOjJGrWI"
data-bs-target="#myModal"><i class="bi bi-play-circle"></i>
Watch Video
</button>
</div>
</div>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close">
</button>
<!-- 16:9 aspect ratio -->
<div class="ratio ratio-16x9">
<iframe width="560" height="315" playsline src="https://www.youtube.com/embed/eELNOjJGrWI"
title="YouTube video player" frameborder="0" id="video"
allow=" clipboard-write; encrypted-media; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Home -->
<main id="main">
<!-- ======= Featured Services Section ======= -->
<!--<section id="featured-services" class="featured-services">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="100">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4 class="title"><a href="">Lorem Ipsum</a></h4>
<p class="description">Voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="200">
<div class="icon"><i class="bx bx-file"></i></div>
<h4 class="title"><a href="">Sed ut perspiciatis</a></h4>
<p class="description">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="300">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4 class="title"><a href="">Magni Dolores</a></h4>
<p class="description">Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia</p>
</div>
</div>
<div class="col-md-6 col-lg-3 d-flex align-items-stretch mb-5 mb-lg-0">
<div class="icon-box" data-aos="fade-up" data-aos-delay="400">
<div class="icon"><i class="bx bx-world"></i></div>
<h4 class="title"><a href="">Nemo Enim</a></h4>
<p class="description">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis</p>
</div>
</div>
</div>
</div>
</section><!-- End Featured Services Section -->
<!-- ======= About Section ======= -->
<section id="about" class="about section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>About</h2>
<h3>Find Out More About<span> Florim Cuculi</span></h3>
</div>
<div class="row">
<div class="col-lg-5" data-aos="fade-right" data-aos-delay="100">
<img src="assets/img/gallery/general_images/Flo_Wartezimmer.jpeg" class="img-fluid" alt="">
</div>
<div class="col-lg-7 pt-4 pt-lg-0 content d-flex justify-content-center" data-aos="fade-up"
data-aos-delay="100">
<p class="fst-italic">
“I was born in the Republic of North Macedonia in 1976 and moved to Switzerland when I was 14. My father
was working in Switzerland since the early 1980's as a construction worker. Growing up in a new country
was tough but I succeeded with hard work and with the help of people who believed in me.
I started studying Medicine in the University of Basel in 1998 and graduated in 2004. After graduation I
trained in Internal Medicine in Lucerne (2005-2006) and in Cardiology in Lucerne (2007), Berne (2008-2009)
and Oxford, UK (2009-2012). In 2012 I came back to Switzerland and started my career as interventional
cardiologist in Lucerne and became in 2018 the Co-Chief of Cardiology in Luzerner Kantonsspital.
In 2019 we established Cardio Center Luzern, a new Cardiology Practice in the city center of Lucerne. I
see my outpatients @ Cardio Center Luzern and perform the invasive procedures in the Heart Center Lucerne
@ Luzerner Kantonsspital.
Although I have a very busy agenda, I am surrounded by fantastic people in Kantonsspital and also in
Cardio Center Lucerne. Heart-Care is teamwork and being surrounded by people who offer high-quality
service to our patients inspires me day by day.
I speak German, Albanian, English, Serbo-Croatian and a little bit of French.
For outpatients appointments please contact Cardio Center Luzern. “
</p>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Skills Section ======= -->
<!--<section id="skills" class="skills">
<div class="container" data-aos="fade-up">
<div class="row skills-content">
<div class="col-lg-6">
<div class="progress">
<span class="skill">HTML <i class="val">100%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">CSS <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">JavaScript <i class="val">75%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="progress">
<span class="skill">PHP <i class="val">80%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">WordPress/CMS <i class="val">90%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
<div class="progress">
<span class="skill">Photoshop <i class="val">55%</i></span>
<div class="progress-bar-wrap">
<div class="progress-bar" role="progressbar" aria-valuenow="55" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Skills Section -->
<!-- ======= Counts Section ======= -->
<section id="counts" class="counts">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-4 col-md-4 mt-5 mt-md-0">
<div class="count-box">
<i class="bi bi-emoji-smile"></i>
<!--<span data-purecounter-start="0" data-purecounter-end="8000" data-purecounter-duration="1"
class="purecounter"></span>-->
<br>
<p>More than 13 years cardiology experience</p>
<div class="col text-center">
<br><a href="cv.html" target="_blank" class="btn btn-primary btn-md scrollto">See more</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 mt-5 mt-md-0">
<div class="count-box">
<i class="bi bi-activity"></i>
<!--<span data-purecounter-start="0" data-purecounter-end="5000" data-purecounter-duration="1"
class="purecounter"></span>-->
<br>
<p>More than 5000 coronary interventions</p>
<div class="col text-center">
<br><a href="https://www.youtube.com/watch?v=eELNOjJGrWI"
class="btn btn-primary btn-md scrollto glightbox btn-watch-video">See more</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-4 mt-5 mt-md-0">
<div class="count-box">
<i class="bi bi-journal-richtext"></i>
<!--<span data-purecounter-start="0" data-purecounter-end="130" data-purecounter-duration="1"
class="purecounter"></span>-->
<br>
<p>More than 130 publications</p>
<div class="col text-center">
<br><a href="https://pubmed.ncbi.nlm.nih.gov/?term=cuculi+f" class="btn btn-primary btn-md scrollto">See
more</a>
</div>
</div>
</div>
<!--<div class="col-lg-3 col-md-6 mt-5 mt-lg-0">
<div class="count-box">
<i class="bi bi-award"></i>
<span data-purecounter-start="0" data-purecounter-end="15" data-purecounter-duration="1"
class="purecounter"></span>
<p>Awards</p>
</div>
</div>-->
</div>
</div>
</section><!-- End Counts Section -->
<!-- ======= Clients Section ======= -->
<section id="clients" class="clients section-bg">
<div class="container" data-aos="zoom-in">
<div class="row">
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0 d-flex align-items-center justify-content-center">
<a href="https://cardio-center.ch"><img src="assets/img/clients/partner-1.png" class="img-fluid" alt=""></a>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0 d-flex align-items-center justify-content-center">
<a href="https://luks.ch"><img src="assets/img/clients/partner-2.png" class="img-fluid" alt=""></a>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0 d-flex align-items-center justify-content-center">
<a href="https://www.insel.ch"><img src="assets/img/clients/partner-3.png" class="img-fluid" alt=""></a>
</div>
<div class="col-lg-3 col-md-6 mt-5 mt-lg-0 d-flex align-items-center justify-content-center">
<a href="https://www.ouh.nhs.uk"><img src="assets/img/clients/partner-4.png" class="img-fluid" alt=""></a>
</div>
</div>
</div>
</section><!-- End Clients Section -->
<!-- ======= Services Section ======= -->
<section id="healthy-heart" class="services">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Healthy Heart</h2>
<!-- <h3>Six <span>Golden Rules</span></h3> -->
</div>
<div class="row">
<div class="column">
<div class="col-lg-12 col-md-12 text-center">
<video width="320" height="240" controls>
<source src="assets/img/video.mp4" type="video/mp4">
<source src="assets/img/video.mp4" type="video/ogg">
Your browser does not support the video tag.
</video>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box">
<div class="icon"><i class="bx bxl-dribbble"></i></div>
<h4><a href="#">Change the lifestyle</a></h4>
<p>Up to 80 percent of strokes and even 90 percent of heart attacks could be prevented with a change in
lifestyle.
The following points will help.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="zoom-in"
data-aos-delay="200">
<div class="icon-box">
<div class="icon"><i class="bx bx-run"></i></div>
<h4><a href="#">Get rid of excess weight</a></h4>
<p>Studies show that belly fat significantly increases the risk of heart attacks: in men from 94 cm waist
circumference, in women from 80 cm.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="zoom-in"
data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bx bx-tachometer"></i></div>
<h4><a href="#">Avoid stress</a></h4>
<p>Chronic stress in particular puts a massive strain on the heart and circulation.
Create balance in everyday life, on weekends and in your annual planning.
</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="100">
<div class="icon-box">
<div class="icon"><i class="bx bx-cookie"></i></div>
<h4><a href="#">Proper nutrition</a></h4>
<p>Consume less salt, sugar and fatty acids, i.e. less meat, sausage, butter and palm oil.
And don't forget to drink enough! But no alcohol, because it poses a health risk in any form and
quantity.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="200">
<div class="icon-box">
<div class="icon"><i class="bx bx-check-shield"></i></div>
<h4><a href="#">Quitting smoking</a></h4>
<p>The consumption of tobacco damages the heart and the entire cardiovascular system.
Experts believe that every cigarette shortens life by almost half an hour.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4" data-aos="zoom-in" data-aos-delay="300">
<div class="icon-box">
<div class="icon"><i class="bx bx-heart"></i></div>
<h4><a href="#">Blood pressure and values</a></h4>
<p>Only those who have their values measured regularly can recognize negative changes in good time and do
something about them.</p>
</div>
</div>
</div>
</div>
</section>
<!-- ======= Testimonials Section ======= -->
<div class="section-title">
<h2>Testimonials</h2>
</div>
<section id="testimonials" class="testimonials">
<div class="container" data-aos="zoom-in">
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/patient-1.png" class="testimonial-img" alt="">
<h3>Tringa Ahmetaj</h3>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
A kind, welcoming, and professional doctor with an amazing staff.
From April to November I have seen many doctors in the Balkans, who also did a electrophysiology study
without a need or positive result.
I've had so many therapies, all of which have failed.
Finally, I decided to go to Luzern, and I was extremely lucky to go to Cardio Center Luzern.
Dr. Florimi with a light therapy has made me feel already better, which sometimes feels like I'm
dreaming after all of what I've been through.
All of those suffers have come to an end as soon as I met this doctor.
I've been told many times that I have to undergo difficult treatments, and even operations.
After a long visit with doctor Florimi, he came to the conclusion that I don't need to get operated,
but a simple and relatively light therapy will help me manage my condition better.
It is thanks to this amazing doctor, that I am feeling a lot better and optimistic about my journey!
I feel like I was reborn.
Not everyone does their job with the heart like doctor Florimi.
I highly recommend you pay a visit to him if you need a heart expert who will make you feel warm,
welcomed, and already healthier.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/patient-2.png" class="testimonial-img" alt="">
<h3>Fatmir Emini</h3>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Es hat sich schon mal gelohnt aus Lupfig (Aargau) nach Luzern zu fahren, um die erste Besprechung
sowie die Meinung von den geschätzten Prof.Dr.Forim Cuculli zu holen.
Die schnelle Problemerkennung, die dazu passende Erklärung durch das Wissen von Dr. Cuculi sowie die
weitereb eingeleitete Schritte waren top, profesionell und sehr beruhigend für uns👌.
Für den ersten Eindruck sind wir sehr zufrieden und sehr dankbar dafür. Die ganze Praxis top und vor
allem das Cardio-Team mega nett und freundlich👌👍.
Ich freue mich auf die nächste Untersuchung🤗.
Empfehlendswert. Machet eifach witer so (vetëm përpara)👏👍
Herzliche Grüsse💝
Fatmir&Luke
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/patient-3.png" class="testimonial-img" alt="">
<h3>Heshu Aliu</h3>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Wir sind sehr zufrieden mit dem Team und der Arbeit des Cardio Centers.
Durch das tiefe Wissen von Herrn Dr. Cuculi wurde das Problem schnell erkannt und die weiteren
Schritte eingeleitet.
Nach nun einem Jahr Therapie, fühlt sich meine Mutter fit und munter.
Auch hervorzuheben, die sehr nette und zuvorkommende Betreuung.
Somit lohnte es sich auch von Basel nach Luzern zu fahren.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/patient-4.png" class="testimonial-img" alt="">
<h3>Lea Jer</h3>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Sehr professionelles Team, Patient steht im Mittelpunkt und wird ihm die Sicherheit vermittelt, welche
er braucht!
Kann aus eigener Erfahrung nur empfehlen, da is das Herz in Händen mit einem grossen 💔!
Nur weiter so!
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/patient-5.png" class="testimonial-img" alt="">
<h3>Bartek Tomas</h3>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I recommend, they are fast and competent! :)
Already after 40 minutes and several tests I knew that everything is fine with my heart because for a
week I had pressure in the heart, and it turned out that it was only bones in the zebra!
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<img src="assets/img/testimonials/patient-6.png" class="testimonial-img" alt="">
<h3>Sofia Fylli</h3>
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I would rate my self as a very difficult patient as I get super stressed and ask millions of
questions.
All doctors there where extremely patient with me taking the time to explain procedures and put my
mind at ease.
Very professional and amazing treatment.
Would definitely recommend.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div><!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
<div class="col text-center">
<br><br><a href="https://shorturl.at/hpyV4" class="btn btn-primary btn-lg scrollto">Leave a review</a>
</div>
</div>
</section><!-- End Testimonials Section -->
<!-- ======= COVID-19 Section ======= -->
<section id="covid19" class="covid19">
<div class="container" data-aos="fade-up">
<div class="section-title covid19-title">
<h2>COVID-19</h2>
<h3><span>COVID-19</span></h3>
</div>
<div class="row covid19-container" data-aos="fade-up" data-aos-delay="200">
<div class="col-lg-4 col-md-6 portfolio-item">
<a href="assets/img/gallery/post_images/IMG_7315.jpeg" data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"><img src="assets/img/gallery/post_images/IMG_7315.jpeg"
class="img-fluid" title="Click to Open the Image in Full Size" alt="image"></a>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<a href="assets/img/gallery/post_images/IMG_8315.jpeg" data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"><img src="assets/img/gallery/post_images/IMG_8315.jpeg"
class="img-fluid" title="Click to Open the Image in Full Size" alt="image"></a>
</div>
<div class="col-lg-4 col-md-6 portfolio-item">
<iframe src="https://www.youtube.com/embed/9Gv2WjATNn4" title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<iframe
src="https://www.srf.ch/play/tv/rundschau/video/theke-florim-cuculi?urn=urn:srf:video:bef906bd-3d34-4801-9382-aa55ef3e4d40"
title="Video" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
height="300px" allowfullscreen></iframe>
</div>
</div>
</div>
</section><!-- End COVID-19 Section -->
<!-- ======= Portfolio Section ======= -->
<section id="gallery" class="portfolio">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Gallery</h2>
<h3><span>Gallery</span></h3>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="100">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-general_image">General Images</li>
<li data-filter=".filter-operation_image">Operation Images</li>
</ul>
</div>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="200">
<!-- ======= General Images Content ======= -->
<div class="col-lg-4 col-md-6 portfolio-item filter-general_image">
<div class="portfolio-info">
<p>Taking care about hearts is a great responsibility. We try to fulfill our job with maximal
professionalism but also with passion. There's one thing we should never take away from patients: HOPE!
</p>
</div>
<a href="assets/img/gallery/general_images/IMG_0543.jpeg" data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"><img src="assets/img/gallery/general_images/IMG_0543.jpeg"
class="img-fluid" title="Click to Open the Image in Full Size" alt="image"></a>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-general_image">
<div class="portfolio-info">
<p>At Cardio Center Luzern we don't wear white coats. Our aim is to eliminate distance with our patients
and we don't mind if they feel like our family members.</p>
</div>
<a href="assets/img/gallery/general_images/IMG_8510.jpeg" data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"><img src="assets/img/gallery/general_images/IMG_8510.jpeg"
class="img-fluid" title="Click to Open the Image in Full Size" alt="image"></a>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-general_image">
<div class="portfolio-info">
<p>I am a professor of medicine in the University of Lucerne and have a long career in teaching and
lecturing. Learning from eachother is great for us as doctors and increases the quality of care for our
patients.</p>
</div>
<a href="assets/img/gallery/post_images/05b6613b-e1c4-4eac-864b-8aca76ea71c8.jpeg"
data-gallery="portfolioGallery" class="portfolio-lightbox preview-link"><img
src="assets/img/gallery/post_images/05b6613b-e1c4-4eac-864b-8aca76ea71c8.jpeg" class="img-fluid"
title="Click to Open the Image in Full Size" alt="image"></a>
<a href="assets/img/gallery/post_images/IMG_3812.jpeg" data-gallery="portfolioGallery"
class="portfolio-lightbox preview-link"><img src="assets/img/gallery/post_images/IMG_3812.jpeg"
class="img-fluid" title="Click to Open the Image in Full Size" alt="image"></a>
</div>
<!-- ======= End General Images Content ======= -->
<!-- ======= Operation Images Content ======= -->
<div class="col-lg-4 col-md-6 portfolio-item filter-operation_image">
<div class="portfolio-info">
<p>Opening chronically occluded heart arteries (CTO) is my passion. We have one of the largest programs
taking care about this kind of patients in Switzerland. On the picture you can see Dr. Bossard and me
happy after successfully opening a CTO.</p>
</div>
<a href="assets/img/gallery/operation_images/3EE64C7F-57DF-4149-A34D-044106F0C40E.jpeg"
data-gallery="portfolioGallery" class="portfolio-lightbox preview-link"><img
src="assets/img/gallery/operation_images/3EE64C7F-57DF-4149-A34D-044106F0C40E.jpeg" class="img-fluid"
title="Click to Open the Image in Full Size" alt="image"></a>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-operation_image">
<div class="portfolio-info">
<p>In this patient the right coronary artery was occluded for many years. We performed a retrogade
procedure - going from the left coronary artery to the right coronary artery using tiny channels. This
is a routine procedure for us.</p>
</div>
<a href="assets/img/gallery/operation_images/19DB3BC1-B2CF-4406-BAB5-2468FEAE16C4.jpeg"
data-gallery="portfolioGallery" class="portfolio-lightbox preview-link"><img
src="assets/img/gallery/operation_images/19DB3BC1-B2CF-4406-BAB5-2468FEAE16C4.jpeg" class="img-fluid"
title="Click to Open the Image in Full Size" alt="image"></a>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-operation_image">
<div class="portfolio-info">
<p>Treating patients post bypass surgery is always challenging as the native arteries are often heavily
calcified. In this patient we achieved a fantastic result by using dedicated high-pressure balloons. We
are a reference center for complex interventions.</p>
</div>
<a href="assets/img/gallery/operation_images/B9F1BFDC-3D12-4C94-ACA5-201FA33F9FC1.jpeg"
data-gallery="portfolioGallery" class="portfolio-lightbox preview-link"><img
src="assets/img/gallery/operation_images/B9F1BFDC-3D12-4C94-ACA5-201FA33F9FC1.jpeg" class="img-fluid"
title="Click to Open the Image in Full Size" alt="image"></a>
</div>
<!-- ======= End Operation Images Content ======= -->
</div>
<div class="col text-center">
<br><br><a href="full-gallery.html" class="btn btn-primary btn-lg scrollto">See more</a>
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Team Section ======= -->
<!--<section id="team" class="team section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Team</h2>
<h3>Our Hardworking <span>Team</span></h3>
<p>Ut possimus qui ut temporibus culpa velit eveniet modi omnis est adipisci expedita at voluptas atque vitae
autem.</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="100">
<div class="member">
<div class="member-img">
<img src="assets/img/team/team-1.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/papillarmuskel"><i class="bi bi-twitter"></i></a>
<a href="https://www.facebook.com/florim.cuculi"><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Walter White</h4>
<span>Chief Executive Officer</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="200">
<div class="member">
<div class="member-img">
<img src="assets/img/team/team-2.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/papillarmuskel"><i class="bi bi-twitter"></i></a>
<a href="https://www.facebook.com/florim.cuculi"><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Sarah Jhonson</h4>
<span>Product Manager</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="300">
<div class="member">
<div class="member-img">
<img src="assets/img/team/team-3.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/papillarmuskel"><i class="bi bi-twitter"></i></a>
<a href="https://www.facebook.com/florim.cuculi"><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>William Anderson</h4>
<span>CTO</span>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 d-flex align-items-stretch" data-aos="fade-up" data-aos-delay="400">
<div class="member">
<div class="member-img">
<img src="assets/img/team/team-4.jpg" class="img-fluid" alt="">
<div class="social">
<a href="https://twitter.com/papillarmuskel"><i class="bi bi-twitter"></i></a>
<a href="https://www.facebook.com/florim.cuculi"><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
<div class="member-info">
<h4>Amanda Jepson</h4>
<span>Accountant</span>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Pricing Section ======= -->
<!--<section id="pricing" class="pricing">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>Pricing</h2>
<h3>Check our <span>Pricing</span></h3>
<p>Ut possimus qui ut temporibus culpa velit eveniet modi omnis est adipisci expedita at voluptas atque vitae
autem.</p>
</div>
<div class="row">
<div class="col-lg-3 col-md-6" data-aos="fade-up" data-aos-delay="100">
<div class="box">
<h3>Free</h3>
<h4><sup>$</sup>0<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li class="na">Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-md-0" data-aos="fade-up" data-aos-delay="200">
<div class="box featured">
<h3>Business</h3>
<h4><sup>$</sup>19<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li class="na">Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0" data-aos="fade-up" data-aos-delay="300">
<div class="box">
<h3>Developer</h3>
<h4><sup>$</sup>29<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li>Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 mt-4 mt-lg-0" data-aos="fade-up" data-aos-delay="400">
<div class="box">
<span class="advanced">Advanced</span>
<h3>Ultimate</h3>
<h4><sup>$</sup>49<span> / month</span></h4>
<ul>
<li>Aida dere</li>
<li>Nec feugiat nisl</li>
<li>Nulla at volutpat dola</li>
<li>Pharetra massa</li>
<li>Massa ultricies mi</li>
</ul>
<div class="btn-wrap">
<a href="#" class="btn-buy">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Pricing Section -->
<!-- ======= Frequently Asked Questions Section ======= -->
<section id="faq" class="faq section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>F.A.Q</h2>
<h3>Frequently Asked <span>Questions</span></h3>
</div>
<div class="row justify-content-center">
<div class="col-xl-10">
<ul class="faq-list">
<li>
<div data-bs-toggle="collapse" class="collapsed question" href="#faq1">When should I be checked by a
cardiologist?<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i>
</div>
<div id="faq1" class="collapse" data-bs-parent=".faq-list">
<p>The doctor's answer to this specific question will be given soon.</p>
</div>
</li>
<li>
<div data-bs-toggle="collapse" href="#faq2" class="collapsed question">What are the first symptoms of
heart disease?<i class="bi bi-chevron-down icon-show"></i><i class="bi bi-chevron-up icon-close"></i>
</div>