-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1272 lines (1140 loc) · 84.7 KB
/
Copy pathindex.html
File metadata and controls
1272 lines (1140 loc) · 84.7 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>
<!-- Required meta tags -->
<!-- Website Preview Tags for Search Engines, Social Networks, and Messaging Platforms.
#### Place this data between the <head> tags of your website.
Created, tested, and optimized using Lookout by Unfurls.co.
https://unfurls.co/lookout
-->
<!-- Search Tags -->
<title>Breeze Car Rental Agency Athens Greece - Ενοικιάσεις Αυτοκινήτων Αθήνα</title>
<meta name="description" content="The Breeze Car Rental, is a car rental agency based in Athens, Greece. We are operating for 1.5 years now. Our growth relies on good rates and services">
<meta name="robots" content="follow, index">
<meta charset="UTF-8">
<!-- FB Open Graph data -->
<meta property="og:title" content="Car Rental Agency Athens Greece">
<meta property="og:type" content="website">
<meta property="og:image" content="https://breezerentals.gr/images/poloPlain01.jpg">
<meta property="og:description" content="The Breeze Car Rental, is a car rental agency based in Athens, Greece. We are operating for 1.5 years now. Our growth relies on good rates and services">
<meta property="og:url" content="https://breezerentals.gr">
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Car Rental Services Athens Greece">
<meta name="twitter:description" content="The Breeze Car Rental, is a car rental agency based in Athens, Greece. We are operating for 1.5 years now. Our growth relies on good rates and services">
<meta name="twitter:image" content="https://breezerentals.gr/images/services.jpg">
<meta name="twitter:url" content="https://breezerentals.gr">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!--Plugins css-->
<!--Plugins css-->
<link rel="stylesheet" href="css/plugins.css">
<!--Date picker css-->
<script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="1fa8f132-2ca9-4840-870d-37bba76aad48" type="text/javascript" async></script>
<!-- <link rel="stylesheet" href="css/daterangepicker.css"> -->
<link rel="stylesheet" href="https://unpkg.com/bootstrap-material-design@4.1.1/dist/css/bootstrap-material-design.min.css" integrity="sha384-wXznGJNEXNG1NFsbm0ugrLFMQPWswR3lds2VeinahP8N0zJw9VWSopbjv2x7WCvX" crossorigin="anonymous">
<link href="https://unpkg.com/gijgo@1.9.11/css/gijgo.min.css" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<!--Custom Styles-->
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&subset=greek" rel="stylesheet">
<!--GDPR COOKIE CODE START-->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script>
<script>
if(localStorage.language == 'Greek'){
window.location = '/GR.html'
}else if(localStorage.language == 'German'){
window.location = '/GE.html'
}
window.addEventListener("load", function(){
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#efefef",
"text": "#404040"
},
"button": {
"background": "#8ec760",
"text": "#ffffff"
}
},
"content": {
"message": "This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish",
"dismiss": "Accept",
}
})
});
</script>
<!--GDPR COOKIE CODE END-->
</head>
<body data-spy="scroll" data-target=".navbar" data-offset="90">
<script src="api/indexTranslator.js"></script>
<script src="api/languages.js"></script>
<script src="api/endpoints.js"></script>
<!--PreLoader-->
<div class="loader">
<div class="loader-inner">
<div class="loader-blocks">
<span class="block-1"></span>
<span class="block-2"></span>
<span class="block-3"></span>
<span class="block-4"></span>
<span class="block-5"></span>
<span class="block-6"></span>
<span class="block-7"></span>
<span class="block-8"></span>
<span class="block-9"></span>
<span class="block-10"></span>
<span class="block-11"></span>
<span class="block-12"></span>
<span class="block-13"></span>
<span class="block-14"></span>
<span class="block-15"></span>
<span class="block-16"></span>
</div>
</div>
</div>
<!--PreLoader Ends-->
<!-- header -->
<header class="site-header">
<nav class="navbar navbar-expand-lg fixed-bottom gradient_bg">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="images/logo_2.svg" alt="logo">
</a>
<button class="navbar-toggler navbar-toggler-right collapsed" type="button" data-toggle="collapse" data-target="#xenav">
<span> </span>
<span> </span>
<span> </span>
</button>
<div class="collapse navbar-collapse" id="xenav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link mainMenuNew" href="#aboutus">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link mainMenuNew" href="#our-team">Our Fleet</a>
</li>
<li class="nav-item">
<a class="nav-link mainMenuNew" href="#our-feature">Services</a>
</li>
<li class="nav-item">
<a class="nav-link mainMenuNew" href="#portfolio-xe">Proposals</a>
</li>
<li class="nav-item">
<a class="nav-link mainMenuNew outLink" href="https://reservations.breezerentals.gr?language=English">Reservations</a>
</li>
<li class="nav-item">
<a class="nav-link mainMenuNew" href="#our-testimonial">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link mainMenuNew outLink" href="https://blog.breezerentals.gr/" target="_blank" >Blog</a>
</li>
<li class="nav-item">
<a class="nav-link mainMenuNew" href="#contactus">Contact</a>
</li>
<!-- <li class="nav-item d-block d-sm-none">
<a class="nav-link mainMenuNew" href="#register" data-toggle="modal" data-target="#register">Register</a>
</li>
<li class="nav-item d-block d-sm-none">
<a class="nav-link mainMenuNew" href="#logIn" data-toggle="modal" data-target="#logIn">Log In</a>
</li> -->
</ul>
<ul class="navbar-nav">
<li class="nav-item dropdown">
<a id="changeLang" class="nav-link dropdown-toggle outLink"data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
Language - English
</a>
<div id="changeLanguage" class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<button id="Greek" class="dropdown-item" >Greek</button>
<button id="English" class="dropdown-item" >English</button>
<button id="German" class="dropdown-item" >German</button>
</div>
</li>
</ul>
</div>
</div>
<!--side menu open button-->
<a href="javascript:void(0)" class="d-none d-lg-inline-block sidemenu_btn" id="sidemenu_toggle"> <span></span> <span></span> <span></span> </a>
<style>
.registerLink {
color: #ffffff;
font-family: 'Open Sans';
font-size: 0.75rem;
padding-left: 0.5rem
}
.registerLink:hover{
color:#a5ce44;
}
</style>
</nav>
<!-- side menu -->
<div class="side-menu">
<div class="inner-wrapper">
<span class="btn-close" id="btn_sideNavClose"><i></i><i></i></span>
<nav class="side-nav">
<ul class="navbar-nav w-100">
<li class="nav-item active">
<a class="nav-link" href="#aboutus">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#our-team">Our Fleet</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#our-feature">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio-xe">Proposals</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://reservations.breezerentals.gr?language=English">Reservations
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#our-testimonial">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://blog.breezerentals.gr/" target="_blank">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contactus">Contact</a>
</li>
</ul>
<ul class="navbar-nav w-100 mt-4">
<li class="nav-item">
<p class="whitecolor">© 2019 Breeze Car Rental Company. </p>
</li>
</ul>
</nav>
</div>
</div>
<a id="close_side_menu" href="javascript:void(0);"></a>
<!-- End side menu -->
</header>
<!-- header -->
<!--Ful Screen Section Video with caption-->
<section class="full-screen parallax-video parallaxie center-block bg-video-container" id="ourhome" style="height: 541px; width: 1903px; background-image: url(video/bg_01.jpg); background-size: cover; background-repeat: no-repeat; background-attachment: fixed; background-position: center 0px; position: relative; overflow: hidden;">
<div class="container" id="formStep1">
<div class="row">
<div class="col-md-12 col-sm-10 p-3" style="z-index:1;">
<div class="row justify-content-md-center">
<div class="col-md-6"><img src="images/logo_2.svg" alt="logo" class="shadow-large px-1 img-fluid" maxwidth:"60%" ></div>
</div>
<div class="text-center video-content motos">
<h1 class="p-1"> Make a reservation to feel like a breeze </h1>
<h4>We provide you with full assistance during every step, with the one and only purpose of keeping you satisfied and making it an easier experience to go through.</h4>
<a href="https://reservations.breezerentals.gr?language=English" class="button btnprimary py-4 my-4" role="button" aria-pressed="true">Make A Reservation Now!</a>
</div>
<div class="center-item text-center video-content">
</div>
</div>
</div>
<div class="col-md-3 col-sm-1"></div>
</div>
<video class="my-background-video jquery-background-video" loop="" autoplay="" muted="" poster="video/thumb-slide.jpg" style="min-width: auto; min-height: auto; width: 1903px; height: auto; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); transition-duration: 500ms;">
<source src="video/video-slide.mp4" type="video/mp4">
<source src="video/video-slide.ogv" type="video/webm">
<source src="video/video-slide.webm" type="video/ogg">
</video>
<button class="jquery-background-video-pauseplay play" style="left: auto; right: 15px; top: 15px; bottom: auto;">
<span>Play</span>
</button>
</section>
<!--half img section-->
<section class="half-section" id="aboutus">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 col-lg-6 nopadding">
<div class="image img-container">
<img alt="" src="images/car_red.jpg" class="equalheight">
</div>
</div>
<div class="col-md-12 col-lg-6 nopadding">
<div class="split-box text-center center-block container-padding equalheight" id="btn-feature">
<div class="heading-title padding">
<span class=" wow fadeIn" data-wow-delay="300ms">About Us</span>
<h2 class="darkcolor bottom20 wow fadeIn" data-wow-delay="350ms">Better value, better cars</h2>
<p class="heading_space wow fadeIn" data-wow-delay="400ms">
The Breeze Car Rental, is a car rental agency based in Athens, Greece. We are new in business, operating for 1.5 years now. Our growth relies on our diverse team. We’ve succeeded because we cater to everyone, whatever their gender, nationality, language or culture. Our agency offers you low prices, great service and new vehicles.
</div>
</div>
</div>
</div>
</div>
</section>
<section class="half-section">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 col-lg-6 nopadding">
<div class="split-box text-center center-block container-padding equalheight">
<div class="heading-title padding">
<span class="wow fadeIn" data-wow-delay="300ms">Discover More</span>
<h2 class="darkcolor bottom20 wow fadeIn" data-wow-delay="350ms">hassle free experience</h2>
<p class="heading_space wow fadeIn" data-wow-delay="400ms">
At Breeze Car Rental everything we do is about giving you the freedom to discover more. We’ll move mountains to find you the right rental car, and bring you a smooth, hassle-free experience from start to finish.
</p>
</div>
</div>
</div>
<div class="col-md-12 col-lg-6 nopadding">
<div class="image img-container">
<img alt="" src="images/dropLocations.jpg" class="equalheight">
</div>
</div>
</div>
</div>
</section>
<!--half img section ends-->
<!-- WOrk Process-->
<section id="our-process" class="padding gradient_bg_default">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 text-center">
<div class="heading-title wow fadeInUp" data-wow-delay="300ms">
<h2 class="whitecolor">Why to Choose Our Agency<span class="fontregular"></span> </h2>
</div>
</div>
</div>
<div class="row">
<ul class="process-wrapp">
<li class="whitecolor wow fadeIn" data-wow-delay="350ms">
<span class="pro-step bottom20">01</span>
<p class="fontbold bottom25">Personalized Service</p>
<p>We know all customer in person and they are friends not just a customer.</p>
</li>
<li class="whitecolor wow fadeIn" data-wow-delay="400ms">
<span class="pro-step bottom20">02</span>
<p class="fontbold bottom25">Multiple Locations</p>
<p>We can deliver and get your car from many locations. </p>
</li>
<li class="whitecolor wow fadeIn" data-wow-delay="500ms">
<span class="pro-step bottom20">03</span>
<p class="fontbold bottom25">24/7 support</p>
<p>You can call us anytime to help you with any problem you are facing.</p>
</li>
<li class="whitecolor wow fadeIn" data-wow-delay="600ms">
<span class="pro-step bottom20">04</span>
<p class="fontbold bottom25">New Fleet</p>
<p>All cars are new and well maintained. From 2017 or newer. </p>
</li>
</ul>
</div>
</div>
</section>
<!--WOrk Process ends-->
<!-- Our Team-->
<section id="our-team" class="padding bglight">
<div class="container">
<div class="row">
<div class="col-md-8 offset-md-2 col-sm-12 text-center">
<div class="heading-title wow fadeInUp" data-wow-delay="300ms">
<span>You Never Forget The Smell Of A New Car</span>
<h2 class="darkcolor bottom20">Out Fleet</h2>
<p class="bottom10">
Breeze Car Rental offers VW polo cars for rental, 15 of which are bought in the late 2017. Safety is crucial, especially when you have to travel or move around for many hours or even days. Therefore, picking the perfect car for your own peace of mind during your trip is primary. Your safety matters and your satisfaction from our services motivates us to do much better in the future. No matter why you're traveling, you can count on our fleet of new and reliable rental cars to get you there in comfort safe and sound. Rent a car with Breeze Car Rental and make the most of travels.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-xs-12 top60 ">
<div class=" wow fadeIn shadow" data-wow-delay="350ms">
<div class="image shadow ">
<img src="images/poloInternal_01.jpg" alt="">
</div>
</div>
</div>
<div class="col-md-6 col-xs-12 top60">
<div class=" wow fadeIn shadow" data-wow-delay="400ms">
<div class="image shadow ">
<img src="images/poloPlain01.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Our Team ends-->
<!--Some Feature -->
<section id="our-feature" class="padding single-feature">
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-6 text-md-left text-center wow fadeInLeft" data-wow-delay="300ms">
<div class="heading-title heading_space">
<span>Services We Offer</span>
<h2 class="darkcolor bottom30">Awesome Features</h2>
</div>
<p><strong style="color:#a5ce44">Multi locations return: </strong> Flying home in the middle of the night? Not to worry, this Avis branch is open 24 hours a day, so you can return your vehicle whenever you need to.</p>
<p><strong style="color:#a5ce44">Breakdown assistance: </strong> We hope you won’t need to use it, but if you do there’s a toll-free number included in your rental agreement or displayed in your vehicle for 24/7 emergency roadside assistance. If necessary, we’ll give you a replacement so you can get back to enjoying your trip as soon as possible.</p>
<p><strong style="color:#a5ce44">Snow chains: </strong>Remember, it’s not always hot and sunny in Greece. If you’re driving between November and March, particularly in the mountains, we recommend hiring some snow chains to take with you, just in case.</p>
</div>
<div class="col-md-12 col-lg-6 wow fadeInRight" data-wow-delay="350ms">
<div class="image top50 shadow">
<img alt="SEO" src="images/services.jpg">
</div>
</div>
</div>
</div>
</section>
<!--Some Feature ends-->
<!--Gallery-->
<section id="portfolio-xe" class="bglight padding">
<div class="container">
<div class="row">
<div class="col-md-8 offset-md-2 col-sm-12 text-center">
<div class="heading-title wow fadeInUp" data-wow-delay="300ms">
<span>Our Proposals</span>
<h2 class="darkcolor bottom10">Escape from Athens</h2>
<p class="heading_space">
Arranging car hire in quality, safety and comfort, Breeze Car rentals is one of the most trusted car rental services. We can find you the best rental prices whenever you want - wherever you go. Make sure you check back here from time to time to see our latest amazing offers for car hire, discount coupons and more. Follow our blogs to stay updated on these details and get the fresh news in a timely manner, thus exploring through the escape proposals regarding our locations to find the best beaches or attractions around Athens or a few minutes away escapes from the city center. Everything for a pleasant experience. Everything for your peace of mind!
</div>
</div>
</div>
<div id="flat-gallery" class="cbp">
<div class="cbp-item itemshadow">
<img src="images/e1.jpg" alt="">
<div class="overlay center-block whitecolor">
<a class="plus" data-fancybox="gallery" href="https://blog.breezerentals.gr/category/beaches-around-attica/" target="_blank"></a>
<h4 class="top30">Secret beaches arround Attica</h4>
<p class="p-2 text-center">Find all secret beaches arround attica. Where you can swim in 45 minutes or less.</p>
</div>
</div>
<div class="cbp-item itemshadow">
<img src="images/e2.jpg" alt="">
<div class="overlay center-block whitecolor">
<a class="plus" data-fancybox="gallery" href="https://blog.breezerentals.gr/category/greek-food/" target="_blank"></a>
<h4 class="top30">Traditional Greek food</h4>
<p class="p-2 text-center">There are places only the locas know follow us to find out where you can taste the real Greek cousine</p>
</div>
</div>
<div class="cbp-item itemshadow">
<img src="images/e3.jpg" alt="">
<div class="overlay center-block whitecolor">
<a class="plus" data-fancybox="gallery" href="https://blog.breezerentals.gr/category/greek-country-side/" target="_blank"></a>
<h4 class="top30">Greek country side</h4>
<p class="p-2 text-center">Greece is not only beaches you can find lots of beautiful places you can drive and have an amazing experience</p>
</div>
</div>
<div class="cbp-item itemshadow">
<img src="images/e4.jpg" alt="">
<div class="overlay center-block whitecolor">
<a class="plus" data-fancybox="gallery" href="https://blog.breezerentals.gr/" target="_blank"></a>
<h4 class="top30">Famus Landmarks of Paros</h4>
<p class="p-2 text-center">Follow us and let us propose you many daily excursions to Paros Island.</p>
</div>
</div>
<div class="cbp-item itemshadow">
<img src="images/e5.jpg" alt="">
<div class="overlay center-block whitecolor">
<a class="plus" data-fancybox="gallery" href="https://blog.breezerentals.gr/" target="_blank"></a>
<h4 class="top30">Athens Tour</h4>
<p class="p-2 text-center">There are many places in Athens that you should visit. Let us give you a hint</p>
</div>
</div>
<div class="cbp-item itemshadow">
<img src="images/e6.jpg" alt="">
<div class="overlay center-block whitecolor">
<a class="plus" data-fancybox="gallery" href="https://blog.breezerentals.gr/" target="_blank"></a>
<h4 class="top30">Secret Gems</h4>
<p class="p-2 text-center">Let us take you to all secret gems of Paros Island just follow</p>
</div>
</div>
</div>
</div>
</section>
<!--Gallery ends -->
<!-- Testimonials -->
<section id="our-testimonial" class="padding">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 text-center">
<div class="heading-title bottom30 wow fadeInUp" data-wow-delay="300ms">
<span>Testimonials</span>
<h2 class="darkcolor">What People Said</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12">
<div id="testimonial-slider" class="owl-carousel">
<div class="item">
<div class="testimonial-wrapp">
<span class="quoted"><i class="fa fa-quote-right"></i></span>
<div class="testimonial-text">
<p class="bottom40">
I liked the pick up location, waiting time in the winter is minimal,
all good for my first experience. Polite, professional and quick just what is needed when on a short break.
</p>
</div>
<div class="testimonial-photo">
<img alt="" src="images/testimonial-4.jpg">
</div>
<h4 class="darkcolor">Kalvin Santers</h4>
<small class="defaultcolor">Tripadvisor</small>
</div>
</div>
<div class="item">
<div class="testimonial-wrapp">
<span class="quoted"><i class="fa fa-quote-right"></i></span>
<div class="testimonial-text">
<p class="bottom40">Good partner, with cheap rates, clear web site and an efficient reservation prcess</p>
</div>
<div class="testimonial-photo">
<img alt="" src="images/testimonial-2.jpg">
</div>
<h4 class="darkcolor">Sam Gordon</h4>
<small class="defaultcolor">Facebook</small>
</div>
</div>
<div class="item">
<div class="testimonial-wrapp">
<span class="quoted"><i class="fa fa-quote-right"></i></span>
<div class="testimonial-text">
<p class="bottom40">
Vehicle Rent provide hugely reduced hire costs over many other sites. Quite a revelation.
</p>
</div>
<div class="testimonial-photo">
<img alt="" src="images/testimonial-3.jpg">
</div>
<h4 class="darkcolor">Costas Papaikonomou</h4>
<small class="defaultcolor">Website</small>
</div>
</div>
<div class="item">
<div class="testimonial-wrapp">
<span class="quoted"><i class="fa fa-quote-right"></i></span>
<div class="testimonial-text">
<p class="bottom40">There are a lot of car rental agencies and they provide more less the same services but for the first time I have been treated as a king. Thank you Breeze well done</p>
</div>
<div class="testimonial-photo">
<img alt="" src="images/testimonial-1.jpg">
</div>
<h4 class="darkcolor">David Zucker</h4>
<small class="defaultcolor">Businessman</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--Testimonials Ends-->
<!-- Contact US -->
<section id="contactus">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="heading-title heading_space wow fadeInUp" data-wow-delay="300ms">
<span>Lets Get In Touch</span>
<h2 class="darkcolor">Contact Breeze Car Rentals</h2>
</div>
</div>
<div class="col-md-6 col-sm-12 margin_bottom wow fadeInUp" data-wow-delay="350ms">
<p>For pre-book rental, cancellations and everything else that we can help you with, you can contact us in our email address provided below or you can use our phone number instantly, anytime of the day. We will be more than flattered to assist you with everything that we can. We are determined to what we do and our purpose is to meet and in the mean time surpass your highest expectations.</p>
<div class="row">
<div class="col-md-6 col-sm-6 our-address top40">
<h5 class="bottom25">Our HQ Address</h5>
<p class="bottom15">72, Agias Triados, Ag. Paraskevi, Athens, Greece</p>
<a class="pickus" href="https://goo.gl/maps/7tkPPJnEFX92" data-text="Get Directions" target="_blank">Get Directions</a>
</div>
<div class="col-md-6 col-sm-6 our-address top40">
<h5 class="bottom25">Our Phones</h5>
<p class="bottom15">HQ Land Line: (+30) 210 600 0058 <span class="block">
Κινητό : (+30) 693 408 5040
</span> </p>
<a class="pickus" href="callto:+3063165370895" data-text="CALL US">CALL US</a>
</div>
<div class="col-md-6 col-sm-6 our-address top40">
<h5 class="bottom25">Office HQ email</h5>
<p class="bottom25">HQ email: info@breezerentals.gr <span class="block">Reservations :
reservations@breezerentals.gr</span> </p>
<a class="pickus" href="mailto:info@breezerentals.gr" data-text="Send us your Message">Send us your Message</a>
</div>
<div class="col-md-6 col-sm-6 our-address top40">
<h5 class="bottom25">Paros Island Office</h5>
<p class="">paros@breezerentals.gr</p>
<p class="bottom15"><span class="block"></span>Reservations: reservations@breezerentals.gr</span></p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12 margin_bottom">
<div id="smartLoader" class="ml-auto mr-auto text-center" style="display:none">
<!--PreLoader-->
<img class="img-responsive" src="images/loaders/loader.gif" alt="loading">
<h5 class="text-center text-muted">sending message...</h5>
<!--PreLoader Ends-->
</div>
<div id="formError" class="col-sm-12 text-center" style="display: none"></div>
<form id="support-email" class="getin_form wow fadeInUp" data-wow-delay="400ms" style='display:block' >
<div class="row">
<div class="col-sm-12" id="result" style="display:none"></div>
<div class="col-md-6 col-sm-6">
<div class="form-group bottom35">
<input name="firstName" class="form-control" type="text" placeholder="Name:" required id="firstName" name="first_name">
<small class="text-danger" id="firstNameError" style="display: none"></small>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="form-group bottom35">
<input name="lastName" class="form-control" type="text" placeholder="Last Name:" required id="lastName" name="last_name">
<small class="text-danger" id="lastNameError" style="display: none"></small>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="form-group bottom35">
<input name="email" class="form-control" type="email" placeholder="Email:" required id="email" name="email">
<small class="text-danger" id="emailError" style="display: none"></small>
</div>
</div>
<div class="col-md-6 col-sm-6">
<div class="form-group bottom35">
<input name="phone" class="form-control" type="tel" placeholder="Phone:" id="phone" name="phone">
<small class="text-danger" id="phoneError" style="display: none"></small>
</div>
</div>
<div class="col-md-12 col-sm-12">
<div class="form-group bottom35">
<textarea name="message" class="form-control" placeholder="Message" id="message" name="message"></textarea>
<small class="text-danger" id="messageError" style="display: none"></small>
</div>
</div>
<div class="col-sm-12">
<button type="submit" class="button btnprimary" id="">Send Now</button>
</div>
</div>
</form>
</div>
</div>
</div>
<!--Location Map here-->
</section>
<!--Contact US Ends-->
<!--Site Footer Here-->
<footer id="site-footer" class="padding_half">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 text-center">
<ul class="social-icons bottom25 wow fadeInUp" data-wow-delay="300ms" style="visibility: hidden; animation-delay: 300ms; animation-name: none;">
<li>
<a href="https://www.facebook.com/profile.php?id=278431269484379&ref=br_rs" target="_blank">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a href="https://www.google.com/maps/place/Breeze+car+rentals/@38.0159085,23.8402419,15z/data=!4m5!3m4!1s0x0:0xf69e0081e78d1f4b!8m2!3d38.0159085!4d23.8402419" target="_blank">
<i class="fab fa-google-plus-g"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/breeze_rentals/" target="_blank">
<i class="fab fa-instagram"></i>
</a>
</li>
<li>
<a href="mailto:info@breezerentals.gr" target="_blank"><i class="fas fa-at"></i> </a>
</li>
</ul>
<p class="copyrights wow fadeInUp" data-wow-delay="400ms" style="visibility: hidden; animation-delay: 400ms; animation-name: none;">
© 2019 Breeze Car rentals </p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 text-center consentLinks">
<a href="#" data-toggle="modal" data-target="#siteTerms" data-text="Πολιτική Απορρήτου">Terms Of Use</a>
<a href="#" data-toggle="modal" data-target="#faq" data-text="Πολιτική Απορρήτου">F.A.Q</a>
<a href="#" data-toggle="modal" data-target="#consent" data-text="Πολιτική Απορρήτου">Cookies Policy</a>
<a href="#" data-toggle="modal" data-target="#privacyPolicy" data-text="Πολιτική Απορρήτου">GDPR = Personal Data Policy</a>
</div>
</div>
</div>
</footer>
<!-- The Modal -->
<div class="modal fade" id="logIn" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header text-center gradient_bg">
<h4 class="modal-title w-100 font-weight-bold">Sign in</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body mx-3">
<form id="loginForm" method="post">
<div class="formError"></div>
<div class="md-form mb-5">
<label data-error="wrong" data-success="right" for="defaultForm-email" class="bmd-label-static">Your email</label>
<input type="email" name="email" id="defaultForm-email" class="form-control validate">
</div>
<div class="md-form mb-2">
<label data-error="wrong" data-success="right" for="defaultForm-pass" class="bmd-label-static">Your password</label>
<input type="password" name="password" id="defaultForm-pass" class="form-control validate">
</div>
</div>
<div class="modal-footer d-flex justify-content-center">
<button class="btn btn-myForm" type="submit" >Login</button>
</div>
</form>
</div>
</div>
</div>
<!--End Modal Login -->
<!-- The Modal -->
<div class="modal fade" id="register" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header text-center gradient_bg">
<h4 class="modal-title w-100 font-weight-bold">Register</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body mx-3">
<form id="signupForm" action="signUp" method="post">
<div class="md-form mb-2">
<input type="text" id="name" class="form-control validate">
<label data-error="wrong" data-success="right" for="name">Name</label>
</div>
<div class="md-form mb-2">
<input type="text" id="lastName" class="form-control validate">
<label data-error="wrong" data-success="right" for="lastName">Last Name</label>
</div>
<div class="md-form mb-2">
<input type="email" id="Email" class="form-control validate">
<label data-error="wrong" data-success="right" for="email">Your email</label>
</div>
<div class="md-form mb-2">
<input type="password" id="password" class="form-control validate">
<label data-error="wrong" data-success="right" for="password">Your password</label>
</div>
<div class="md-form mb-2">
<input type="password" id="repeatPassword" class="form-control validate">
<label data-error="wrong" data-success="right" for="repeatPassword">Repeat Password</label>
</div>
</form>
</div>
<div class="modal-footer d-flex justify-content-center">
<button class="btn btn-myForm">Register</button>
</div>
</div>
</div>
</div>
<!--End Modal register-->
<!-- The Modal -->
<div class="modal fade" id="consent">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header" style="color:#000;">
<h4>Cookies policy - Breeze Rentals</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<h4>Brief</h4>
<p>
We use technologies on the Website https://www.be-best.gr ("Website") to collect information that helps us improve your online experience.
In this Cookie Policy, we refer to these technologies, which include cookies, pixels and gifs, jointly "Cookies". This policy explains the different types of cookies used on the Site and how they are controlled. We reserve the right to change this cookie policy at any time. Check at the top of this page to see when this Cookie Policy applies.
</p>
<p>
Any changes to this Cookie Policy will be effective as soon as the revised Cookie Policy becomes available on the Site. Considering the use of Cookies, you can enjoy browsing the website. We hope that this policy helps you understand and feel more secure about our use of cookies. If you have any further questions, please contact us at info@breezerentals.gr
</p>
<h4>What is a Cookie?</h4>
<p>
Cookies are small text files that are installed on your computer, on your tablet, on your mobile, and generally on the device you are browsing through the Website https://www.be-best.gr They are widely used to make websites work better and more effectively. They can do this because websites can read and write these files, enabling them to recognize and remember important information that will make Internet use easier for you (for example, memorizing user preferences).
</p>
<h4>Types of Cookies Used</h4>
<p>Here is a list of different types of Cookies that we may use on the Site</p>
<h5>Essential Cookies. </h5>
<p>These cookies are important to our site so that we can navigate through it and use its capabilities. Without these absolutely necessary Cookies, we may not be able to provide specific services or features and our site will not work for a smooth user experience.</p>
<h5>Performance Cookies.</h5>
<p> Performance cookies, sometimes referred to as analytics cookies, collect information about your use of this website and allow us to improve its functionality. For example, performance cookies show us which pages are most frequently visited on the website, allows us to see the total usage patterns on the Website, helps us to record any difficulties you encounter with the Website.</p>
<h5>Functionality Cookies</h5>
<p> In some cases, we may use Functionality Cookies. Functionality Cookies allow us to remember the choices you make on our Website and provide more enriched / enhanced and more personalized features / features. All of these features help us improve your visit to our Website.
</p>
<h5>Targeted or Promotional Cookies. </h5>
<p>We and our service providers may use Targeted or Promotional Cookies to display ads that we believe are most relevant to you and your interests. For example, we may use targeted or promotional cookies to limit the frequency of viewing the same ad on our Site and to help us measure the effectiveness of promotional activities. These cookies remember what you've seen on our Web site and can share this information with other organizations, such as advertisers.</p>
<p>
For more information about your targeted and advertising cookies and how to leave, you can visit
</p>
<ul>
<li>www.youronlinechoices.com/uk/your-ad-choices</li>
<li>www.allaboutcookies.org/manage-cookies/index.html</li>
</ul>
<h4>Third parties using cookies on our website</h4>
<p>In some cases, we may work with third parties to provide services to our Website. Third-party advertisers and other businesses may use their own Cookies to collect information about your activities on our Site and / or the ads you have selected. This information can be used by them to provide ads that they think may be of interest to you based on what you've seen.</p>
<p>Third-party advertisers can also use this information to measure the effectiveness of their ads. We do not control these cookies and to disable or reject Third Party Cookies, please refer to the third party's website. You can also learn more about checking cookies in the section below.</p>
<h4>How can you control cookies?</h4>
<p>You may not allow or deny the acceptance of Cookies from this Site at any time, either by not activating the relevant settings in your browser, or by activating the setting in your browser that allows you to discard them.</p>
<p>You may refuse to accept Flash Cookies from this Website using the Adobe Flash management tools at www.adobe.com/security/ flashplayer. More information about the procedure you need to follow to disable cookies, if you have them turned on, can be found on the internet browser's website through the help window.</p>
<p>You may want to visit www.allaboutcookies.org/manage-cookies/index.html for information on the most frequently used browsers.</p>
<p>Please keep in mind that if cookies are not enabled or disabled, it is likely that all features of the Site will not work as intended.</p>
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-large btn-success" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="faq">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header text-center" style="color:#000;">
<h4>F.A.Q - Breeze Rentals</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<!--Accordion wrapper-->
<div class="accordion md-accordion" id="accordionEx" role="tablist" aria-multiselectable="true">
<!-- Accordion card -->
<div class="card">
<!-- Card header -->
<div class="card-header py-0 my-0" role="tab" id="headingOne1">
<a data-toggle="collapse" data-parent="#accordionEx" href="#collapseOne1" aria-expanded="true"
aria-controls="collapseOne1">
<h5 class="py-1 mt-1">
WHich is the shortest period I can rent a car from your agency
</h5>
</a>
</div>
<!-- Card body -->
<div id="collapseOne1" class="collapse show" role="tabpanel" aria-labelledby="headingOne1" data-parent="#accordionEx">
<div class="card-body">
The minimum period is 2 days and the maximum period is 30 days
</div>
</div>
</div>
<!-- Accordion card -->
<!-- Accordion card -->
<div class="card">
<!-- Card header -->
<div class="card-header py-0 my-0" role="tab" id="headingTwo2">
<a class="collapsed" data-toggle="collapse" data-parent="#accordionEx" href="#collapseTwo2"
aria-expanded="false" aria-controls="collapseTwo2">
<h5 class="py-1 mt-1">
Which is the difference of payment on line and payment on delivery?
</h5>
</a>
</div>
<!-- Card body -->
<div id="collapseTwo2" class="collapse" role="tabpanel" aria-labelledby="headingTwo2" data-parent="#accordionEx">
<div class="card-body">
You can pay the amount of your rental, by credit or debit card, by choosing "prepay online". If you use a debit card to prepay your online booking, you must also show a credit card on the same name when receiving the car.
Alternatively, you can choose to pay for your reservation when picking up the car from the service point you have chosen during the booking. In this case you will need to enter your credit / debit card details. Your card will not be charged unless the amount of € 80 plus VAT is pre-approved, which is also the guarantee in case of no show on receipt of the car </div>
</div>
</div>
<!-- Accordion card -->
<!-- Accordion card -->
<div class="card">
<!-- Card header -->
<div class="card-header py-0 my-0" role="tab" id="headingThree3">
<a class="collapsed" data-toggle="collapse" data-parent="#accordionEx" href="#collapseThree3"
aria-expanded="false" aria-controls="collapseThree3">
<h5 class="py-1 mt-1">
Will I receive any confirmation of my reservation?
</h5>
</a>
</div>
<!-- Card body -->
<div id="collapseThree3" class="collapse" role="tabpanel" aria-labelledby="headingThree3" data-parent="#accordionEx">
<div class="card-body">
After your reservation has been successfully completed, a confirmation of your reservation will be sent to the email address you provided at your booking.
</div>
</div>
</div>
<!-- Accordion card -->
<div class="card">
<!-- Card header -->
<div class="card-header py-0 my-0" role="tab" id="headingThree4">
<a class="collapsed" data-toggle="collapse" data-parent="#accordionEx" href="#collapseThree4"
aria-expanded="false" aria-controls="collapseThree4">
<h5 class="py-1 mt-1">
What if I cancel my booking? Is there a charge?
</h5>
</a>
</div>
<!-- Card body -->
<div id="collapseThree4" class="collapse" role="tabpanel" aria-labelledby="headingThree4" data-parent="#accordionEx">
<div class="card-body">
You can cancel your reservation up to 1 day before the time of pickup of the car you have stated in your reservation. For prepaid reservations, if you cancel your reservation up to 48 hours before the start of the rental, the full amount of the reservation will be refunded to your card. Otherwise, the amount of the booking will be refunded to you on the card less when you charge a late € 30 plus VAT refund within two (2) business days. If you make a prepaid reservation within 48 hours from the start of the rental, and then canceled, then the amount of the booking will be refunded on the card, less the late € 30 plus VAT. <br><br>
In bookings where payment is made upon receipt of the car, cancellation is allowed until the start of rental without any charge.<br>
In the event that you do not appear for the receipt of the rented vehicle on the day and time you stated on your reservation without prior notice, Breeze rentals reserves the right to cancel your reservation after 29 minutes without prior written notice.
<br><br>
For prepaid reservations, you will be refunded on the card the amount of the booking less the no-show charge, which is € 40 plus VAT. For bookings where payment is made upon receipt of the car, the no-show charge is € 30 plus VAT.
</div>
</div>
</div>
<!-- Accordion card -->
</div>
<!-- Accordion wrapper -->
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button type="button" class="btn btn-large btn-success" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="privacyPolicy">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header" style="color:#000;">
<h4>Privacy Policy - Breeze Rentals</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body">
<div class="container">
<div class="row">
<div class="col-md-12">
<h5>Breeze Car Rentals - https://breezerentals.gr Privacy Policy for Website Personal Data
</h5>
<p>
Thank you for visiting the Breeze Car Rentals website - https://breezerentals.gr, based in 72 Agia Triados, Agia Paraskevi Athens (Breezerentals.gr).
Before using our website, please read this Privacy Policy carefully.