iceholidays-frontend 0.3.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/iceholidays/frontend/actiontext.scss +119 -0
  3. data/app/assets/stylesheets/iceholidays/frontend/application.sass.scss +2194 -0
  4. data/app/assets/stylesheets/iceholidays/frontend/common.scss +317 -0
  5. data/app/assets/stylesheets/iceholidays/frontend/layout.scss +281 -0
  6. data/app/assets/stylesheets/iceholidays/frontend/utils/_antd_overrides.scss +122 -0
  7. data/app/assets/stylesheets/iceholidays/frontend/utils/_variables.scss +4 -0
  8. data/app/assets/stylesheets/iceholidays/frontend/widgets/filter_pills.scss +52 -0
  9. data/app/assets/stylesheets/iceholidays/frontend/widgets/search_bar.scss +116 -0
  10. data/app/controllers/iceholidays/frontend/posts_controller.rb +14 -0
  11. data/app/controllers/iceholidays/frontend/site_controller.rb +32 -0
  12. data/app/javascript/api-services/agents-api.service.ts +33 -0
  13. data/app/javascript/api-services/banners-api.service.ts +28 -0
  14. data/app/javascript/api-services/locations-api.service.ts +71 -0
  15. data/app/javascript/api-services/search-api.service.ts +16 -0
  16. data/app/javascript/api-services/series-api.service.ts +64 -0
  17. data/app/javascript/api-services/testimonials-api.service.ts +27 -0
  18. data/app/javascript/interfaces/agent.interface.ts +11 -0
  19. data/app/javascript/interfaces/banner.interface.ts +10 -0
  20. data/app/javascript/interfaces/country.interface.ts +19 -0
  21. data/app/javascript/interfaces/itinerary.interface.ts +111 -0
  22. data/app/javascript/interfaces/testimonial.interface.ts +6 -0
  23. data/app/javascript/react/App.tsx +32 -0
  24. data/app/javascript/react/components/Destinations.tsx +84 -143
  25. data/app/javascript/react/components/PriceDetails.tsx +146 -0
  26. data/app/javascript/react/components/Testimonials.tsx +68 -61
  27. data/app/javascript/react/components/shared/ContactAgentsForm.tsx +44 -0
  28. data/app/javascript/react/components/shared/Headline.tsx +30 -0
  29. data/app/javascript/react/components/shared/LocationDropdown.tsx +34 -0
  30. data/app/javascript/react/components/shared/LocationPostcards.tsx +52 -0
  31. data/app/javascript/react/components/shared/RibbonSection.tsx +21 -0
  32. data/app/javascript/react/index.js +3 -5
  33. data/app/javascript/react/layouts/MainFooter.tsx +97 -0
  34. data/app/javascript/react/layouts/MainHeader.tsx +83 -0
  35. data/app/javascript/react/layouts/MainLayout.tsx +21 -0
  36. data/app/javascript/react/pages/AboutUsPage.tsx +95 -0
  37. data/app/javascript/react/pages/BlogPage.tsx +81 -0
  38. data/app/javascript/react/pages/BlogShowPage.tsx +43 -0
  39. data/app/javascript/react/pages/ContactAgentsPage.tsx +185 -0
  40. data/app/javascript/react/pages/ContactUsPage.tsx +122 -0
  41. data/app/javascript/react/pages/CountriesPage.tsx +57 -0
  42. data/app/javascript/react/pages/Homepage.tsx +100 -0
  43. data/app/javascript/react/pages/ListingPage.tsx +292 -0
  44. data/app/javascript/react/pages/ShowPage.tsx +402 -0
  45. data/app/javascript/react/widgets/FilterPills.tsx +111 -0
  46. data/app/javascript/react/widgets/SearchBarWidget.tsx +58 -0
  47. data/app/views/iceholidays/frontend/posts/index.html.erb +9 -0
  48. data/app/views/iceholidays/frontend/posts/show.html.erb +2 -0
  49. data/app/views/iceholidays/frontend/site/index.html.erb +1 -24
  50. data/app/views/layouts/iceholidays/frontend/application.html.erb +2 -6
  51. data/config/routes.rb +10 -0
  52. data/lib/iceholidays/frontend/version.rb +1 -1
  53. data/public/iceholidays-assets/application.css +2638 -0
  54. data/public/iceholidays-assets/application.js +212 -651
  55. data/public/iceholidays-assets/application.js.map +4 -4
  56. data/public/iceholidays-assets/images/about-us_logo_mobile.png +0 -0
  57. data/public/iceholidays-assets/images/about_us.png +0 -0
  58. data/public/iceholidays-assets/images/about_us2.png +0 -0
  59. data/public/iceholidays-assets/images/blog.png +0 -0
  60. data/public/iceholidays-assets/images/blog1.png +0 -0
  61. data/public/iceholidays-assets/images/certificate1.png +0 -0
  62. data/public/iceholidays-assets/images/certificate2.png +0 -0
  63. data/public/iceholidays-assets/images/china_southern_airlines.png +0 -0
  64. data/public/iceholidays-assets/images/china_southern_airlines_icon.png +0 -0
  65. data/public/iceholidays-assets/images/competitiveness.png +0 -0
  66. data/public/iceholidays-assets/images/contact_agents.png +0 -0
  67. data/public/iceholidays-assets/images/contact_us.png +0 -0
  68. data/public/iceholidays-assets/images/contact_us_form.png +0 -0
  69. data/public/iceholidays-assets/images/destinations_logo.png +0 -0
  70. data/public/iceholidays-assets/images/ethical.png +0 -0
  71. data/public/iceholidays-assets/images/footer-bg_mobile.png +0 -0
  72. data/public/iceholidays-assets/images/hw_logo.png +0 -0
  73. data/public/iceholidays-assets/images/innovative.png +0 -0
  74. data/public/iceholidays-assets/images/logo_mobile.png +0 -0
  75. data/public/iceholidays-assets/images/plane.png +0 -0
  76. data/public/iceholidays-assets/images/social/ico_fb.png +0 -0
  77. data/public/iceholidays-assets/images/social/ico_ig.png +0 -0
  78. data/public/iceholidays-assets/images/social/ico_twitter.png +0 -0
  79. data/public/iceholidays-assets/images/social/ico_yt.png +0 -0
  80. data/public/iceholidays-assets/images/social.png +0 -0
  81. metadata +74 -71
  82. data/app/assets/stylesheets/iceholidays/frontend/application.scss +0 -904
  83. data/app/javascript/react/components/Homepage.tsx +0 -15
  84. data/app/javascript/react/components/HomepageBanner.tsx +0 -62
  85. data/app/views/layouts/iceholidays/frontend/shared/_footer.html.erb +0 -42
  86. data/app/views/layouts/iceholidays/frontend/shared/_header.html.erb +0 -20
  87. data/public/iceholidays-assets/images/Frame71.png +0 -0
  88. data/public/iceholidays-assets/images/africa.png +0 -0
  89. data/public/iceholidays-assets/images/banner1.png +0 -0
  90. data/public/iceholidays-assets/images/banner2.png +0 -0
  91. data/public/iceholidays-assets/images/china.png +0 -0
  92. data/public/iceholidays-assets/images/china2.png +0 -0
  93. data/public/iceholidays-assets/images/guangzhou.png +0 -0
  94. data/public/iceholidays-assets/images/guilin.png +0 -0
  95. data/public/iceholidays-assets/images/harbin.png +0 -0
  96. data/public/iceholidays-assets/images/hongkong.png +0 -0
  97. data/public/iceholidays-assets/images/inner_mongolia.png +0 -0
  98. data/public/iceholidays-assets/images/jiangxi.png +0 -0
  99. data/public/iceholidays-assets/images/kenya.png +0 -0
  100. data/public/iceholidays-assets/images/kenya2.png +0 -0
  101. data/public/iceholidays-assets/images/kunming.png +0 -0
  102. data/public/iceholidays-assets/images/slikroad.png +0 -0
  103. data/public/iceholidays-assets/images/southafrica.png +0 -0
  104. data/public/iceholidays-assets/images/tanzania.png +0 -0
  105. data/public/iceholidays-assets/images/uganda.png +0 -0
  106. /data/public/iceholidays-assets/images/{Group_71.png → about-us_logo.png} +0 -0
  107. /data/public/iceholidays-assets/images/{chongqing.png → china_listings_cover.png} +0 -0
  108. /data/public/iceholidays-assets/images/{logo_container.png → logo.png} +0 -0
@@ -0,0 +1,2194 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
16
+
17
+ @import url("//fonts.googleapis.com/css?family=Poppins:ital,wght@0,100;0,200;0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,200;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
18
+ @import "utils/_variables.scss";
19
+ @import "utils/_antd_overrides.scss";
20
+ @import "layout.scss";
21
+ @import "common.scss";
22
+ @import "widgets/search_bar.scss";
23
+ @import "widgets/filter_pills.scss";
24
+ @import "actiontext.scss";
25
+
26
+
27
+ body{
28
+ margin: 0;
29
+ background: #F2F2F2;
30
+ font-family: $font-default;
31
+ }
32
+
33
+
34
+ .flip{
35
+ -webkit-transform: scaleX(-1);
36
+ transform: scaleX(-1);
37
+ }
38
+
39
+ #homepage{
40
+
41
+ &_banner{
42
+ // min-height: 760px;
43
+ border-radius: 0px 0px 50px 50px;
44
+
45
+ [class~='ant-carousel'] {
46
+ .slick-prev{
47
+ inset-inline-start: 115px;
48
+ }
49
+ .slick-next{
50
+ inset-inline-end: 115px;
51
+ }
52
+ .slick-slide img{
53
+ width: 100%;
54
+ }
55
+ }
56
+ }
57
+ }
58
+
59
+
60
+ #popular-destinations{
61
+ margin-bottom: 30px;
62
+
63
+ h1{
64
+ font-family: $font-default;
65
+ text-align: center;
66
+ text-underline-position: from-font;
67
+ text-decoration-skip-ink: none;
68
+ text-transform: uppercase;
69
+ color: #545047;
70
+ font-size: 24px;
71
+ font-weight: 300;
72
+ line-height: 36px;
73
+
74
+ width: 80%;
75
+ margin: 20px auto;
76
+ }
77
+
78
+ .ant-tabs >.ant-tabs-nav{
79
+ display: none;
80
+ }
81
+
82
+
83
+ .country{
84
+ position: relative;
85
+ display: block;
86
+
87
+ &-image{
88
+ width: 100%;
89
+ height: 392px;
90
+ object-fit: cover;
91
+ object-position: center;
92
+ border-width: 5px 0px 5px 0px;
93
+ border-style: solid;
94
+ border-color: $primary-color;
95
+ }
96
+
97
+ &-name{
98
+ width: auto;
99
+ height: 42px;
100
+ top: 24px;
101
+ left: 24px;
102
+ position: absolute;
103
+ text-align: left;
104
+ font-size: 28px;
105
+ font-weight: 300;
106
+ line-height: 42px;
107
+ }
108
+
109
+ .bottom-logo{
110
+ position: absolute;
111
+ bottom: -35px;
112
+ border-color: #F2F2F2;
113
+ left: 0;
114
+ width: 100%;
115
+ text-align: center;
116
+ }
117
+ }
118
+
119
+
120
+ h2{
121
+ font-family: $font-default;
122
+ font-size: 22px;
123
+ font-weight: 600;
124
+ line-height: 33px;
125
+ text-align: left;
126
+ text-underline-position: from-font;
127
+ text-decoration-skip-ink: none;
128
+ }
129
+
130
+ .top-cities,
131
+ .more-cities,
132
+ .highlights {
133
+ padding: 10px 25px;
134
+ }
135
+
136
+ .more-cities {
137
+
138
+ .other-destinations{
139
+ display: inline-flex;
140
+ flex-wrap: wrap;
141
+ gap: 10px;
142
+
143
+ a{
144
+ font-family: $font-default;
145
+ font-size: 14px;
146
+ font-weight: 400;
147
+ line-height: 21px;
148
+ letter-spacing: 0.02em;
149
+ text-align: left;
150
+ text-underline-position: from-font;
151
+ text-decoration-skip-ink: none;
152
+ background: linear-gradient(360deg, $primary-color 5.04%, $secondary-color 99.13%);
153
+ color: #836848;
154
+
155
+ width: auto;
156
+ padding: 5px 15px;
157
+ gap: 4px;
158
+ border-radius: 20px;
159
+ opacity: 0px;
160
+ }
161
+ }
162
+ }
163
+
164
+ .highlights{
165
+ display: inline-flex;
166
+ overflow-x: auto;
167
+ gap: 10px;
168
+ margin-top: 20px;
169
+ width: 100%;
170
+
171
+ a{
172
+ flex-grow: 1;
173
+ flex-shrink: 0;
174
+ }
175
+
176
+ .tour{
177
+ min-width: 210px;
178
+ height: 352px;
179
+ padding: 15px 0px 0px 0px;
180
+ gap: 0px;
181
+ border-radius: 20px;
182
+ opacity: 0px;
183
+ object-fit: cover;
184
+ position: relative;
185
+ background-size: cover;
186
+ position: relative;
187
+ background-position: top;
188
+ background-color: linear-gradient(
189
+ rgba(0, 0, 0, 0.5),
190
+ rgba(0, 0, 0, 0.5)
191
+ );
192
+
193
+ .details{
194
+ position: absolute;
195
+ display: flex;
196
+ justify-content: space-between;
197
+ align-items: flex-end;
198
+ bottom: 10px;
199
+ width: 100%;
200
+ padding: 0 15px;
201
+
202
+ .city-name{
203
+ font-family: $font-default;
204
+ font-size: 20px;
205
+ font-weight: 400;
206
+ line-height: 30px;
207
+ letter-spacing: 0.05em;
208
+ text-align: left;
209
+ text-underline-position: from-font;
210
+ text-decoration-skip-ink: none;
211
+ color: $secondary-color;
212
+ }
213
+
214
+ .tour-count{
215
+ width: 80px;
216
+ font-family: $font-default;
217
+ font-size: 12px;
218
+ font-weight: 400;
219
+ line-height: 21px;
220
+ letter-spacing: 0.05em;
221
+ text-align: right;
222
+ text-underline-position: from-font;
223
+ text-decoration-skip-ink: none;
224
+ color: #FFFFFF;
225
+ display: inline-flex;
226
+ align-items: center;
227
+ justify-content: flex-end;
228
+ }
229
+ }
230
+ }
231
+ }
232
+ }
233
+
234
+
235
+ #testimonials-section{
236
+ display: none;
237
+ }
238
+
239
+
240
+ #listing-page{
241
+
242
+ &_header{
243
+ .location-dropdown{
244
+ margin: 0;
245
+ }
246
+
247
+ .location-filter.ant-select{
248
+ // line-height: 36px;
249
+ height: auto;
250
+ width: 100%;
251
+
252
+ .ant-select-selector{
253
+ background: #FFFF;
254
+ height: 36px;
255
+ }
256
+
257
+ .ant-select-selection-item{
258
+ font-family: $font-default;
259
+ font-family: Poppins;
260
+ font-weight: 500;
261
+ font-size: 16px;
262
+ line-height: 24px;
263
+ letter-spacing: 5%;
264
+ text-align: left;
265
+ text-underline-position: from-font;
266
+ text-decoration-skip-ink: none;
267
+ color: #836848;
268
+ text-transform: uppercase;
269
+ }
270
+
271
+ .ant-select-arrow{
272
+ inset-inline-end: 20px;
273
+ color: #836848;
274
+ }
275
+ }
276
+
277
+ }
278
+
279
+ &_body{
280
+ padding: 20px var(--side-padding);
281
+ }
282
+
283
+ #legends{
284
+ --legend-size: 10px;
285
+ padding: 20px 0;
286
+
287
+ .ant-badge-status-dot{
288
+ width: var(--legend-size);
289
+ height: var(--legend-size);
290
+ }
291
+
292
+ .ant-badge-status-text{
293
+ font-family: $font-default;
294
+ font-size: 12px;
295
+ font-weight: 400;
296
+ line-height: 18px;
297
+ letter-spacing: 0.05em;
298
+ text-align: center;
299
+ text-underline-position: from-font;
300
+ text-decoration-skip-ink: none;
301
+
302
+ }
303
+ }
304
+
305
+ #tours{
306
+ .tour{
307
+ flex-direction: column;
308
+
309
+ &_image{
310
+ height: 100%;
311
+
312
+ img{
313
+ width: 100%;
314
+ height: 100%;
315
+ border-top-left-radius: 20px;
316
+ border-top-right-radius: 20px;
317
+ }
318
+ }
319
+
320
+ &_details{
321
+ padding: 20px;
322
+ background-color: #FFFFFF;
323
+ height: 100%;
324
+
325
+ .ant-space{
326
+ .ant-space-item:first-child{
327
+ position: relative;
328
+ }
329
+ }
330
+
331
+ &_title{
332
+ font-family: $font-default;
333
+ font-size: 16px;
334
+ font-weight: 500;
335
+ line-height: 24px;
336
+ letter-spacing: 0.05em;
337
+ text-align: left;
338
+ text-underline-position: from-font;
339
+ text-decoration-skip-ink: none;
340
+ max-width: calc(100% - 30px);
341
+ overflow-wrap: anywhere;
342
+ }
343
+
344
+ &_subtitle{
345
+ font-family: $font-default;
346
+ font-size: 15px;
347
+ font-weight: 400;
348
+ line-height: 24px;
349
+ letter-spacing: 0.05em;
350
+ text-align: left;
351
+ text-underline-position: from-font;
352
+ text-decoration-skip-ink: none;
353
+ color: #00000066;
354
+ }
355
+
356
+ &_country{
357
+ font-family: $font-default;
358
+ font-size: 15px;
359
+ font-weight: 500;
360
+ line-height: 22.5px;
361
+ letter-spacing: 0.05em;
362
+ text-align: left;
363
+ text-underline-position: from-font;
364
+ text-decoration-skip-ink: none;
365
+ }
366
+
367
+ &_code{
368
+ color: $primary-color;
369
+ }
370
+
371
+ &_country, &_code{
372
+ svg{
373
+ vertical-align: middle;
374
+ }
375
+ }
376
+
377
+ &_info{
378
+ position: absolute;
379
+ right: 0;
380
+ top: 0;
381
+
382
+ svg{
383
+ color: $primary-color;
384
+ cursor: pointer;
385
+ }
386
+ }
387
+
388
+ &_dates{
389
+ padding: 12px 8px 17px 8px;
390
+
391
+ label{
392
+ font-family: $font-default;
393
+ font-size: 14px;
394
+ font-weight: 500;
395
+ line-height: 21px;
396
+ letter-spacing: 0.05em;
397
+ text-align: left;
398
+ text-underline-position: from-font;
399
+ text-decoration-skip-ink: none;
400
+ color: #434039;
401
+ }
402
+
403
+ .date-selector{
404
+ justify-content: center;
405
+ }
406
+ }
407
+ }
408
+
409
+ &_pricing{
410
+ background-color: $primary-color;
411
+ padding: 20px;
412
+ border-bottom-left-radius: 20px;
413
+ border-bottom-right-radius: 20px;
414
+ height: 100%;
415
+
416
+ &_details{
417
+ align-items: baseline;
418
+ justify-content: center;
419
+ gap: 10px;
420
+ }
421
+
422
+ &>.ant-space{
423
+ height: 100%;
424
+ width: 100%;
425
+ justify-content: center;
426
+ }
427
+
428
+ .ant-space-item{
429
+ width: 100%;
430
+ }
431
+
432
+ span{
433
+ font-family: $font-default;
434
+ font-size: 15px;
435
+ font-weight: 400;
436
+ line-height: 22.5px;
437
+ letter-spacing: 0.05em;
438
+ text-align: center;
439
+ text-underline-position: from-font;
440
+ text-decoration-skip-ink: none;
441
+
442
+ &.price{
443
+ font-size: 28px;
444
+ font-weight: 500;
445
+ line-height: 42px;
446
+ color: #FFFFFF;
447
+ }
448
+
449
+ }
450
+
451
+ .select-tour{
452
+ padding: 5px 27px 5px 27px;
453
+ border-radius: 20px;
454
+ font-family: $font-default;
455
+ font-size: 15px;
456
+ font-weight: 700;
457
+ line-height: 22.5px;
458
+ letter-spacing: 0.05em;
459
+ text-align: center;
460
+ text-underline-position: from-font;
461
+ text-decoration-skip-ink: none;
462
+ color: $primary-color;
463
+ background-color: #FFFFFF;
464
+ display: block;
465
+ width: 100%;
466
+ }
467
+ }
468
+ }
469
+ }
470
+ }
471
+
472
+ .tour_details_description.ant-modal{
473
+ .ant-modal-title{
474
+ font-family: $font-default;
475
+ font-size: 16px;
476
+ font-weight: 700;
477
+ line-height: 24px;
478
+ letter-spacing: 0.05em;
479
+ text-align: left;
480
+ text-underline-position: from-font;
481
+ text-decoration-skip-ink: none;
482
+ color: #836848;
483
+ }
484
+
485
+ .ant-modal-body{
486
+ overflow-y: auto;
487
+ max-height: 500px;
488
+ }
489
+ }
490
+
491
+ .tour_details_itinerary.ant-modal{
492
+ #itinerary-file img{
493
+ width: 100%;
494
+ object-fit: contain;
495
+ }
496
+ }
497
+
498
+ .tour_details_all_dates.ant-modal{
499
+ .ant-modal-title{
500
+ padding-right: 30px;
501
+ }
502
+ .custom-modal-header-title{
503
+ font-family: $font-default;
504
+ font-size: 20px;
505
+ font-weight: 500;
506
+ line-height: 30px;
507
+ letter-spacing: 0.05em;
508
+ text-align: left;
509
+ text-underline-position: from-font;
510
+ text-decoration-skip-ink: none;
511
+ color: #434039;
512
+ }
513
+
514
+ .custom-modal-header-legends{
515
+ font-family: $font-default;
516
+ font-size: 12px;
517
+ font-weight: 400;
518
+ line-height: 18px;
519
+ letter-spacing: 0.05em;
520
+ text-align: center;
521
+ text-underline-position: from-font;
522
+ text-decoration-skip-ink: none;
523
+ color: #545047;
524
+
525
+ --legend-size: 10px;
526
+
527
+ .ant-badge-status-dot{
528
+ width: var(--legend-size);
529
+ height: var(--legend-size);
530
+ }
531
+
532
+ }
533
+
534
+ .ant-modal-footer{
535
+ text-align: center;
536
+
537
+ button{
538
+ padding: 5px 27px 5px 27px;
539
+ border-radius: 32px;
540
+ background: #AA853E;
541
+ color: #FFFFFF;
542
+ text-transform: uppercase;
543
+
544
+ &:hover{
545
+ color: #FFFFFF;
546
+ background: $primary-color;
547
+ border-color: $primary-color;
548
+ outline: $primary-color;
549
+ }
550
+ }
551
+ }
552
+ }
553
+
554
+ .country-filter_option{
555
+ font-family: $font-default;
556
+ font-size: 20px;
557
+ font-weight: 400;
558
+ line-height: 30px;
559
+ letter-spacing: 0.05em;
560
+ text-align: left;
561
+ text-underline-position: from-font;
562
+ text-decoration-skip-ink: none;
563
+ text-transform: uppercase;
564
+ }
565
+
566
+ *{
567
+ //can change to container width
568
+ --side-padding: 20px;
569
+ }
570
+
571
+ #show-page{
572
+ $transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
573
+
574
+ &_header{
575
+ h1{
576
+ font-size: 18px;
577
+ line-height: 27px;
578
+ letter-spacing: 0%;
579
+ text-align: left;
580
+ overflow-wrap: anywhere;
581
+ }
582
+
583
+ .tour_details{
584
+ display: inline-flex;
585
+ gap: 10px;
586
+ opacity: 0.5;
587
+
588
+ span{
589
+ font-family: $font-default;
590
+ font-size: 16px;
591
+ font-weight: 500;
592
+ line-height: 24px;
593
+ letter-spacing: 0.05em;
594
+ text-align: left;
595
+ text-underline-position: from-font;
596
+ text-decoration-skip-ink: none;
597
+ }
598
+ }
599
+ }
600
+
601
+ #date-selector{
602
+ padding: 20px var(--side-padding);
603
+
604
+ [class~='ant-carousel'] {
605
+ .slick-slide > div{
606
+ padding: 0 5px;
607
+ }
608
+
609
+ .slick-arrow{
610
+ color: rgba(149, 148, 146, 1);
611
+
612
+ &:hover{
613
+ color: $primary-color;
614
+ }
615
+ }
616
+
617
+ .slick-prev{
618
+ inset-inline-start: -40px;
619
+ }
620
+
621
+ .slick-next{
622
+ inset-inline-end: -40px;
623
+ }
624
+ }
625
+ .date-box{
626
+ background: #FFFFFF;
627
+ border: 1px solid #DFB16333;
628
+ padding: 6px 13px 6px 13px;
629
+ border-radius: 20px;
630
+ border-width: 1px;
631
+ color:rgba(0, 0, 0, 0.8);
632
+ cursor: pointer;
633
+ text-align: center;
634
+
635
+ &_date{
636
+ font-family: $font-default;
637
+ font-size: 15px;
638
+ font-weight: 400;
639
+ line-height: 22.5px;
640
+ letter-spacing: 0.05em;
641
+ text-align: center;
642
+ text-underline-position: from-font;
643
+ text-decoration-skip-ink: none;
644
+ }
645
+
646
+ span{
647
+ font-family: $font-default;
648
+ font-size: 12px;
649
+ font-weight: 400;
650
+ line-height: 18px;
651
+ letter-spacing: 0.05em;
652
+ text-align: center;
653
+ text-underline-position: from-font;
654
+ text-decoration-skip-ink: none;
655
+ opacity: 50%;
656
+ }
657
+
658
+ &_price{
659
+ font-family: $font-default;
660
+ font-size: 14px;
661
+ font-weight: 400;
662
+ line-height: 21px;
663
+ letter-spacing: 0.05em;
664
+ text-align: center;
665
+ text-underline-position: from-font;
666
+ text-decoration-skip-ink: none;
667
+ }
668
+
669
+ &.selected{
670
+ background-color: $primary-color;
671
+ color: rgba(249, 246, 243, 1);
672
+
673
+ .date-box_date, .date-box_price{
674
+ font-weight: 700;
675
+ }
676
+ }
677
+ }
678
+ }
679
+
680
+ &_body{
681
+ padding: 20px var(--side-padding);
682
+ gap: 20px;
683
+
684
+ .details{
685
+ // max-width: 790px;
686
+ }
687
+
688
+ .details-container{
689
+ padding: 20px;
690
+ gap: 20px;
691
+ border-radius: 20px;
692
+ background: #FFFFFF;
693
+ display: flex;
694
+ flex-direction: column;
695
+ box-shadow: 0px 5px 20px 0px #00000026;
696
+
697
+ &_header{
698
+ font-family: $font-default;
699
+ font-size: 16px;
700
+ font-weight: 700;
701
+ line-height: 24px;
702
+ letter-spacing: 0.05em;
703
+ text-align: left;
704
+ text-underline-position: from-font;
705
+ text-decoration-skip-ink: none;
706
+ color: $supportive-color;
707
+ }
708
+
709
+ &_content{
710
+ #things-to-know{
711
+ padding: 20px;
712
+ border-radius: 5px;
713
+ background: #F9F6F3;
714
+ display: grid;
715
+ grid-template-columns: repeat(2, 1fr);
716
+ justify-content: center;
717
+ text-align: center;
718
+ gap: 20px;
719
+
720
+ .item{
721
+ color: $supportive-color;
722
+
723
+ .icon{
724
+ opacity: 0.8;
725
+ }
726
+
727
+ label{
728
+ font-family: $font-default;
729
+ font-size: 12px;
730
+ font-weight: 400;
731
+ line-height: 18px;
732
+ letter-spacing: 0.05em;
733
+ text-align: center;
734
+ text-underline-position: from-font;
735
+ text-decoration-skip-ink: none;
736
+ }
737
+
738
+ &.guaranteed{
739
+ color: $primary-color;
740
+ }
741
+ }
742
+
743
+ }
744
+
745
+ #description{
746
+ position: relative;
747
+ transition: height $transition;
748
+
749
+ &+button{
750
+ margin-top: 10px;
751
+ font-family: $font-default;
752
+ font-weight: 500;
753
+ font-size: 14px;
754
+ line-height: 21px;
755
+ letter-spacing: 5%;
756
+ text-align: right;
757
+ color: #545047;
758
+ }
759
+
760
+ &.collapsed{
761
+ height: 300px;
762
+ overflow: hidden;
763
+
764
+ &::after{
765
+ content: "";
766
+ position: absolute;
767
+ z-index: 1;
768
+ bottom: 0;
769
+ left: 0;
770
+ pointer-events: none;
771
+ background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 90%);
772
+ width: 100%;
773
+ height: 5em;
774
+ transition: opacity $transition;
775
+ }
776
+
777
+ &+button{
778
+ margin-top: 0px;
779
+ }
780
+ }
781
+
782
+ }
783
+
784
+ .schedule{
785
+ padding: 20px;
786
+ gap: 32px;
787
+ border-radius: 5px;
788
+ background: #F9F6F3;
789
+ display: inline-flex;
790
+ align-items: center;
791
+ justify-content: space-between;
792
+ flex-direction: column;
793
+ text-align: center;
794
+
795
+ .flight-date{
796
+ width: 100%;
797
+ text-align: left;
798
+
799
+ svg{
800
+ vertical-align: middle;
801
+ margin-right: 12px;
802
+
803
+ }
804
+ span{
805
+ color: rgba(91, 71, 19, 0.7);
806
+ font-family: $font-default;
807
+ font-size: 12px;
808
+ font-weight: 400;
809
+ line-height: 18px;
810
+ letter-spacing: 0.05em;
811
+ text-align: left;
812
+ text-underline-position: from-font;
813
+ text-decoration-skip-ink: none;
814
+ }
815
+ }
816
+
817
+ .flight-details{
818
+ display: flex;
819
+ flex-direction: column;
820
+ gap: 11px;
821
+
822
+ label{
823
+ font-family: $font-default;
824
+ font-size: 12px;
825
+ font-weight: 700;
826
+ line-height: 18px;
827
+ letter-spacing: 0.05em;
828
+ text-align: left;
829
+ text-underline-position: from-font;
830
+ text-decoration-skip-ink: none;
831
+ color: rgba(0, 0, 0, 0.8)
832
+ }
833
+
834
+ img{
835
+ width: 14px;
836
+ height: 14px;
837
+ vertical-align: middle;
838
+ margin-right: 5px;
839
+ }
840
+
841
+ span{
842
+ font-family: $font-default;
843
+ font-size: 12px;
844
+ font-weight: 400;
845
+ line-height: 18px;
846
+ letter-spacing: 0.05em;
847
+ text-align: left;
848
+ text-underline-position: from-font;
849
+ text-decoration-skip-ink: none;
850
+ color: rgba(0, 0, 0, 0.8);
851
+ }
852
+ }
853
+
854
+ .flight-time{
855
+ .from, .to{
856
+ display: flex;
857
+ flex-direction: column;
858
+ gap: 8px;
859
+ }
860
+
861
+ label{
862
+ font-family: $font-default;
863
+ font-size: 15px;
864
+ font-weight: 700;
865
+ line-height: 22.5px;
866
+ letter-spacing: 0.05em;
867
+ text-align: center;
868
+ text-underline-position: from-font;
869
+ text-decoration-skip-ink: none;
870
+ color: rgba(0, 0, 0, 1);
871
+ }
872
+
873
+ span{
874
+ font-family: $font-default;
875
+ font-size: 12px;
876
+ font-weight: 300;
877
+ line-height: 18px;
878
+ text-underline-position: from-font;
879
+ text-decoration-skip-ink: none;
880
+ color: rgba(91, 71, 19, 0.7);
881
+ }
882
+
883
+
884
+ .from{
885
+ align-items: flex-end;
886
+
887
+ span{
888
+ text-align: right;
889
+ }
890
+ }
891
+
892
+ .to{
893
+ align-items: flex-start;
894
+
895
+ span{
896
+ text-align: left;
897
+ }
898
+ }
899
+
900
+ &_icon{
901
+ width: 53px;
902
+
903
+ img{
904
+ vertical-align: middle;
905
+ }
906
+
907
+ &::before, &::after{
908
+ /* Styles kept */
909
+ width: 25%;
910
+ height: 1px;
911
+
912
+ /* Changed to border-top (instead of border) to simulate a line better */
913
+ border-top: 1px solid #ccc;
914
+
915
+ /* Styles added */
916
+ display: inline-block;
917
+ content: '';
918
+
919
+ /* Use padding to vertical align the line */
920
+ /* Use padding in em for a responsive icon height */
921
+ padding-top: 0.2em;
922
+
923
+ /* Use margins to give the lines some spacement around the icon */
924
+ /* Use margins in % for a responsive spacement */
925
+ margin-left: 5%;
926
+ margin-right: 5%;
927
+ }
928
+ }
929
+ }
930
+ }
931
+
932
+ .super-promo{
933
+ background: rgba(249, 226, 152, 1);
934
+ }
935
+
936
+ .promo1{
937
+ background: rgba(249, 246, 243, 1);
938
+ }
939
+
940
+ .normal{
941
+ background: rgba(245, 245, 245, 1);
942
+ }
943
+
944
+ #pricing-table{
945
+ display: none;
946
+ }
947
+
948
+ #pricing-list{
949
+ .ant-card .ant-card-body{
950
+ padding: 10px 15px;
951
+ }
952
+
953
+ .pricing-header{
954
+ font-family: $font-default;
955
+ font-weight: 600;
956
+ font-size: 14px;
957
+ line-height: 21px;
958
+ letter-spacing: 2%;
959
+ text-align: center;
960
+ color: #836848;
961
+ margin-bottom: 10px;
962
+ text-transform: capitalize;
963
+ }
964
+
965
+ .pricing-body{
966
+
967
+ .pricing {
968
+ display: flex;
969
+ justify-content: space-between;
970
+ color: #545047;
971
+
972
+ .category{
973
+ font-family: $font-default;
974
+ font-weight: 400;
975
+ font-size: 12px;
976
+ line-height: 18px;
977
+ letter-spacing: 5%;
978
+ }
979
+ .price{
980
+ font-family: Poppins;
981
+ font-weight: 500;
982
+ font-size: 14px;
983
+ line-height: 21px;
984
+ letter-spacing: 5%;
985
+ text-align: center;
986
+
987
+ }
988
+ }
989
+ }
990
+
991
+ }
992
+ }
993
+ }
994
+
995
+ .toggle_contact-agent{
996
+ cursor: pointer;
997
+ border-bottom-left-radius: 20px;
998
+ border-top-left-radius: 20px;
999
+ color: #FFFFFF;
1000
+ background-color: #836848;
1001
+ font-size: 12px;
1002
+ line-height: 18px;
1003
+ letter-spacing: 5%;
1004
+ padding: 11px 15px 11px 15px;
1005
+ width: 135px;
1006
+ position: absolute;
1007
+ right: 0;
1008
+ }
1009
+
1010
+ .contact-agent-sider{
1011
+ position: fixed;
1012
+ z-index: 1;
1013
+ right: 0;
1014
+ top: 110px;
1015
+ }
1016
+
1017
+ .contact-agent{
1018
+ height: auto;
1019
+ background: #FFFFFF;
1020
+ border-radius: 20px;
1021
+ border-bottom-right-radius: 0;
1022
+ border-top-right-radius: 0;
1023
+ display: none;
1024
+
1025
+ &_header{
1026
+ background-color: #F9E298;
1027
+ font-family: $font-default;
1028
+ font-size: 15px;
1029
+ font-weight: 400;
1030
+ line-height: 22.5px;
1031
+ letter-spacing: 0.05em;
1032
+ text-align: left;
1033
+ text-underline-position: from-font;
1034
+ text-decoration-skip-ink: none;
1035
+ color: #545047;
1036
+ padding: 11px 15px 11px 15px;
1037
+ border-radius: inherit;
1038
+ border-bottom-left-radius: 0;
1039
+ border-bottom-right-radius: 0;
1040
+ display: flex;
1041
+ align-items: center;
1042
+ justify-content: space-between;
1043
+ }
1044
+
1045
+ &_content{
1046
+ padding: 10px 15px 15px 15px;
1047
+
1048
+ .ant-form-item{
1049
+ margin-bottom: 15px;
1050
+
1051
+ &:last-child{
1052
+ margin-bottom: 0;
1053
+ }
1054
+ }
1055
+
1056
+ .search-results{
1057
+ margin-top: 10px;
1058
+
1059
+ .agent-info{
1060
+ .company{
1061
+ font-family: $font-default;
1062
+ font-size: 10px;
1063
+ font-weight: 600;
1064
+ line-height: 15px;
1065
+ text-align: left;
1066
+ text-underline-position: from-font;
1067
+ text-decoration-skip-ink: none;
1068
+ min-height: 20px;
1069
+ color: rgba(0, 0, 0, 0.8);
1070
+ max-width: 180px;
1071
+ cursor: pointer;
1072
+ }
1073
+
1074
+ .contact-numbers{
1075
+ display: inline-flex;
1076
+ gap: 2px;
1077
+ }
1078
+ }
1079
+ }
1080
+ }
1081
+
1082
+ }
1083
+
1084
+ .show-contact-agent-mobile{
1085
+ .toggle_contact-agent{
1086
+ display: none;
1087
+ }
1088
+ .contact-agent{
1089
+ display: block;
1090
+ }
1091
+ }
1092
+ }
1093
+ }
1094
+
1095
+ .agent-full-contact-details{
1096
+ .ant-modal-title{
1097
+ img{
1098
+ height: 40px;
1099
+ object-fit: cover;
1100
+ }
1101
+ }
1102
+ .contact-details{
1103
+ padding: 15px 10px 15px 10px;
1104
+ background: rgba(245, 245, 245, 1);
1105
+
1106
+ h2{
1107
+ font-family: $font-default;
1108
+ font-weight: 600;
1109
+ font-size: 16px;
1110
+ line-height: 24px;
1111
+ letter-spacing: 3%;
1112
+ color: #000000CC;
1113
+ }
1114
+
1115
+ svg{
1116
+ color: rgba(170, 133, 62, 1);
1117
+ background: rgba(255, 255, 255, 1);
1118
+ height: Fixed (25px)px;
1119
+ padding: 3.75px;
1120
+ border-radius: 62.5px;
1121
+ margin-right: 6px;
1122
+ vertical-align: middle;
1123
+ }
1124
+
1125
+ span{
1126
+ font-family: $font-default;
1127
+ font-size: 14px;
1128
+ font-weight: 400;
1129
+ line-height: 21px;
1130
+ letter-spacing: 0.03em;
1131
+ text-align: left;
1132
+ text-underline-position: from-font;
1133
+ text-decoration-skip-ink: none;
1134
+ }
1135
+ }
1136
+ }
1137
+
1138
+ #about-signature-tours{
1139
+ height: 100%;
1140
+ padding: 45px;
1141
+
1142
+ h1{
1143
+ font-family: $font-default;
1144
+ font-size: 24px;
1145
+ font-weight: 300;
1146
+ line-height: 36px;
1147
+ letter-spacing: 0.06em;
1148
+ text-align: center;
1149
+ text-underline-position: from-font;
1150
+ text-decoration-skip-ink: none;
1151
+ color: #545047;
1152
+ }
1153
+
1154
+ p{
1155
+ font-family: $font-default;
1156
+ font-size: 14px;
1157
+ font-weight: 300;
1158
+ line-height: 24px;
1159
+ letter-spacing: 0.03em;
1160
+ text-align: left;
1161
+ text-underline-position: from-font;
1162
+ text-decoration-skip-ink: none;
1163
+ color: #545047;
1164
+ margin: 20px 0;
1165
+ display: block;
1166
+ }
1167
+
1168
+ #about-st-feature{
1169
+
1170
+ #feature{
1171
+ // width: 419px;
1172
+ height: 246px;
1173
+ gap: 0px;
1174
+ border-radius: 20px;
1175
+ opacity: 0px;
1176
+ background: #FFFFFF;
1177
+ box-shadow: 0px 5px 20px 0px #00000026;
1178
+
1179
+ &> img{
1180
+ width: 100%;
1181
+ height: 183.24px;
1182
+ gap: 0px;
1183
+ border-radius: 20px;
1184
+ opacity: 0px;
1185
+ border: 3px solid #FFFFFF;
1186
+
1187
+ object-fit: cover;
1188
+ object-position: 50% 33%;
1189
+ display: block;
1190
+ box-sizing: border-box;
1191
+ }
1192
+
1193
+ #st-brand{
1194
+ display: flex;
1195
+ justify-content: space-between;
1196
+ align-items: center;
1197
+ padding: 5px 23px 0px 12px;
1198
+
1199
+ span{
1200
+ font-family: $font-default;
1201
+ font-size: 20px;
1202
+ font-weight: 400;
1203
+ line-height: 30px;
1204
+ letter-spacing: 0.05em;
1205
+ text-align: left;
1206
+ text-underline-position: from-font;
1207
+ text-decoration-skip-ink: none;
1208
+ }
1209
+
1210
+ #st-logo{
1211
+ width: 47px;
1212
+ height: 43.76px;
1213
+ gap: 0px;
1214
+ opacity: 0px;
1215
+ }
1216
+ }
1217
+ }
1218
+ }
1219
+ }
1220
+
1221
+ #about-us-page{
1222
+ &_body{
1223
+ padding: 20px var(--side-padding);
1224
+
1225
+ #introduction{
1226
+ img{
1227
+ width: 42.96px;
1228
+ height: 40px;
1229
+ }
1230
+
1231
+ h1{
1232
+ font-family: $font-default;
1233
+ font-size: 24px;
1234
+ font-weight: 500;
1235
+ line-height: 36px;
1236
+ text-align: left;
1237
+ text-underline-position: from-font;
1238
+ text-decoration-skip-ink: none;
1239
+ }
1240
+ }
1241
+
1242
+ #article{
1243
+ background: #FFFFFF;
1244
+ padding: 32px;
1245
+ border-radius: 20px;
1246
+ box-shadow: 0px 5px 20px 0px #E1B65B33;
1247
+
1248
+ img{
1249
+ // width: 1056px;
1250
+ height: 644px;
1251
+ border-radius: 20px;
1252
+ width: 100%;
1253
+ object-fit: cover;
1254
+ }
1255
+
1256
+ p{
1257
+ font-family: $font-default;
1258
+ font-size: 14px;
1259
+ font-weight: 300;
1260
+ line-height: 27px;
1261
+ text-align: left;
1262
+ text-underline-position: from-font;
1263
+ text-decoration-skip-ink: none;
1264
+ color: #000000;
1265
+ }
1266
+ }
1267
+ }
1268
+
1269
+ .section-header{
1270
+ // width: 741px;
1271
+ // margin: auto;
1272
+
1273
+ h2{
1274
+ font-family: $font-default;
1275
+ font-size: 24px;
1276
+ font-weight: 500;
1277
+ line-height: 36px;
1278
+ text-align: center;
1279
+ text-underline-position: from-font;
1280
+ text-decoration-skip-ink: none;
1281
+ color: #000000;
1282
+ }
1283
+ p{
1284
+ font-family: $font-default;
1285
+ font-size: 14px;
1286
+ font-weight: 300;
1287
+ line-height: 27px;
1288
+ text-align: center;
1289
+ text-underline-position: from-font;
1290
+ text-decoration-skip-ink: none;
1291
+ color: #000000;
1292
+ }
1293
+ }
1294
+
1295
+ .items{
1296
+ display: flex;
1297
+ flex-direction: column;
1298
+ align-items: center;
1299
+ gap: 12px;
1300
+ color: #000000;
1301
+ padding: 24px;
1302
+
1303
+ label{
1304
+ font-family: $font-default;
1305
+ font-size: 16px;
1306
+ font-weight: 500;
1307
+ line-height: 24px;
1308
+ text-align: center;
1309
+ text-underline-position: from-font;
1310
+ text-decoration-skip-ink: none;
1311
+ }
1312
+
1313
+ p{
1314
+ font-family: $font-default;
1315
+ font-size: 14px;
1316
+ font-weight: 300;
1317
+ line-height: 27px;
1318
+ text-align: center;
1319
+ text-underline-position: from-font;
1320
+ text-decoration-skip-ink: none;
1321
+
1322
+ }
1323
+ }
1324
+
1325
+ #quality-policy{
1326
+ padding: 60px var(--side-padding) 30px;
1327
+ margin-top: -70px;
1328
+ margin-left: 0 !important;
1329
+ margin-right: 0 !important;
1330
+ }
1331
+
1332
+
1333
+ #certificates{
1334
+ background: linear-gradient(180deg, #F7F4EB 0%, #FFFFFF 100%);
1335
+ padding: 0 var(--side-padding) 30px;
1336
+
1337
+ .ant-col{
1338
+ text-align: center;
1339
+ }
1340
+
1341
+ img {
1342
+ margin: auto;
1343
+ width: 263px;
1344
+ height: 365px;
1345
+ box-shadow: 0px 2px 16px 0px #0000001A;
1346
+ }
1347
+ }
1348
+ }
1349
+
1350
+ #countries-page{
1351
+ &_body{
1352
+ padding: 20px var(--side-padding);
1353
+
1354
+ #introduction{
1355
+ // width: 1120px;
1356
+ // height: Hug (263px)px;
1357
+ padding: 32px;
1358
+ border-radius: 20px;
1359
+ background: #FFFFFF;
1360
+
1361
+ &_header{
1362
+ text-align: center;
1363
+ display: inline-flex;
1364
+ justify-content: center;
1365
+ align-items: center;
1366
+ gap: 24px;
1367
+
1368
+ img{
1369
+ width: 42.96px;
1370
+ height: 40px;
1371
+ }
1372
+ span{
1373
+ font-family: $font-default;
1374
+ font-size: 24px;
1375
+ font-weight: 500;
1376
+ line-height: 36px;
1377
+ text-align: left;
1378
+ text-underline-position: from-font;
1379
+ text-decoration-skip-ink: none;
1380
+ color: #000000;
1381
+ }
1382
+ }
1383
+
1384
+ &_body{
1385
+ p {
1386
+ font-family: $font-default;
1387
+ font-size: 14px;
1388
+ font-weight: 300;
1389
+ line-height: 27px;
1390
+ text-align: left;
1391
+ text-underline-position: from-font;
1392
+ text-decoration-skip-ink: none;
1393
+ }
1394
+ }
1395
+ }
1396
+
1397
+ h2{
1398
+ font-family: $font-default;
1399
+ font-size: 30px;
1400
+ font-weight: 600;
1401
+ line-height: 45px;
1402
+ letter-spacing: 0.05em;
1403
+ text-align: left;
1404
+ text-underline-position: from-font;
1405
+ text-decoration-skip-ink: none;
1406
+ }
1407
+ }
1408
+ }
1409
+
1410
+ #contact-us-page{
1411
+ &_body{
1412
+ margin: 20px var(--side-padding);
1413
+ border-radius: 20px;
1414
+ box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
1415
+ background-color: #FFFFFF;
1416
+
1417
+ img{
1418
+ height: 250px;
1419
+ width: 100%;
1420
+ object-fit: cover;
1421
+ border-top-left-radius: 20px;
1422
+ border-top-right-radius: 20px;
1423
+ }
1424
+
1425
+ #contact-us-form{
1426
+ padding: 20px 24px 40px 24px;
1427
+
1428
+ &_header{
1429
+ margin-bottom: 20px;
1430
+ h2{
1431
+ font-family: $font-default;
1432
+ font-size: 16px;
1433
+ font-weight: 700;
1434
+ line-height: 24px;
1435
+ letter-spacing: 0.05em;
1436
+ text-align: left;
1437
+ text-underline-position: from-font;
1438
+ text-decoration-skip-ink: none;
1439
+ color: rgba(91, 71, 19, 1);
1440
+ margin: 0;
1441
+ }
1442
+
1443
+ span{
1444
+ font-family: $font-default;
1445
+ font-size: 14px;
1446
+ font-weight: 300;
1447
+ line-height: 21px;
1448
+ letter-spacing: 0.05em;
1449
+ text-align: left;
1450
+ text-underline-position: from-font;
1451
+ text-decoration-skip-ink: none;
1452
+ color: rgba(0, 0, 0, 1);
1453
+ }
1454
+ }
1455
+
1456
+ textarea{
1457
+ min-height: 200px;
1458
+ }
1459
+
1460
+ button[type=submit]{
1461
+ width: 216px;
1462
+ }
1463
+ }
1464
+ }
1465
+
1466
+ &_footer{
1467
+ margin: 20px var(--side-padding);
1468
+ border-radius: 20px;
1469
+ box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
1470
+ background-color: #FFFFFF;
1471
+ padding: 40px 24px 40px 24px;
1472
+
1473
+ label{
1474
+ font-family: $font-default;
1475
+ font-size: 16px;
1476
+ font-weight: 700;
1477
+ line-height: 24px;
1478
+ letter-spacing: 0.05em;
1479
+ text-align: left;
1480
+ text-underline-position: from-font;
1481
+ text-decoration-skip-ink: none;
1482
+ color: rgba(91, 71, 19, 1);
1483
+ display: block;
1484
+ margin-bottom: 10px;
1485
+ }
1486
+
1487
+ span{
1488
+ font-family: $font-default;
1489
+ font-size: 14px;
1490
+ font-weight: 300;
1491
+ line-height: 21px;
1492
+ letter-spacing: 0.05em;
1493
+ text-align: left;
1494
+ text-underline-position: from-font;
1495
+ text-decoration-skip-ink: none;
1496
+ color: rgba(0, 0, 0, 1);
1497
+ }
1498
+
1499
+ svg{
1500
+ color: $primary-color;
1501
+ }
1502
+ }
1503
+ }
1504
+
1505
+ #contact-agents-page{
1506
+ &_body{
1507
+ margin: 20px var(--side-padding);
1508
+
1509
+ #find-agents{
1510
+ &_header{
1511
+ width: 171px;
1512
+ height: 45px;
1513
+ margin: auto;
1514
+ padding-top: 11px;
1515
+ padding-right: 32px;
1516
+ padding-bottom: 11px;
1517
+ padding-left: 32px;
1518
+ gap: 10px;
1519
+ border-top-left-radius: 20px;
1520
+ border-top-right-radius: 20px;
1521
+ border-top-width: 1px;
1522
+ border-right-width: 1px;
1523
+ border-left-width: 1px;
1524
+ background: #F9E298;
1525
+
1526
+ span{
1527
+ font-family: $font-default;
1528
+ font-weight: 400;
1529
+ font-size: 15px;
1530
+ line-height: 22.5px;
1531
+ letter-spacing: 5%;
1532
+ text-align: center;
1533
+ color: #545047;
1534
+ }
1535
+ }
1536
+
1537
+ &_form{
1538
+ // width: 343;
1539
+ // height: 245;
1540
+ border-radius: 20px;
1541
+ padding-top: 33px;
1542
+ padding-right: 40px;
1543
+ padding-bottom: 33px;
1544
+ padding-left: 40px;
1545
+ gap: 10px;
1546
+ background: #FFFFFF;
1547
+ box-shadow: 0px 5px 20px 0px #00000026;
1548
+
1549
+ .find-button{
1550
+ width: 100%;
1551
+ }
1552
+ }
1553
+ }
1554
+
1555
+ #agents-list{
1556
+ margin: 40px 0;
1557
+
1558
+ img{
1559
+ height: 265;
1560
+ object-fit: cover;
1561
+ }
1562
+
1563
+ svg{
1564
+ vertical-align: middle;
1565
+ color: #000000;
1566
+ margin-right: 10px;
1567
+ }
1568
+
1569
+ span{
1570
+ font-family: $font-default;
1571
+ font-weight: 400;
1572
+ font-size: 14px;
1573
+ line-height: 24px;
1574
+ letter-spacing: 0%;
1575
+ color: #959492;
1576
+ }
1577
+
1578
+ .ant-card-meta-title{
1579
+ font-family: Poppins;
1580
+ font-weight: 500;
1581
+ font-size: 16px;
1582
+ line-height: 24px;
1583
+ letter-spacing: 0.05em;
1584
+ }
1585
+
1586
+ .more-info-button{
1587
+ width: 225px;
1588
+ margin: 20px auto 0;
1589
+ display: block;
1590
+ }
1591
+ }
1592
+
1593
+ }
1594
+ }
1595
+
1596
+ .agent-full-details{
1597
+ .ant-modal-title{
1598
+ display: flex;
1599
+ align-items: center;
1600
+ justify-content: center;
1601
+ gap: 10px;
1602
+
1603
+ img{
1604
+ height: 120px;
1605
+ object-fit: cover;
1606
+ }
1607
+
1608
+ span{
1609
+ font-family: $font-default;
1610
+ font-weight: 500;
1611
+ font-size: 20px;
1612
+ line-height: 24px;
1613
+ letter-spacing: 0%;
1614
+
1615
+ }
1616
+ }
1617
+
1618
+ .ant-modal-body{
1619
+ margin: 20px -24px;
1620
+ background: #FAFAFA;
1621
+ height: 100%;
1622
+
1623
+ .ant-row{
1624
+ width: 100%;
1625
+ margin: 0 !important;
1626
+ padding: 20px;
1627
+
1628
+ label{
1629
+ font-family: $font-default;
1630
+ font-weight: 600;
1631
+ font-size: 14px;
1632
+ line-height: 21px;
1633
+ letter-spacing: 0%;
1634
+ color: #836848;
1635
+ }
1636
+
1637
+ span{
1638
+ font-family: $font-default;
1639
+ font-weight: 400;
1640
+ font-size: 14px;
1641
+ line-height: 24px;
1642
+ letter-spacing: 0%;
1643
+ color: #545047;
1644
+ }
1645
+ }
1646
+ }
1647
+ }
1648
+
1649
+ #blog-page{
1650
+ &_body{
1651
+ margin: 20px var(--side-padding);
1652
+
1653
+ #blogs{
1654
+ margin: 30px 0;
1655
+ }
1656
+ }
1657
+ }
1658
+
1659
+ #blog-show-page{
1660
+ &_body{
1661
+ margin: 20px var(--side-padding);
1662
+ padding: 32px;
1663
+ border-radius: 20px;
1664
+ background: rgba(255, 255, 255, 1);
1665
+ box-shadow: 0px 5px 20px 0px rgba(225, 182, 91, 0.2);
1666
+ }
1667
+
1668
+ }
1669
+
1670
+
1671
+ @media only screen and (min-width: 769px) {
1672
+ *{
1673
+ //can change to container width
1674
+ --side-padding: 10%;
1675
+ }
1676
+
1677
+ #popular-destinations{
1678
+ margin: auto;
1679
+ width: 80%;
1680
+
1681
+ h1{
1682
+ font-size: 45px;
1683
+ font-weight: 200;
1684
+ line-height: 67.5px;
1685
+
1686
+ width: 100%;
1687
+ margin: 50px 0;
1688
+ }
1689
+
1690
+ .location-dropdown{
1691
+ display: none;
1692
+ }
1693
+
1694
+ .ant-tabs .ant-tabs-content-holder{
1695
+ margin-top: -2px;
1696
+ }
1697
+
1698
+ .ant-tabs >.ant-tabs-nav{
1699
+ display: flex;
1700
+ margin: 0;
1701
+ }
1702
+
1703
+ .ant-tabs-nav {
1704
+ width: 100% !important;
1705
+ }
1706
+
1707
+ .ant-tabs-card.ant-tabs-top >.ant-tabs-nav {
1708
+ .ant-tabs-tab {
1709
+ display: block; // centers text inside tabs
1710
+ // flex: 1;
1711
+ text-align: center;
1712
+ justify-content: center;
1713
+ background: transparent;
1714
+ // border-color: #EBEBEB;
1715
+ // border-bottom-color: $primary-color;
1716
+ margin-left: 30px;
1717
+ padding: 0;
1718
+
1719
+ &+.ant-tabs-tab{
1720
+ margin:0;
1721
+ }
1722
+
1723
+ .ant-tabs-tab-btn {
1724
+ text-transform: uppercase;
1725
+ font-family: $font-default;
1726
+ font-size: 20px;
1727
+ font-weight: 400;
1728
+ line-height: 30px;
1729
+ letter-spacing: 0.05em;
1730
+ text-align: center;
1731
+ text-underline-position: from-font;
1732
+ text-decoration-skip-ink: none;
1733
+ color: $primary-color;
1734
+
1735
+ position: relative;
1736
+ margin: 0 5px;
1737
+ padding: 8px 20px;
1738
+ background: #FAFAFA;
1739
+ border-radius: 20px 20px 0 0;
1740
+
1741
+ &:before, &:after{
1742
+ content: " ";
1743
+ position: absolute;
1744
+ top: 0;
1745
+ width: 23px;
1746
+ height: 100%;
1747
+ background-color: inherit;
1748
+ }
1749
+
1750
+ &:before{
1751
+ border-radius: 12px 0 0 0;
1752
+ transform: skew(-24deg);
1753
+ left: -13px;
1754
+ }
1755
+
1756
+ &:after{
1757
+ border-radius: 0 12px 0 0;
1758
+ transform: skew(24deg);
1759
+ right: -13px; /* play with this one to give the LI border ~2px extrusion */
1760
+ border-right: 1px solid #EBEBEB;
1761
+ z-index: 1; /* overlap next element */
1762
+ }
1763
+ }
1764
+
1765
+ &.ant-tabs-tab-active{
1766
+ z-index: 1;
1767
+ // border-bottom-color: $primary-color;
1768
+ .ant-tabs-tab-btn {
1769
+ background: linear-gradient(180deg, $secondary-color -1.58%, $primary-color 92.51%);
1770
+ color: white !important;
1771
+
1772
+ &:before, &:after{
1773
+ background: linear-gradient(180deg, $secondary-color -1.58%, $primary-color 92.51%);
1774
+ }
1775
+ }
1776
+ }
1777
+ }
1778
+ }
1779
+
1780
+ .ant-tabs-nav > div:nth-of-type(1) {
1781
+ display: unset !important;
1782
+ width: 100% !important;
1783
+ }
1784
+
1785
+ .country{
1786
+ &-image{
1787
+ border-radius: 20px;
1788
+ }
1789
+
1790
+ &-name{
1791
+ width: auto;
1792
+ height: 71px;
1793
+ top: 64px;
1794
+ left: 62px;
1795
+
1796
+ font-size: 47px;
1797
+ font-weight: 400;
1798
+ line-height: 70.5px;
1799
+ }
1800
+ }
1801
+
1802
+ h2{
1803
+ font-size: 30px;
1804
+ font-weight: 600;
1805
+ line-height: 45px;
1806
+ letter-spacing: 0.05em;
1807
+ }
1808
+
1809
+ .top-cities,
1810
+ .more-cities,
1811
+ .highlights {
1812
+ padding: unset;
1813
+ }
1814
+
1815
+ .more-cities .other-destinations a{
1816
+ font-size: 18px;
1817
+ font-weight: 400;
1818
+ line-height: 27px;
1819
+ letter-spacing: 0.05em;
1820
+ }
1821
+ }
1822
+
1823
+ #testimonials-section{
1824
+ display: block;
1825
+
1826
+ #testimonials{
1827
+ max-width: 1099px;
1828
+ margin: auto;
1829
+ padding: 50px 0;
1830
+
1831
+ [class~='ant-carousel'] {
1832
+ .slick-slider{
1833
+ padding: 0 70px;
1834
+ }
1835
+ .slick-list {
1836
+ margin: 0;
1837
+ }
1838
+
1839
+ .slick-track {
1840
+ margin: auto;
1841
+ }
1842
+
1843
+ .slick-slide>div {
1844
+ padding: 20px 15px;
1845
+ }
1846
+
1847
+ .slick-prev,
1848
+ .slick-next{
1849
+ color: #959492;
1850
+
1851
+ &:hover{
1852
+ color: #DFB163;
1853
+ }
1854
+ }
1855
+ }
1856
+
1857
+ .testimonial{
1858
+ // min-height: 383px;
1859
+ padding: 10px 18px 20px 18px;
1860
+ gap: 15px;
1861
+ border-radius: 20px;
1862
+ opacity: 0px;
1863
+ background: #FFFFFF;
1864
+ box-shadow: 0px 5px 20px 0px #E1B65B33;
1865
+ text-align: center;
1866
+ display: flex !important;
1867
+ flex-direction: column;
1868
+ justify-content: flex-start;
1869
+
1870
+ .stars-icon{
1871
+ width: 92px;
1872
+ height: 32px;
1873
+ gap: 0px;
1874
+ opacity: 0px;
1875
+ margin: auto;
1876
+
1877
+ }
1878
+
1879
+ .tour{
1880
+ width: 100%;
1881
+ // height: 56px;
1882
+ padding: 10px;
1883
+ gap: 10px;
1884
+ border-radius: 10px;
1885
+ opacity: 0px;
1886
+ background: linear-gradient(270deg, $secondary-color 0%, #FFFDF5 117.76%);
1887
+ box-shadow: 0px 7px 16.7px 0px #E1B65B80;
1888
+ box-sizing: border-box;
1889
+ display: inline-flex;
1890
+ align-items: center;
1891
+
1892
+ img{
1893
+ width: 28.46px;
1894
+ height: 26.5px;
1895
+ }
1896
+
1897
+ span{
1898
+ font-family: $font-default;
1899
+ font-size: 12px;
1900
+ font-weight: 500;
1901
+ line-height: 18px;
1902
+ text-align: left;
1903
+ text-underline-position: from-font;
1904
+ text-decoration-skip-ink: none;
1905
+ color: #AA853E;
1906
+ width: 100%;
1907
+ display: block;
1908
+ }
1909
+
1910
+ }
1911
+
1912
+ .comment {
1913
+ white-space: break-spaces;
1914
+
1915
+ span{
1916
+ font-family: $font-default;
1917
+ font-size: 14px;
1918
+ font-style: italic;
1919
+ font-weight: 200;
1920
+ line-height: 21px;
1921
+ text-align: center;
1922
+ text-underline-position: from-font;
1923
+ text-decoration-skip-ink: none;
1924
+ }
1925
+ }
1926
+
1927
+ .author {
1928
+ display: inline-flex;
1929
+ align-items: center;
1930
+ justify-content: center;
1931
+ gap: 10px;
1932
+
1933
+ .author-icon{
1934
+ color: rgba(0, 0, 0, 0.8);
1935
+ width: 20px;
1936
+ height: 20px;
1937
+ }
1938
+ span{
1939
+ font-family: $font-default;
1940
+ font-size: 20px;
1941
+ font-weight: 400;
1942
+ line-height: 30px;
1943
+ letter-spacing: 0.05em;
1944
+ text-align: left;
1945
+ text-underline-position: from-font;
1946
+ text-decoration-skip-ink: none;
1947
+
1948
+ }
1949
+ }
1950
+ }
1951
+ }
1952
+ }
1953
+
1954
+ #about-signature-tours{
1955
+
1956
+ &>div{
1957
+ width: 70%;
1958
+ margin: auto;
1959
+ }
1960
+
1961
+ h1{
1962
+ font-size: 45px;
1963
+ font-weight: 200;
1964
+ line-height: 67.5px;
1965
+ letter-spacing: 0.06em;
1966
+ }
1967
+
1968
+ p{
1969
+ font-size: 18px;
1970
+ font-weight: 200;
1971
+ line-height: 27px;
1972
+ letter-spacing: 0.05em;
1973
+ text-align: left;
1974
+ }
1975
+
1976
+ picture{
1977
+ height: 100%;
1978
+ display: block;
1979
+ margin: 30px 0;
1980
+ }
1981
+ }
1982
+
1983
+ #listing-page{
1984
+ &_header{
1985
+ &>.ant-flex{
1986
+ flex-direction: row;
1987
+ justify-content: space-between;
1988
+ align-items: center;
1989
+ }
1990
+
1991
+ .location-filter.ant-select{
1992
+ line-height: 36px;
1993
+ width: 170px;
1994
+
1995
+ .ant-select-selection-item{
1996
+ font-size: 20px;
1997
+ font-weight: 500;
1998
+ line-height: 30px;
1999
+ letter-spacing: 0.05em;
2000
+ }
2001
+ }
2002
+ }
2003
+
2004
+ #tours{
2005
+ .tour{
2006
+ flex-direction: row;
2007
+
2008
+ &_image{
2009
+ img{
2010
+ border-top-right-radius: 0;
2011
+ border-top-left-radius: 20px;
2012
+ border-bottom-left-radius: 20px;
2013
+ }
2014
+ }
2015
+
2016
+ &_details_dates {
2017
+ .date-selector{
2018
+ justify-content: unset;
2019
+ }
2020
+ }
2021
+
2022
+ &_pricing{
2023
+ border-bottom-left-radius: 0;
2024
+ border-top-right-radius: 20px;
2025
+ border-bottom-right-radius: 20px;
2026
+
2027
+ &_details{
2028
+ flex-direction: column;
2029
+ align-items: stretch;
2030
+ }
2031
+
2032
+ .ant-space-item{
2033
+ width: auto;
2034
+ }
2035
+ }
2036
+ }
2037
+ }
2038
+ }
2039
+
2040
+ #show-page {
2041
+ &_header{
2042
+ h1{
2043
+ font-size: 18px;
2044
+ line-height: 27px;
2045
+ letter-spacing: 0%;
2046
+ text-align: left;
2047
+
2048
+ font-size: 30px;
2049
+ font-weight: 400;
2050
+ line-height: 45px;
2051
+ letter-spacing: 0.05em;
2052
+ }
2053
+ }
2054
+
2055
+ &_body{
2056
+ .toggle_contact-agent,
2057
+ .collapse-contact-agent{
2058
+ display: none;
2059
+ }
2060
+
2061
+ .contact-agent-sider{
2062
+ position: relative;
2063
+ top: unset;
2064
+ }
2065
+
2066
+ .contact-agent {
2067
+ border-bottom-right-radius: 20px;
2068
+ border-top-right-radius: 20px;
2069
+ display: block;
2070
+ }
2071
+
2072
+ .details-container_content{
2073
+ #things-to-know{
2074
+ grid-template-columns: repeat(5, 1fr);
2075
+ }
2076
+
2077
+ .schedule{
2078
+ flex-direction: row;
2079
+
2080
+ .flight-date{
2081
+ width: auto;
2082
+ }
2083
+ }
2084
+ #pricing-list{
2085
+ display: none;
2086
+ }
2087
+
2088
+ #pricing-table{
2089
+ display: table;
2090
+ width: 100%;
2091
+ border-spacing: 5px 0;
2092
+
2093
+ .price-type{
2094
+ text-transform: capitalize;
2095
+ }
2096
+
2097
+ th{
2098
+ border-top-left-radius: 10px;
2099
+ border-top-right-radius: 10px;
2100
+ font-family: $font-default;
2101
+ font-size: 14px;
2102
+ font-weight: 700;
2103
+ line-height: 21px;
2104
+ letter-spacing: 0.05em;
2105
+ text-align: center;
2106
+ text-underline-position: from-font;
2107
+ text-decoration-skip-ink: none;
2108
+ color: rgba(131, 104, 72, 1);
2109
+ padding: 10px 15px;
2110
+ }
2111
+
2112
+ td{
2113
+ font-family: $font-default;
2114
+ font-size: 14px;
2115
+ font-weight: 500;
2116
+ line-height: 21px;
2117
+ letter-spacing: 0.05em;
2118
+ text-align: center;
2119
+ text-underline-position: from-font;
2120
+ text-decoration-skip-ink: none;
2121
+ color: rgba(84, 80, 71, 1);
2122
+ padding: 15px;
2123
+ white-space: nowrap;
2124
+
2125
+ &:first-child{
2126
+ text-align: left;
2127
+ font-weight: 400;
2128
+ }
2129
+ }
2130
+
2131
+ tr:last-child td{
2132
+ border-bottom-left-radius: 10px;
2133
+ border-bottom-right-radius: 10px;
2134
+ }
2135
+ }
2136
+ }
2137
+ }
2138
+
2139
+ }
2140
+
2141
+ .agent-full-contact-details{
2142
+ width: 650px !important;
2143
+ }
2144
+
2145
+ #contact-agents-page_body {
2146
+ #find-agents{
2147
+ width: 65%;
2148
+ margin: auto;
2149
+
2150
+ &_form{
2151
+ text-align: center;
2152
+ form{
2153
+ display: inline-flex;
2154
+ gap: 16px;
2155
+ }
2156
+ .ant-form-item{
2157
+ margin-bottom: 0;
2158
+ text-align: left;
2159
+ }
2160
+
2161
+ .ant-form-item,
2162
+ .find-button{
2163
+ width: 210px;
2164
+ }
2165
+ }
2166
+ }
2167
+
2168
+ #agents-list{
2169
+ .more-info-button{
2170
+ width: 100%;
2171
+ }
2172
+ }
2173
+ }
2174
+
2175
+ .agent-full-details{
2176
+ width: 800px !important;
2177
+ }
2178
+
2179
+ #about-us-page{
2180
+ .section-header {
2181
+ width: 741px;
2182
+ margin: auto;
2183
+ }
2184
+
2185
+ #quality-policy{
2186
+ padding: 0 170px 16px 170px;
2187
+ }
2188
+
2189
+ #certificates{
2190
+ padding: 40px 160px 40px 160px;
2191
+ justify-content: flex-start;
2192
+ }
2193
+ }
2194
+ }