iceholidays-frontend 0.4.0 → 0.6.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 (72) 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 +968 -355
  4. data/app/assets/stylesheets/iceholidays/frontend/common.scss +159 -74
  5. data/app/assets/stylesheets/iceholidays/frontend/layout.scss +218 -125
  6. data/app/assets/stylesheets/iceholidays/frontend/utils/_antd_overrides.scss +22 -7
  7. data/app/assets/stylesheets/iceholidays/frontend/utils/_variables.scss +2 -1
  8. data/app/assets/stylesheets/iceholidays/frontend/widgets/filter_pills.scss +19 -12
  9. data/app/assets/stylesheets/iceholidays/frontend/widgets/search_bar.scss +4 -0
  10. data/app/controllers/iceholidays/frontend/posts_controller.rb +14 -0
  11. data/app/javascript/api-services/agents-api.service.ts +33 -0
  12. data/app/javascript/api-services/locations-api.service.ts +23 -1
  13. data/app/javascript/api-services/series-api.service.ts +48 -28
  14. data/app/javascript/interfaces/agent.interface.ts +11 -0
  15. data/app/javascript/interfaces/country.interface.ts +4 -3
  16. data/app/javascript/interfaces/itinerary.interface.ts +101 -8
  17. data/app/javascript/react/App.tsx +1 -1
  18. data/app/javascript/react/components/Destinations.tsx +30 -20
  19. data/app/javascript/react/components/PriceDetails.tsx +146 -0
  20. data/app/javascript/react/components/shared/ContactAgentsForm.tsx +44 -0
  21. data/app/javascript/react/components/shared/Headline.tsx +2 -1
  22. data/app/javascript/react/components/shared/LocationDropdown.tsx +34 -0
  23. data/app/javascript/react/components/shared/{Postcard.tsx → LocationPostcards.tsx} +22 -1
  24. data/app/javascript/react/layouts/MainFooter.tsx +64 -39
  25. data/app/javascript/react/layouts/MainHeader.tsx +68 -30
  26. data/app/javascript/react/pages/AboutUsPage.tsx +8 -8
  27. data/app/javascript/react/pages/BlogPage.tsx +6 -4
  28. data/app/javascript/react/pages/ContactAgentsPage.tsx +174 -5
  29. data/app/javascript/react/pages/ContactUsPage.tsx +5 -5
  30. data/app/javascript/react/pages/CountriesPage.tsx +3 -8
  31. data/app/javascript/react/pages/Homepage.tsx +23 -13
  32. data/app/javascript/react/pages/ListingPage.tsx +197 -145
  33. data/app/javascript/react/pages/ShowPage.tsx +275 -265
  34. data/app/javascript/react/widgets/FilterPills.tsx +83 -49
  35. data/app/javascript/react/widgets/SearchBarWidget.tsx +24 -8
  36. data/app/views/iceholidays/frontend/posts/index.html.erb +9 -0
  37. data/app/views/iceholidays/frontend/posts/show.html.erb +2 -0
  38. data/config/routes.rb +2 -1
  39. data/lib/iceholidays/frontend/version.rb +1 -1
  40. data/public/iceholidays-assets/application.css +1209 -437
  41. data/public/iceholidays-assets/application.js +91 -104
  42. data/public/iceholidays-assets/application.js.map +4 -4
  43. data/public/iceholidays-assets/images/TSTRibbon.png +0 -0
  44. data/public/iceholidays-assets/images/about-us_logo_mobile.png +0 -0
  45. data/public/iceholidays-assets/images/destinations_logo.png +0 -0
  46. data/public/iceholidays-assets/images/footer-bg_mobile.png +0 -0
  47. data/public/iceholidays-assets/images/logo_mobile.png +0 -0
  48. metadata +19 -27
  49. data/public/iceholidays-assets/images/8D7N.png +0 -0
  50. data/public/iceholidays-assets/images/Frame71.png +0 -0
  51. data/public/iceholidays-assets/images/africa.png +0 -0
  52. data/public/iceholidays-assets/images/banner1.png +0 -0
  53. data/public/iceholidays-assets/images/banner2.png +0 -0
  54. data/public/iceholidays-assets/images/china.png +0 -0
  55. data/public/iceholidays-assets/images/china2.png +0 -0
  56. data/public/iceholidays-assets/images/chongqing.png +0 -0
  57. data/public/iceholidays-assets/images/guangzhou.png +0 -0
  58. data/public/iceholidays-assets/images/guilin.png +0 -0
  59. data/public/iceholidays-assets/images/harbin.png +0 -0
  60. data/public/iceholidays-assets/images/hongkong.png +0 -0
  61. data/public/iceholidays-assets/images/inner_mongolia.png +0 -0
  62. data/public/iceholidays-assets/images/jiangxi.png +0 -0
  63. data/public/iceholidays-assets/images/kenya.png +0 -0
  64. data/public/iceholidays-assets/images/kenya2.png +0 -0
  65. data/public/iceholidays-assets/images/kunming.png +0 -0
  66. data/public/iceholidays-assets/images/slikroad.png +0 -0
  67. data/public/iceholidays-assets/images/southafrica.png +0 -0
  68. data/public/iceholidays-assets/images/tanzania.png +0 -0
  69. data/public/iceholidays-assets/images/tour1.png +0 -0
  70. data/public/iceholidays-assets/images/uganda.png +0 -0
  71. /data/public/iceholidays-assets/images/{Group_71.png → about-us_logo.png} +0 -0
  72. /data/public/iceholidays-assets/images/{logo_container.png → logo.png} +0 -0
@@ -21,6 +21,7 @@
21
21
  @import "common.scss";
22
22
  @import "widgets/search_bar.scss";
23
23
  @import "widgets/filter_pills.scss";
24
+ @import "actiontext.scss";
24
25
 
25
26
 
26
27
  body{
@@ -38,7 +39,7 @@ body{
38
39
  #homepage{
39
40
 
40
41
  &_banner{
41
- min-height: 760px;
42
+ // min-height: 760px;
42
43
  border-radius: 0px 0px 50px 50px;
43
44
 
44
45
  [class~='ant-carousel'] {
@@ -48,116 +49,36 @@ body{
48
49
  .slick-next{
49
50
  inset-inline-end: 115px;
50
51
  }
52
+ .slick-slide img{
53
+ width: 100%;
54
+ }
51
55
  }
52
56
  }
53
57
  }
54
58
 
55
59
 
56
60
  #popular-destinations{
57
- margin: auto;
58
- width: 80%;
61
+ margin-bottom: 30px;
59
62
 
60
63
  h1{
61
64
  font-family: $font-default;
62
- font-size: 45px;
63
- font-weight: 200;
64
- line-height: 67.5px;
65
65
  text-align: center;
66
66
  text-underline-position: from-font;
67
67
  text-decoration-skip-ink: none;
68
68
  text-transform: uppercase;
69
69
  color: #545047;
70
- }
70
+ font-size: 24px;
71
+ font-weight: 300;
72
+ line-height: 36px;
71
73
 
72
- .ant-tabs .ant-tabs-content-holder{
73
- margin-top: -2px;
74
+ width: 80%;
75
+ margin: 20px auto;
74
76
  }
75
77
 
76
78
  .ant-tabs >.ant-tabs-nav{
77
- margin: 0;
78
- }
79
-
80
- .ant-tabs-nav {
81
- width: 100% !important;
82
- }
83
-
84
- .ant-tabs-card.ant-tabs-top >.ant-tabs-nav {
85
- .ant-tabs-tab {
86
- display: block; // centers text inside tabs
87
- // flex: 1;
88
- text-align: center;
89
- justify-content: center;
90
- background: transparent;
91
- // border-color: #EBEBEB;
92
- // border-bottom-color: $primary-color;
93
- margin-left: 30px;
94
- padding: 0;
95
-
96
- &+.ant-tabs-tab{
97
- margin:0;
98
- }
99
-
100
- .ant-tabs-tab-btn {
101
- text-transform: uppercase;
102
- font-family: $font-default;
103
- font-size: 20px;
104
- font-weight: 400;
105
- line-height: 30px;
106
- letter-spacing: 0.05em;
107
- text-align: center;
108
- text-underline-position: from-font;
109
- text-decoration-skip-ink: none;
110
- color: $primary-color;
111
-
112
- position: relative;
113
- margin: 0 5px;
114
- padding: 8px 20px;
115
- background: #FAFAFA;
116
- border-radius: 20px 20px 0 0;
117
-
118
- &:before, &:after{
119
- content: " ";
120
- position: absolute;
121
- top: 0;
122
- width: 23px;
123
- height: 100%;
124
- background-color: inherit;
125
- }
126
-
127
- &:before{
128
- border-radius: 12px 0 0 0;
129
- transform: skew(-24deg);
130
- left: -13px;
131
- }
132
-
133
- &:after{
134
- border-radius: 0 12px 0 0;
135
- transform: skew(24deg);
136
- right: -13px; /* play with this one to give the LI border ~2px extrusion */
137
- border-right: 1px solid #EBEBEB;
138
- z-index: 1; /* overlap next element */
139
- }
140
- }
141
-
142
- &.ant-tabs-tab-active{
143
- z-index: 1;
144
- // border-bottom-color: $primary-color;
145
- .ant-tabs-tab-btn {
146
- background: linear-gradient(180deg, $secondary-color -1.58%, $primary-color 92.51%);
147
- color: white !important;
148
-
149
- &:before, &:after{
150
- background: linear-gradient(180deg, $secondary-color -1.58%, $primary-color 92.51%);
151
- }
152
- }
153
- }
154
- }
155
- }
156
-
157
- .ant-tabs-nav > div:nth-of-type(1) {
158
- display: unset !important;
159
- width: 100% !important;
79
+ display: none;
160
80
  }
81
+
161
82
 
162
83
  .country{
163
84
  position: relative;
@@ -171,17 +92,18 @@ body{
171
92
  border-width: 5px 0px 5px 0px;
172
93
  border-style: solid;
173
94
  border-color: $primary-color;
174
- border-radius: 20px;
175
95
  }
176
96
 
177
97
  &-name{
178
- width: 160px;
179
- height: 71px;
180
- top: 58px;
181
- left: 45px;
182
- gap: 0px;
183
- opacity: 0px;
98
+ width: auto;
99
+ height: 42px;
100
+ top: 24px;
101
+ left: 24px;
184
102
  position: absolute;
103
+ text-align: left;
104
+ font-size: 28px;
105
+ font-weight: 300;
106
+ line-height: 42px;
185
107
  }
186
108
 
187
109
  .bottom-logo{
@@ -190,45 +112,40 @@ body{
190
112
  border-color: #F2F2F2;
191
113
  left: 0;
192
114
  width: 100%;
115
+ text-align: center;
193
116
  }
194
117
  }
195
118
 
196
- .top-cities {
197
- h2{
198
- font-family: $font-default;
199
- font-size: 30px;
200
- font-weight: 600;
201
- line-height: 45px;
202
- letter-spacing: 0.05em;
203
- text-align: left;
204
- text-underline-position: from-font;
205
- text-decoration-skip-ink: none;
206
-
207
- }
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;
208
134
  }
209
135
 
210
136
  .more-cities {
211
- h2{
212
- font-family: $font-default;
213
- font-size: 30px;
214
- font-weight: 600;
215
- line-height: 45px;
216
- letter-spacing: 0.05em;
217
- text-align: left;
218
- text-underline-position: from-font;
219
- text-decoration-skip-ink: none;
220
- }
221
137
 
222
138
  .other-destinations{
223
139
  display: inline-flex;
140
+ flex-wrap: wrap;
224
141
  gap: 10px;
225
142
 
226
143
  a{
227
144
  font-family: $font-default;
228
- font-size: 18px;
145
+ font-size: 14px;
229
146
  font-weight: 400;
230
- line-height: 27px;
231
- letter-spacing: 0.05em;
147
+ line-height: 21px;
148
+ letter-spacing: 0.02em;
232
149
  text-align: left;
233
150
  text-underline-position: from-font;
234
151
  text-decoration-skip-ink: none;
@@ -240,19 +157,24 @@ body{
240
157
  gap: 4px;
241
158
  border-radius: 20px;
242
159
  opacity: 0px;
243
-
244
160
  }
245
161
  }
246
162
  }
247
163
 
248
164
  .highlights{
249
- display: grid;
250
- grid-template-columns: repeat(5, 1fr);
165
+ display: inline-flex;
166
+ overflow-x: auto;
251
167
  gap: 10px;
252
- margin-top: 30px;
168
+ margin-top: 20px;
169
+ width: 100%;
170
+
171
+ a{
172
+ flex-grow: 1;
173
+ flex-shrink: 0;
174
+ }
253
175
 
254
176
  .tour{
255
- // width: 220px;
177
+ min-width: 210px;
256
178
  height: 352px;
257
179
  padding: 15px 0px 0px 0px;
258
180
  gap: 0px;
@@ -310,153 +232,35 @@ body{
310
232
  }
311
233
 
312
234
 
313
- #testimonials{
314
- max-width: 1099px;
315
- margin: auto;
316
- padding: 50px 0;
317
-
318
- [class~='ant-carousel'] {
319
- .slick-slider{
320
- padding: 0 70px;
321
- }
322
- .slick-list {
323
- margin: 0;
324
- }
325
-
326
- .slick-track {
327
- margin: auto;
328
- }
329
-
330
- .slick-slide>div {
331
- padding: 20px 15px;
332
- }
333
-
334
- .slick-prev,
335
- .slick-next{
336
- color: #959492;
337
-
338
- &:hover{
339
- color: #DFB163;
340
- }
341
- }
342
- }
343
-
344
- .testimonial{
345
- // min-height: 383px;
346
- padding: 10px 18px 20px 18px;
347
- gap: 15px;
348
- border-radius: 20px;
349
- opacity: 0px;
350
- background: #FFFFFF;
351
- box-shadow: 0px 5px 20px 0px #E1B65B33;
352
- text-align: center;
353
- display: flex !important;
354
- flex-direction: column;
355
- justify-content: flex-start;
356
-
357
- .stars-icon{
358
- width: 92px;
359
- height: 32px;
360
- gap: 0px;
361
- opacity: 0px;
362
- margin: auto;
363
-
364
- }
365
-
366
- .tour{
367
- width: 100%;
368
- // height: 56px;
369
- padding: 10px;
370
- gap: 10px;
371
- border-radius: 10px;
372
- opacity: 0px;
373
- background: linear-gradient(270deg, $secondary-color 0%, #FFFDF5 117.76%);
374
- box-shadow: 0px 7px 16.7px 0px #E1B65B80;
375
- box-sizing: border-box;
376
- display: inline-flex;
377
- align-items: center;
378
-
379
- img{
380
- width: 28.46px;
381
- height: 26.5px;
382
- }
383
-
384
- span{
385
- font-family: $font-default;
386
- font-size: 12px;
387
- font-weight: 500;
388
- line-height: 18px;
389
- text-align: left;
390
- text-underline-position: from-font;
391
- text-decoration-skip-ink: none;
392
- color: #AA853E;
393
- width: 100%;
394
- display: block;
395
- }
396
-
397
- }
398
-
399
- .comment {
400
- white-space: break-spaces;
401
-
402
- span{
403
- font-family: $font-default;
404
- font-size: 14px;
405
- font-style: italic;
406
- font-weight: 200;
407
- line-height: 21px;
408
- text-align: center;
409
- text-underline-position: from-font;
410
- text-decoration-skip-ink: none;
411
- }
412
- }
413
-
414
- .author {
415
- display: inline-flex;
416
- align-items: center;
417
- justify-content: center;
418
- gap: 10px;
419
-
420
- .author-icon{
421
- color: rgba(0, 0, 0, 0.8);
422
- width: 20px;
423
- height: 20px;
424
- }
425
- span{
426
- font-family: $font-default;
427
- font-size: 20px;
428
- font-weight: 400;
429
- line-height: 30px;
430
- letter-spacing: 0.05em;
431
- text-align: left;
432
- text-underline-position: from-font;
433
- text-decoration-skip-ink: none;
434
-
435
- }
436
- }
437
- }
235
+ #testimonials-section{
236
+ display: none;
438
237
  }
439
238
 
440
239
 
441
240
  #listing-page{
442
241
 
443
242
  &_header{
444
- .country-filter.ant-select{
445
- line-height: 35px;
446
- width: 170px;
243
+ .location-dropdown{
244
+ margin: 0;
245
+ }
246
+
247
+ .location-filter.ant-select{
248
+ // line-height: 36px;
249
+ height: auto;
250
+ width: 100%;
447
251
 
448
252
  .ant-select-selector{
449
- padding: 3px 40px 3px 15px;
450
- border-radius: 30px;
253
+ background: #FFFF;
451
254
  height: 36px;
452
255
  }
453
256
 
454
257
  .ant-select-selection-item{
455
258
  font-family: $font-default;
456
- font-size: 20px;
259
+ font-family: Poppins;
457
260
  font-weight: 500;
458
- line-height: 30px;
459
- letter-spacing: 0.05em;
261
+ font-size: 16px;
262
+ line-height: 24px;
263
+ letter-spacing: 5%;
460
264
  text-align: left;
461
265
  text-underline-position: from-font;
462
266
  text-decoration-skip-ink: none;
@@ -500,15 +304,16 @@ body{
500
304
 
501
305
  #tours{
502
306
  .tour{
307
+ flex-direction: column;
503
308
 
504
309
  &_image{
505
310
  height: 100%;
506
311
 
507
312
  img{
508
- width: 300px;
313
+ width: 100%;
509
314
  height: 100%;
510
315
  border-top-left-radius: 20px;
511
- border-bottom-left-radius: 20px;
316
+ border-top-right-radius: 20px;
512
317
  }
513
318
  }
514
319
 
@@ -532,7 +337,8 @@ body{
532
337
  text-align: left;
533
338
  text-underline-position: from-font;
534
339
  text-decoration-skip-ink: none;
535
- max-width: 95%;
340
+ max-width: calc(100% - 30px);
341
+ overflow-wrap: anywhere;
536
342
  }
537
343
 
538
344
  &_subtitle{
@@ -593,22 +399,36 @@ body{
593
399
  text-decoration-skip-ink: none;
594
400
  color: #434039;
595
401
  }
402
+
403
+ .date-selector{
404
+ justify-content: center;
405
+ }
596
406
  }
597
407
  }
598
408
 
599
409
  &_pricing{
600
410
  background-color: $primary-color;
601
411
  padding: 20px;
602
- border-top-right-radius: 20px;
412
+ border-bottom-left-radius: 20px;
603
413
  border-bottom-right-radius: 20px;
604
414
  height: 100%;
605
415
 
416
+ &_details{
417
+ align-items: baseline;
418
+ justify-content: center;
419
+ gap: 10px;
420
+ }
421
+
606
422
  &>.ant-space{
607
423
  height: 100%;
608
424
  width: 100%;
609
425
  justify-content: center;
610
426
  }
611
427
 
428
+ .ant-space-item{
429
+ width: 100%;
430
+ }
431
+
612
432
  span{
613
433
  font-family: $font-default;
614
434
  font-size: 15px;
@@ -641,10 +461,19 @@ body{
641
461
  text-decoration-skip-ink: none;
642
462
  color: $primary-color;
643
463
  background-color: #FFFFFF;
464
+ display: block;
465
+ width: 100%;
644
466
  }
645
467
  }
646
468
  }
647
469
  }
470
+
471
+ #no-tours-found{
472
+ font-family: $font-default;
473
+ font-weight: 400;
474
+ text-align: center;
475
+ color: #00000c99;
476
+ }
648
477
  }
649
478
 
650
479
  .tour_details_description.ant-modal{
@@ -666,6 +495,13 @@ body{
666
495
  }
667
496
  }
668
497
 
498
+ .tour_details_itinerary.ant-modal{
499
+ #itinerary-file img{
500
+ width: 100%;
501
+ object-fit: contain;
502
+ }
503
+ }
504
+
669
505
  .tour_details_all_dates.ant-modal{
670
506
  .ant-modal-title{
671
507
  padding-right: 30px;
@@ -736,18 +572,19 @@ body{
736
572
 
737
573
  *{
738
574
  //can change to container width
739
- --side-padding: 10%;
575
+ --side-padding: 20px;
740
576
  }
741
577
 
742
578
  #show-page{
579
+ $transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
743
580
 
744
581
  &_header{
745
582
  h1{
746
- font-size: 30px;
747
- font-weight: 400;
748
- line-height: 45px;
749
- letter-spacing: 0.05em;
583
+ font-size: 18px;
584
+ line-height: 27px;
585
+ letter-spacing: 0%;
750
586
  text-align: left;
587
+ overflow-wrap: anywhere;
751
588
  }
752
589
 
753
590
  .tour_details{
@@ -873,7 +710,7 @@ body{
873
710
  text-align: left;
874
711
  text-underline-position: from-font;
875
712
  text-decoration-skip-ink: none;
876
- color: #5B4713;
713
+ color: $supportive-color;
877
714
  }
878
715
 
879
716
  &_content{
@@ -882,13 +719,13 @@ body{
882
719
  border-radius: 5px;
883
720
  background: #F9F6F3;
884
721
  display: grid;
885
- grid-template-columns: repeat(5, 18%);
722
+ grid-template-columns: repeat(2, 1fr);
886
723
  justify-content: center;
887
724
  text-align: center;
888
725
  gap: 20px;
889
726
 
890
727
  .item{
891
- color: #5B4713;
728
+ color: $supportive-color;
892
729
 
893
730
  .icon{
894
731
  opacity: 0.8;
@@ -912,9 +749,46 @@ body{
912
749
 
913
750
  }
914
751
 
752
+ #description{
753
+ position: relative;
754
+ transition: height $transition;
755
+
756
+ &+button{
757
+ margin-top: 10px;
758
+ font-family: $font-default;
759
+ font-weight: 500;
760
+ font-size: 14px;
761
+ line-height: 21px;
762
+ letter-spacing: 5%;
763
+ text-align: right;
764
+ color: #545047;
765
+ }
766
+
767
+ &.collapsed{
768
+ height: 300px;
769
+ overflow: hidden;
770
+
771
+ &::after{
772
+ content: "";
773
+ position: absolute;
774
+ z-index: 1;
775
+ bottom: 0;
776
+ left: 0;
777
+ pointer-events: none;
778
+ background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 90%);
779
+ width: 100%;
780
+ height: 5em;
781
+ transition: opacity $transition;
782
+ }
783
+
784
+ &+button{
785
+ margin-top: 0px;
786
+ }
787
+ }
788
+
789
+ }
790
+
915
791
  .schedule{
916
- // width: Fill (795px)px;
917
- // height: Hug (87px)px;
918
792
  padding: 20px;
919
793
  gap: 32px;
920
794
  border-radius: 5px;
@@ -922,8 +796,13 @@ body{
922
796
  display: inline-flex;
923
797
  align-items: center;
924
798
  justify-content: space-between;
799
+ flex-direction: column;
800
+ text-align: center;
925
801
 
926
802
  .flight-date{
803
+ width: 100%;
804
+ text-align: left;
805
+
927
806
  svg{
928
807
  vertical-align: middle;
929
808
  margin-right: 12px;
@@ -985,14 +864,6 @@ body{
985
864
  flex-direction: column;
986
865
  gap: 8px;
987
866
  }
988
-
989
- .from{
990
- align-items: flex-end;
991
- }
992
-
993
- .to{
994
- align-items: flex-start;
995
- }
996
867
 
997
868
  label{
998
869
  font-family: $font-default;
@@ -1011,13 +882,35 @@ body{
1011
882
  font-size: 12px;
1012
883
  font-weight: 300;
1013
884
  line-height: 18px;
1014
- text-align: center;
1015
885
  text-underline-position: from-font;
1016
886
  text-decoration-skip-ink: none;
1017
887
  color: rgba(91, 71, 19, 0.7);
1018
888
  }
1019
889
 
890
+
891
+ .from{
892
+ align-items: flex-end;
893
+
894
+ span{
895
+ text-align: right;
896
+ }
897
+ }
898
+
899
+ .to{
900
+ align-items: flex-start;
901
+
902
+ span{
903
+ text-align: left;
904
+ }
905
+ }
906
+
1020
907
  &_icon{
908
+ width: 53px;
909
+
910
+ img{
911
+ vertical-align: middle;
912
+ }
913
+
1021
914
  &::before, &::after{
1022
915
  /* Styles kept */
1023
916
  width: 25%;
@@ -1032,7 +925,7 @@ body{
1032
925
 
1033
926
  /* Use padding to vertical align the line */
1034
927
  /* Use padding in em for a responsive icon height */
1035
- padding-top: 0.5em;
928
+ padding-top: 0.2em;
1036
929
 
1037
930
  /* Use margins to give the lines some spacement around the icon */
1038
931
  /* Use margins in % for a responsive spacement */
@@ -1043,69 +936,98 @@ body{
1043
936
  }
1044
937
  }
1045
938
 
1046
- #pricing-table{
1047
- width: 100%;
1048
- border-spacing: 5px 0;
939
+ .super-promo{
940
+ background: rgba(249, 226, 152, 1);
941
+ }
1049
942
 
1050
- .super-promo{
1051
- background: rgba(249, 226, 152, 1);
1052
- }
943
+ .promo1{
944
+ background: rgba(249, 246, 243, 1);
945
+ }
1053
946
 
1054
- .promo{
1055
- background: rgba(249, 246, 243, 1);
1056
- }
947
+ .normal{
948
+ background: rgba(245, 245, 245, 1);
949
+ }
1057
950
 
1058
- .normal{
1059
- background: rgba(245, 245, 245, 1);
1060
- }
951
+ #pricing-table{
952
+ display: none;
953
+ }
1061
954
 
1062
- th{
1063
- border-top-left-radius: 10px;
1064
- border-top-right-radius: 10px;
1065
- font-family: $font-default;
1066
- font-size: 14px;
1067
- font-weight: 700;
1068
- line-height: 21px;
1069
- letter-spacing: 0.05em;
1070
- text-align: center;
1071
- text-underline-position: from-font;
1072
- text-decoration-skip-ink: none;
1073
- color: rgba(131, 104, 72, 1);
955
+ #pricing-list{
956
+ .ant-card .ant-card-body{
1074
957
  padding: 10px 15px;
1075
958
  }
1076
959
 
1077
- td{
960
+ .pricing-header{
1078
961
  font-family: $font-default;
962
+ font-weight: 600;
1079
963
  font-size: 14px;
1080
- font-weight: 500;
1081
964
  line-height: 21px;
1082
- letter-spacing: 0.05em;
965
+ letter-spacing: 2%;
1083
966
  text-align: center;
1084
- text-underline-position: from-font;
1085
- text-decoration-skip-ink: none;
1086
- color: rgba(84, 80, 71, 1);
1087
- padding: 15px;
1088
- white-space: nowrap;
967
+ color: #836848;
968
+ margin-bottom: 10px;
969
+ text-transform: capitalize;
970
+ }
1089
971
 
1090
- &:first-child{
1091
- text-align: left;
1092
- font-weight: 400;
972
+ .pricing-body{
973
+
974
+ .pricing {
975
+ display: flex;
976
+ justify-content: space-between;
977
+ color: #545047;
978
+
979
+ .category{
980
+ font-family: $font-default;
981
+ font-weight: 400;
982
+ font-size: 12px;
983
+ line-height: 18px;
984
+ letter-spacing: 5%;
985
+ }
986
+ .price{
987
+ font-family: Poppins;
988
+ font-weight: 500;
989
+ font-size: 14px;
990
+ line-height: 21px;
991
+ letter-spacing: 5%;
992
+ text-align: center;
993
+
994
+ }
1093
995
  }
1094
996
  }
1095
997
 
1096
- tr:last-child td{
1097
- border-bottom-left-radius: 10px;
1098
- border-bottom-right-radius: 10px;
1099
- }
1100
998
  }
1101
999
  }
1102
1000
  }
1103
1001
 
1002
+ .toggle_contact-agent{
1003
+ cursor: pointer;
1004
+ border-bottom-left-radius: 20px;
1005
+ border-top-left-radius: 20px;
1006
+ color: #FFFFFF;
1007
+ background-color: #836848;
1008
+ font-size: 12px;
1009
+ line-height: 18px;
1010
+ letter-spacing: 5%;
1011
+ padding: 11px 15px 11px 15px;
1012
+ width: 135px;
1013
+ position: absolute;
1014
+ right: 0;
1015
+ }
1016
+
1017
+ .contact-agent-sider{
1018
+ position: fixed;
1019
+ z-index: 1;
1020
+ right: 0;
1021
+ top: 110px;
1022
+ }
1023
+
1104
1024
  .contact-agent{
1105
- // width: 265px;
1106
1025
  height: auto;
1107
- border-radius: 20px;
1108
1026
  background: #FFFFFF;
1027
+ border-radius: 20px;
1028
+ border-bottom-right-radius: 0;
1029
+ border-top-right-radius: 0;
1030
+ display: none;
1109
1031
 
1110
1032
  &_header{
1111
1033
  background-color: #F9E298;
@@ -1122,6 +1044,9 @@ body{
1122
1044
  border-radius: inherit;
1123
1045
  border-bottom-left-radius: 0;
1124
1046
  border-bottom-right-radius: 0;
1047
+ display: flex;
1048
+ align-items: center;
1049
+ justify-content: space-between;
1125
1050
  }
1126
1051
 
1127
1052
  &_content{
@@ -1162,14 +1087,38 @@ body{
1162
1087
  }
1163
1088
 
1164
1089
  }
1090
+
1091
+ .show-contact-agent-mobile{
1092
+ .toggle_contact-agent{
1093
+ display: none;
1094
+ }
1095
+ .contact-agent{
1096
+ display: block;
1097
+ }
1098
+ }
1165
1099
  }
1166
1100
  }
1167
1101
 
1168
1102
  .agent-full-contact-details{
1103
+ .ant-modal-title{
1104
+ img{
1105
+ height: 40px;
1106
+ object-fit: cover;
1107
+ }
1108
+ }
1169
1109
  .contact-details{
1170
1110
  padding: 15px 10px 15px 10px;
1171
1111
  background: rgba(245, 245, 245, 1);
1172
1112
 
1113
+ h2{
1114
+ font-family: $font-default;
1115
+ font-weight: 600;
1116
+ font-size: 16px;
1117
+ line-height: 24px;
1118
+ letter-spacing: 3%;
1119
+ color: #000000CC;
1120
+ }
1121
+
1173
1122
  svg{
1174
1123
  color: rgba(170, 133, 62, 1);
1175
1124
  background: rgba(255, 255, 255, 1);
@@ -1194,24 +1143,14 @@ body{
1194
1143
  }
1195
1144
 
1196
1145
  #about-signature-tours{
1197
- // width: 1440px;
1198
1146
  height: 100%;
1199
- gap: 0px;
1200
- opacity: 0px;
1201
- display: flex;
1202
- flex-direction: column;
1203
- align-items: center;
1204
- padding: 50px 0;
1205
-
1206
- &>div{
1207
- max-width: 970px;
1208
- }
1147
+ padding: 45px;
1209
1148
 
1210
1149
  h1{
1211
1150
  font-family: $font-default;
1212
- font-size: 45px;
1213
- font-weight: 200;
1214
- line-height: 67.5px;
1151
+ font-size: 24px;
1152
+ font-weight: 300;
1153
+ line-height: 36px;
1215
1154
  letter-spacing: 0.06em;
1216
1155
  text-align: center;
1217
1156
  text-underline-position: from-font;
@@ -1221,10 +1160,10 @@ body{
1221
1160
 
1222
1161
  p{
1223
1162
  font-family: $font-default;
1224
- font-size: 18px;
1225
- font-weight: 200;
1226
- line-height: 27px;
1227
- letter-spacing: 0.05em;
1163
+ font-size: 14px;
1164
+ font-weight: 300;
1165
+ line-height: 24px;
1166
+ letter-spacing: 0.03em;
1228
1167
  text-align: left;
1229
1168
  text-underline-position: from-font;
1230
1169
  text-decoration-skip-ink: none;
@@ -1234,12 +1173,9 @@ body{
1234
1173
  }
1235
1174
 
1236
1175
  #about-st-feature{
1237
- display: flex;
1238
- align-items: center;
1239
- justify-content: space-between;
1240
1176
 
1241
1177
  #feature{
1242
- width: 419px;
1178
+ // width: 419px;
1243
1179
  height: 246px;
1244
1180
  gap: 0px;
1245
1181
  border-radius: 20px;
@@ -1248,7 +1184,7 @@ body{
1248
1184
  box-shadow: 0px 5px 20px 0px #00000026;
1249
1185
 
1250
1186
  &> img{
1251
- width: 419px;
1187
+ width: 100%;
1252
1188
  height: 183.24px;
1253
1189
  gap: 0px;
1254
1190
  border-radius: 20px;
@@ -1304,7 +1240,7 @@ body{
1304
1240
  font-size: 24px;
1305
1241
  font-weight: 500;
1306
1242
  line-height: 36px;
1307
- text-align: left;
1243
+ text-align: center;
1308
1244
  text-underline-position: from-font;
1309
1245
  text-decoration-skip-ink: none;
1310
1246
  }
@@ -1338,8 +1274,8 @@ body{
1338
1274
  }
1339
1275
 
1340
1276
  .section-header{
1341
- width: 741px;
1342
- margin: auto;
1277
+ // width: 741px;
1278
+ // margin: auto;
1343
1279
 
1344
1280
  h2{
1345
1281
  font-family: $font-default;
@@ -1394,16 +1330,23 @@ body{
1394
1330
  }
1395
1331
 
1396
1332
  #quality-policy{
1397
- padding: 0 170px 16px 170px;
1333
+ padding: 60px var(--side-padding) 30px;
1398
1334
  margin-top: -70px;
1335
+ margin-left: 0 !important;
1336
+ margin-right: 0 !important;
1399
1337
  }
1400
1338
 
1401
1339
 
1402
1340
  #certificates{
1403
1341
  background: linear-gradient(180deg, #F7F4EB 0%, #FFFFFF 100%);
1404
- padding: 40px 160px 40px 160px;
1342
+ padding: 0 var(--side-padding) 30px;
1343
+
1344
+ .ant-col{
1345
+ text-align: center;
1346
+ }
1405
1347
 
1406
1348
  img {
1349
+ margin: auto;
1407
1350
  width: 263px;
1408
1351
  height: 365px;
1409
1352
  box-shadow: 0px 2px 16px 0px #0000001A;
@@ -1566,6 +1509,150 @@ body{
1566
1509
  }
1567
1510
  }
1568
1511
 
1512
+ #contact-agents-page{
1513
+ &_body{
1514
+ margin: 20px var(--side-padding);
1515
+
1516
+ #find-agents{
1517
+ &_header{
1518
+ width: 171px;
1519
+ height: 45px;
1520
+ margin: auto;
1521
+ padding-top: 11px;
1522
+ padding-right: 32px;
1523
+ padding-bottom: 11px;
1524
+ padding-left: 32px;
1525
+ gap: 10px;
1526
+ border-top-left-radius: 20px;
1527
+ border-top-right-radius: 20px;
1528
+ border-top-width: 1px;
1529
+ border-right-width: 1px;
1530
+ border-left-width: 1px;
1531
+ background: #F9E298;
1532
+
1533
+ span{
1534
+ font-family: $font-default;
1535
+ font-weight: 400;
1536
+ font-size: 15px;
1537
+ line-height: 22.5px;
1538
+ letter-spacing: 5%;
1539
+ text-align: center;
1540
+ color: #545047;
1541
+ }
1542
+ }
1543
+
1544
+ &_form{
1545
+ // width: 343;
1546
+ // height: 245;
1547
+ border-radius: 20px;
1548
+ padding-top: 33px;
1549
+ padding-right: 40px;
1550
+ padding-bottom: 33px;
1551
+ padding-left: 40px;
1552
+ gap: 10px;
1553
+ background: #FFFFFF;
1554
+ box-shadow: 0px 5px 20px 0px #00000026;
1555
+
1556
+ .find-button{
1557
+ width: 100%;
1558
+ }
1559
+ }
1560
+ }
1561
+
1562
+ #agents-list{
1563
+ margin: 40px 0;
1564
+
1565
+ img{
1566
+ height: 265;
1567
+ object-fit: cover;
1568
+ }
1569
+
1570
+ svg{
1571
+ vertical-align: middle;
1572
+ color: #000000;
1573
+ margin-right: 10px;
1574
+ }
1575
+
1576
+ span{
1577
+ font-family: $font-default;
1578
+ font-weight: 400;
1579
+ font-size: 14px;
1580
+ line-height: 24px;
1581
+ letter-spacing: 0%;
1582
+ color: #959492;
1583
+ }
1584
+
1585
+ .ant-card-meta-title{
1586
+ font-family: Poppins;
1587
+ font-weight: 500;
1588
+ font-size: 16px;
1589
+ line-height: 24px;
1590
+ letter-spacing: 0.05em;
1591
+ }
1592
+
1593
+ .more-info-button{
1594
+ width: 225px;
1595
+ margin: 20px auto 0;
1596
+ display: block;
1597
+ }
1598
+ }
1599
+
1600
+ }
1601
+ }
1602
+
1603
+ .agent-full-details{
1604
+ .ant-modal-title{
1605
+ display: flex;
1606
+ align-items: center;
1607
+ justify-content: center;
1608
+ gap: 10px;
1609
+
1610
+ img{
1611
+ height: 120px;
1612
+ object-fit: cover;
1613
+ }
1614
+
1615
+ span{
1616
+ font-family: $font-default;
1617
+ font-weight: 500;
1618
+ font-size: 20px;
1619
+ line-height: 24px;
1620
+ letter-spacing: 0%;
1621
+
1622
+ }
1623
+ }
1624
+
1625
+ .ant-modal-body{
1626
+ margin: 20px -24px;
1627
+ background: #FAFAFA;
1628
+ height: 100%;
1629
+
1630
+ .ant-row{
1631
+ width: 100%;
1632
+ margin: 0 !important;
1633
+ padding: 20px;
1634
+
1635
+ label{
1636
+ font-family: $font-default;
1637
+ font-weight: 600;
1638
+ font-size: 14px;
1639
+ line-height: 21px;
1640
+ letter-spacing: 0%;
1641
+ color: #836848;
1642
+ }
1643
+
1644
+ span{
1645
+ font-family: $font-default;
1646
+ font-weight: 400;
1647
+ font-size: 14px;
1648
+ line-height: 24px;
1649
+ letter-spacing: 0%;
1650
+ color: #545047;
1651
+ }
1652
+ }
1653
+ }
1654
+ }
1655
+
1569
1656
  #blog-page{
1570
1657
  &_body{
1571
1658
  margin: 20px var(--side-padding);
@@ -1586,3 +1673,529 @@ body{
1586
1673
  }
1587
1674
 
1588
1675
  }
1676
+
1677
+
1678
+ @media only screen and (min-width: 769px) {
1679
+ *{
1680
+ //can change to container width
1681
+ --side-padding: 10%;
1682
+ }
1683
+
1684
+ #popular-destinations{
1685
+ margin: auto;
1686
+ width: 80%;
1687
+
1688
+ h1{
1689
+ font-size: 45px;
1690
+ font-weight: 200;
1691
+ line-height: 67.5px;
1692
+
1693
+ width: 100%;
1694
+ margin: 50px 0;
1695
+ }
1696
+
1697
+ .location-dropdown{
1698
+ display: none;
1699
+ }
1700
+
1701
+ .ant-tabs .ant-tabs-content-holder{
1702
+ margin-top: -2px;
1703
+ }
1704
+
1705
+ .ant-tabs >.ant-tabs-nav{
1706
+ display: flex;
1707
+ margin: 0;
1708
+ }
1709
+
1710
+ .ant-tabs-nav {
1711
+ width: 100% !important;
1712
+ }
1713
+
1714
+ .ant-tabs-card.ant-tabs-top >.ant-tabs-nav {
1715
+ .ant-tabs-tab {
1716
+ display: block; // centers text inside tabs
1717
+ // flex: 1;
1718
+ text-align: center;
1719
+ justify-content: center;
1720
+ background: transparent;
1721
+ // border-color: #EBEBEB;
1722
+ // border-bottom-color: $primary-color;
1723
+ margin-left: 30px;
1724
+ padding: 0;
1725
+
1726
+ &+.ant-tabs-tab{
1727
+ margin:0;
1728
+ }
1729
+
1730
+ .ant-tabs-tab-btn {
1731
+ text-transform: uppercase;
1732
+ font-family: $font-default;
1733
+ font-size: 20px;
1734
+ font-weight: 400;
1735
+ line-height: 30px;
1736
+ letter-spacing: 0.05em;
1737
+ text-align: center;
1738
+ text-underline-position: from-font;
1739
+ text-decoration-skip-ink: none;
1740
+ color: $primary-color;
1741
+
1742
+ position: relative;
1743
+ margin: 0 5px;
1744
+ padding: 8px 20px;
1745
+ background: #FAFAFA;
1746
+ border-radius: 20px 20px 0 0;
1747
+
1748
+ &:before, &:after{
1749
+ content: " ";
1750
+ position: absolute;
1751
+ top: 0;
1752
+ width: 23px;
1753
+ height: 100%;
1754
+ background-color: inherit;
1755
+ }
1756
+
1757
+ &:before{
1758
+ border-radius: 12px 0 0 0;
1759
+ transform: skew(-24deg);
1760
+ left: -13px;
1761
+ }
1762
+
1763
+ &:after{
1764
+ border-radius: 0 12px 0 0;
1765
+ transform: skew(24deg);
1766
+ right: -13px; /* play with this one to give the LI border ~2px extrusion */
1767
+ border-right: 1px solid #EBEBEB;
1768
+ z-index: 1; /* overlap next element */
1769
+ }
1770
+ }
1771
+
1772
+ &.ant-tabs-tab-active{
1773
+ z-index: 1;
1774
+ // border-bottom-color: $primary-color;
1775
+ .ant-tabs-tab-btn {
1776
+ background: linear-gradient(180deg, $secondary-color -1.58%, $primary-color 92.51%);
1777
+ color: white !important;
1778
+
1779
+ &:before, &:after{
1780
+ background: linear-gradient(180deg, $secondary-color -1.58%, $primary-color 92.51%);
1781
+ }
1782
+ }
1783
+ }
1784
+ }
1785
+ }
1786
+
1787
+ .ant-tabs-nav > div:nth-of-type(1) {
1788
+ display: unset !important;
1789
+ width: 100% !important;
1790
+ }
1791
+
1792
+ .country{
1793
+ &-image{
1794
+ border-radius: 20px;
1795
+ }
1796
+
1797
+ &-name{
1798
+ width: auto;
1799
+ height: 71px;
1800
+ top: 64px;
1801
+ left: 62px;
1802
+
1803
+ font-size: 47px;
1804
+ font-weight: 400;
1805
+ line-height: 70.5px;
1806
+ }
1807
+ }
1808
+
1809
+ h2{
1810
+ font-size: 30px;
1811
+ font-weight: 600;
1812
+ line-height: 45px;
1813
+ letter-spacing: 0.05em;
1814
+ }
1815
+
1816
+ .top-cities,
1817
+ .more-cities,
1818
+ .highlights {
1819
+ padding: unset;
1820
+ }
1821
+
1822
+ .more-cities .other-destinations a{
1823
+ font-size: 18px;
1824
+ font-weight: 400;
1825
+ line-height: 27px;
1826
+ letter-spacing: 0.05em;
1827
+ }
1828
+ }
1829
+
1830
+ #testimonials-section{
1831
+ display: block;
1832
+
1833
+ #testimonials{
1834
+ max-width: 1099px;
1835
+ margin: auto;
1836
+ padding: 50px 0;
1837
+
1838
+ [class~='ant-carousel'] {
1839
+ .slick-slider{
1840
+ padding: 0 70px;
1841
+ }
1842
+ .slick-list {
1843
+ margin: 0;
1844
+ }
1845
+
1846
+ .slick-track {
1847
+ margin: auto;
1848
+ }
1849
+
1850
+ .slick-slide>div {
1851
+ padding: 20px 15px;
1852
+ }
1853
+
1854
+ .slick-prev,
1855
+ .slick-next{
1856
+ color: #959492;
1857
+
1858
+ &:hover{
1859
+ color: #DFB163;
1860
+ }
1861
+ }
1862
+ }
1863
+
1864
+ .testimonial{
1865
+ // min-height: 383px;
1866
+ padding: 10px 18px 20px 18px;
1867
+ gap: 15px;
1868
+ border-radius: 20px;
1869
+ opacity: 0px;
1870
+ background: #FFFFFF;
1871
+ box-shadow: 0px 5px 20px 0px #E1B65B33;
1872
+ text-align: center;
1873
+ display: flex !important;
1874
+ flex-direction: column;
1875
+ justify-content: flex-start;
1876
+
1877
+ .stars-icon{
1878
+ width: 92px;
1879
+ height: 32px;
1880
+ gap: 0px;
1881
+ opacity: 0px;
1882
+ margin: auto;
1883
+
1884
+ }
1885
+
1886
+ .tour{
1887
+ width: 100%;
1888
+ // height: 56px;
1889
+ padding: 10px;
1890
+ gap: 10px;
1891
+ border-radius: 10px;
1892
+ opacity: 0px;
1893
+ background: linear-gradient(270deg, $secondary-color 0%, #FFFDF5 117.76%);
1894
+ box-shadow: 0px 7px 16.7px 0px #E1B65B80;
1895
+ box-sizing: border-box;
1896
+ display: inline-flex;
1897
+ align-items: center;
1898
+
1899
+ img{
1900
+ width: 28.46px;
1901
+ height: 26.5px;
1902
+ }
1903
+
1904
+ span{
1905
+ font-family: $font-default;
1906
+ font-size: 12px;
1907
+ font-weight: 500;
1908
+ line-height: 18px;
1909
+ text-align: left;
1910
+ text-underline-position: from-font;
1911
+ text-decoration-skip-ink: none;
1912
+ color: #AA853E;
1913
+ width: 100%;
1914
+ display: block;
1915
+ }
1916
+
1917
+ }
1918
+
1919
+ .comment {
1920
+ white-space: break-spaces;
1921
+
1922
+ span{
1923
+ font-family: $font-default;
1924
+ font-size: 14px;
1925
+ font-style: italic;
1926
+ font-weight: 200;
1927
+ line-height: 21px;
1928
+ text-align: center;
1929
+ text-underline-position: from-font;
1930
+ text-decoration-skip-ink: none;
1931
+ }
1932
+ }
1933
+
1934
+ .author {
1935
+ display: inline-flex;
1936
+ align-items: center;
1937
+ justify-content: center;
1938
+ gap: 10px;
1939
+
1940
+ .author-icon{
1941
+ color: rgba(0, 0, 0, 0.8);
1942
+ width: 20px;
1943
+ height: 20px;
1944
+ }
1945
+ span{
1946
+ font-family: $font-default;
1947
+ font-size: 20px;
1948
+ font-weight: 400;
1949
+ line-height: 30px;
1950
+ letter-spacing: 0.05em;
1951
+ text-align: left;
1952
+ text-underline-position: from-font;
1953
+ text-decoration-skip-ink: none;
1954
+
1955
+ }
1956
+ }
1957
+ }
1958
+ }
1959
+ }
1960
+
1961
+ #about-signature-tours{
1962
+
1963
+ &>div{
1964
+ width: 70%;
1965
+ margin: auto;
1966
+ }
1967
+
1968
+ h1{
1969
+ font-size: 45px;
1970
+ font-weight: 200;
1971
+ line-height: 67.5px;
1972
+ letter-spacing: 0.06em;
1973
+ }
1974
+
1975
+ p{
1976
+ font-size: 18px;
1977
+ font-weight: 200;
1978
+ line-height: 27px;
1979
+ letter-spacing: 0.05em;
1980
+ text-align: left;
1981
+ }
1982
+
1983
+ picture{
1984
+ height: 100%;
1985
+ display: block;
1986
+ margin: 30px 0;
1987
+ }
1988
+ }
1989
+
1990
+ #listing-page{
1991
+ &_header{
1992
+ &>.ant-flex{
1993
+ flex-direction: row;
1994
+ justify-content: space-between;
1995
+ align-items: center;
1996
+ }
1997
+
1998
+ .location-filter.ant-select{
1999
+ line-height: 36px;
2000
+ width: 170px;
2001
+
2002
+ .ant-select-selection-item{
2003
+ font-size: 20px;
2004
+ font-weight: 500;
2005
+ line-height: 30px;
2006
+ letter-spacing: 0.05em;
2007
+ }
2008
+ }
2009
+ }
2010
+
2011
+ #tours{
2012
+ .tour{
2013
+ flex-direction: row;
2014
+
2015
+ &_image{
2016
+ img{
2017
+ border-top-right-radius: 0;
2018
+ border-top-left-radius: 20px;
2019
+ border-bottom-left-radius: 20px;
2020
+ }
2021
+ }
2022
+
2023
+ &_details_dates {
2024
+ .date-selector{
2025
+ justify-content: unset;
2026
+ }
2027
+ }
2028
+
2029
+ &_pricing{
2030
+ border-bottom-left-radius: 0;
2031
+ border-top-right-radius: 20px;
2032
+ border-bottom-right-radius: 20px;
2033
+
2034
+ &_details{
2035
+ flex-direction: column;
2036
+ align-items: stretch;
2037
+ }
2038
+
2039
+ .ant-space-item{
2040
+ width: auto;
2041
+ }
2042
+ }
2043
+ }
2044
+ }
2045
+ }
2046
+
2047
+ #show-page {
2048
+ &_header{
2049
+ h1{
2050
+ font-size: 18px;
2051
+ line-height: 27px;
2052
+ letter-spacing: 0%;
2053
+ text-align: left;
2054
+
2055
+ font-size: 30px;
2056
+ font-weight: 400;
2057
+ line-height: 45px;
2058
+ letter-spacing: 0.05em;
2059
+ }
2060
+ }
2061
+
2062
+ &_body{
2063
+ .toggle_contact-agent,
2064
+ .collapse-contact-agent{
2065
+ display: none;
2066
+ }
2067
+
2068
+ .contact-agent-sider{
2069
+ position: relative;
2070
+ top: unset;
2071
+ }
2072
+
2073
+ .contact-agent {
2074
+ border-bottom-right-radius: 20px;
2075
+ border-top-right-radius: 20px;
2076
+ display: block;
2077
+ }
2078
+
2079
+ .details-container_content{
2080
+ #things-to-know{
2081
+ grid-template-columns: repeat(5, 1fr);
2082
+ }
2083
+
2084
+ .schedule{
2085
+ flex-direction: row;
2086
+
2087
+ .flight-date{
2088
+ width: auto;
2089
+ }
2090
+ }
2091
+ #pricing-list{
2092
+ display: none;
2093
+ }
2094
+
2095
+ #pricing-table{
2096
+ display: table;
2097
+ width: 100%;
2098
+ border-spacing: 5px 0;
2099
+
2100
+ .price-type{
2101
+ text-transform: capitalize;
2102
+ }
2103
+
2104
+ th{
2105
+ border-top-left-radius: 10px;
2106
+ border-top-right-radius: 10px;
2107
+ font-family: $font-default;
2108
+ font-size: 14px;
2109
+ font-weight: 700;
2110
+ line-height: 21px;
2111
+ letter-spacing: 0.05em;
2112
+ text-align: center;
2113
+ text-underline-position: from-font;
2114
+ text-decoration-skip-ink: none;
2115
+ color: rgba(131, 104, 72, 1);
2116
+ padding: 10px 15px;
2117
+ }
2118
+
2119
+ td{
2120
+ font-family: $font-default;
2121
+ font-size: 14px;
2122
+ font-weight: 500;
2123
+ line-height: 21px;
2124
+ letter-spacing: 0.05em;
2125
+ text-align: center;
2126
+ text-underline-position: from-font;
2127
+ text-decoration-skip-ink: none;
2128
+ color: rgba(84, 80, 71, 1);
2129
+ padding: 15px;
2130
+ white-space: nowrap;
2131
+
2132
+ &:first-child{
2133
+ text-align: left;
2134
+ font-weight: 400;
2135
+ }
2136
+ }
2137
+
2138
+ tr:last-child td{
2139
+ border-bottom-left-radius: 10px;
2140
+ border-bottom-right-radius: 10px;
2141
+ }
2142
+ }
2143
+ }
2144
+ }
2145
+
2146
+ }
2147
+
2148
+ .agent-full-contact-details{
2149
+ width: 650px !important;
2150
+ }
2151
+
2152
+ #contact-agents-page_body {
2153
+ #find-agents{
2154
+ width: 65%;
2155
+ margin: auto;
2156
+
2157
+ &_form{
2158
+ text-align: center;
2159
+ form{
2160
+ display: inline-flex;
2161
+ gap: 16px;
2162
+ }
2163
+ .ant-form-item{
2164
+ margin-bottom: 0;
2165
+ text-align: left;
2166
+ }
2167
+
2168
+ .ant-form-item,
2169
+ .find-button{
2170
+ width: 210px;
2171
+ }
2172
+ }
2173
+ }
2174
+
2175
+ #agents-list{
2176
+ .more-info-button{
2177
+ width: 100%;
2178
+ }
2179
+ }
2180
+ }
2181
+
2182
+ .agent-full-details{
2183
+ width: 800px !important;
2184
+ }
2185
+
2186
+ #about-us-page{
2187
+ .section-header {
2188
+ width: 741px;
2189
+ margin: auto;
2190
+ }
2191
+
2192
+ #quality-policy{
2193
+ padding: 0 170px 16px 170px;
2194
+ }
2195
+
2196
+ #certificates{
2197
+ padding: 40px 160px 40px 160px;
2198
+ justify-content: flex-start;
2199
+ }
2200
+ }
2201
+ }