iceholidays-frontend 0.3.0 → 0.4.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 (76) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/iceholidays/frontend/application.sass.scss +1588 -0
  3. data/app/assets/stylesheets/iceholidays/frontend/common.scss +233 -0
  4. data/app/assets/stylesheets/iceholidays/frontend/layout.scss +188 -0
  5. data/app/assets/stylesheets/iceholidays/frontend/utils/_antd_overrides.scss +107 -0
  6. data/app/assets/stylesheets/iceholidays/frontend/utils/_variables.scss +3 -0
  7. data/app/assets/stylesheets/iceholidays/frontend/widgets/filter_pills.scss +45 -0
  8. data/app/assets/stylesheets/iceholidays/frontend/widgets/search_bar.scss +112 -0
  9. data/app/controllers/iceholidays/frontend/site_controller.rb +32 -0
  10. data/app/javascript/api-services/banners-api.service.ts +28 -0
  11. data/app/javascript/api-services/locations-api.service.ts +49 -0
  12. data/app/javascript/api-services/search-api.service.ts +16 -0
  13. data/app/javascript/api-services/series-api.service.ts +44 -0
  14. data/app/javascript/api-services/testimonials-api.service.ts +27 -0
  15. data/app/javascript/interfaces/banner.interface.ts +10 -0
  16. data/app/javascript/interfaces/country.interface.ts +18 -0
  17. data/app/javascript/interfaces/itinerary.interface.ts +18 -0
  18. data/app/javascript/interfaces/testimonial.interface.ts +6 -0
  19. data/app/javascript/react/App.tsx +32 -0
  20. data/app/javascript/react/components/Destinations.tsx +72 -141
  21. data/app/javascript/react/components/Testimonials.tsx +68 -61
  22. data/app/javascript/react/components/shared/Headline.tsx +29 -0
  23. data/app/javascript/react/components/shared/Postcard.tsx +31 -0
  24. data/app/javascript/react/components/shared/RibbonSection.tsx +21 -0
  25. data/app/javascript/react/index.js +3 -5
  26. data/app/javascript/react/layouts/MainFooter.tsx +72 -0
  27. data/app/javascript/react/layouts/MainHeader.tsx +45 -0
  28. data/app/javascript/react/layouts/MainLayout.tsx +21 -0
  29. data/app/javascript/react/pages/AboutUsPage.tsx +95 -0
  30. data/app/javascript/react/pages/BlogPage.tsx +79 -0
  31. data/app/javascript/react/pages/BlogShowPage.tsx +43 -0
  32. data/app/javascript/react/pages/ContactAgentsPage.tsx +16 -0
  33. data/app/javascript/react/pages/ContactUsPage.tsx +122 -0
  34. data/app/javascript/react/pages/CountriesPage.tsx +62 -0
  35. data/app/javascript/react/pages/Homepage.tsx +90 -0
  36. data/app/javascript/react/pages/ListingPage.tsx +246 -0
  37. data/app/javascript/react/pages/ShowPage.tsx +397 -0
  38. data/app/javascript/react/widgets/FilterPills.tsx +77 -0
  39. data/app/javascript/react/widgets/SearchBarWidget.tsx +42 -0
  40. data/app/views/iceholidays/frontend/site/index.html.erb +1 -24
  41. data/app/views/layouts/iceholidays/frontend/application.html.erb +2 -6
  42. data/config/routes.rb +9 -0
  43. data/lib/iceholidays/frontend/version.rb +1 -1
  44. data/public/iceholidays-assets/application.css +1873 -0
  45. data/public/iceholidays-assets/application.js +225 -651
  46. data/public/iceholidays-assets/application.js.map +4 -4
  47. data/public/iceholidays-assets/images/8D7N.png +0 -0
  48. data/public/iceholidays-assets/images/about_us.png +0 -0
  49. data/public/iceholidays-assets/images/about_us2.png +0 -0
  50. data/public/iceholidays-assets/images/blog.png +0 -0
  51. data/public/iceholidays-assets/images/blog1.png +0 -0
  52. data/public/iceholidays-assets/images/certificate1.png +0 -0
  53. data/public/iceholidays-assets/images/certificate2.png +0 -0
  54. data/public/iceholidays-assets/images/china_listings_cover.png +0 -0
  55. data/public/iceholidays-assets/images/china_southern_airlines.png +0 -0
  56. data/public/iceholidays-assets/images/china_southern_airlines_icon.png +0 -0
  57. data/public/iceholidays-assets/images/competitiveness.png +0 -0
  58. data/public/iceholidays-assets/images/contact_agents.png +0 -0
  59. data/public/iceholidays-assets/images/contact_us.png +0 -0
  60. data/public/iceholidays-assets/images/contact_us_form.png +0 -0
  61. data/public/iceholidays-assets/images/ethical.png +0 -0
  62. data/public/iceholidays-assets/images/hw_logo.png +0 -0
  63. data/public/iceholidays-assets/images/innovative.png +0 -0
  64. data/public/iceholidays-assets/images/plane.png +0 -0
  65. data/public/iceholidays-assets/images/social/ico_fb.png +0 -0
  66. data/public/iceholidays-assets/images/social/ico_ig.png +0 -0
  67. data/public/iceholidays-assets/images/social/ico_twitter.png +0 -0
  68. data/public/iceholidays-assets/images/social/ico_yt.png +0 -0
  69. data/public/iceholidays-assets/images/social.png +0 -0
  70. data/public/iceholidays-assets/images/tour1.png +0 -0
  71. metadata +61 -49
  72. data/app/assets/stylesheets/iceholidays/frontend/application.scss +0 -904
  73. data/app/javascript/react/components/Homepage.tsx +0 -15
  74. data/app/javascript/react/components/HomepageBanner.tsx +0 -62
  75. data/app/views/layouts/iceholidays/frontend/shared/_footer.html.erb +0 -42
  76. data/app/views/layouts/iceholidays/frontend/shared/_header.html.erb +0 -20
@@ -0,0 +1,1873 @@
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
+ @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");
17
+ .ant-layout-content {
18
+ position: relative;
19
+ }
20
+
21
+ .ant-btn-variant-solid {
22
+ background-color: #DCB062;
23
+ color: #FFFFFF;
24
+ border-radius: 20px;
25
+ }
26
+ .ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
27
+ background-color: #AA853E;
28
+ }
29
+
30
+ .ant-btn-color-primary.ant-btn-variant-outlined {
31
+ border-color: #DCB062;
32
+ color: #DCB062;
33
+ border-radius: 20px;
34
+ }
35
+ .ant-btn-color-primary.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover {
36
+ --darkPrimaryColor: #AA853E;
37
+ border-color: var(--darkPrimaryColor);
38
+ color: var(--darkPrimaryColor);
39
+ }
40
+
41
+ .ant-btn-color-default.ant-btn-variant-filled {
42
+ color: #DCB062;
43
+ }
44
+
45
+ .ant-btn-color-primary {
46
+ box-shadow: 0 2px 0 rgba(220, 176, 98, 0.1);
47
+ }
48
+
49
+ .ant-btn-sm {
50
+ font-size: 10px;
51
+ }
52
+
53
+ .ant-input-outlined:hover, .ant-input-outlined:focus,
54
+ .ant-picker-outlined:hover,
55
+ .ant-picker-outlined:focus {
56
+ border-color: #DCB062;
57
+ }
58
+ .ant-input-outlined:focus,
59
+ .ant-picker-outlined:focus {
60
+ box-shadow: 0 2px 0 rgba(220, 176, 98, 0.1);
61
+ }
62
+
63
+ [class~=ant-carousel] [class~=slick-dots] {
64
+ bottom: 30px;
65
+ }
66
+ [class~=ant-carousel] [class~=slick-dots] li {
67
+ width: 15px !important;
68
+ }
69
+ [class~=ant-carousel] [class~=slick-dots] li button {
70
+ width: 13px;
71
+ height: 13px;
72
+ border-radius: 100%;
73
+ background-color: transparent;
74
+ border: 1px solid #FFFFFF;
75
+ opacity: 1;
76
+ }
77
+ [class~=ant-carousel] [class~=slick-dots] li.slick-active button {
78
+ width: 13px;
79
+ height: 13px;
80
+ border-radius: 100%;
81
+ background-color: white;
82
+ }
83
+ [class~=ant-carousel] .slick-prev,
84
+ [class~=ant-carousel] .slick-next {
85
+ width: unset;
86
+ height: unset;
87
+ }
88
+ [class~=ant-carousel] .slick-prev::after,
89
+ [class~=ant-carousel] .slick-next::after {
90
+ display: none;
91
+ }
92
+
93
+ a {
94
+ color: #DCB062;
95
+ }
96
+
97
+ .ant-select-outlined:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer):hover .ant-select-selector {
98
+ border-color: #DCB062;
99
+ }
100
+
101
+ .ant-select-item-option-selected:not(.ant-select-item-option-disabled):has(.country-filter_option) {
102
+ color: #DCB062 !important;
103
+ background-color: #FFFFFF;
104
+ }
105
+
106
+ .ant-select-item-option:not(.ant-select-item-option-selected):has(.country-filter_option) {
107
+ color: rgba(0, 0, 0, 0.5019607843);
108
+ }
109
+
110
+ #main-header {
111
+ position: relative;
112
+ background: linear-gradient(241.37deg, #D1AC6E -108.33%, #D1AC6E -14.72%, #F9E298 -2.73%, #B68B31 108.18%);
113
+ width: 100%;
114
+ height: 50px;
115
+ display: flex;
116
+ align-items: center;
117
+ justify-content: space-around;
118
+ }
119
+ #main-header > div {
120
+ display: flex;
121
+ align-items: center;
122
+ justify-content: space-around;
123
+ }
124
+ #main-header .nav-menu {
125
+ /* position: absolute; */
126
+ display: grid;
127
+ grid-template-columns: auto auto auto auto;
128
+ }
129
+ #main-header .nav-menu a {
130
+ color: white;
131
+ text-transform: uppercase;
132
+ font-family: Poppins, san-serif;
133
+ font-size: 16px;
134
+ font-weight: 500;
135
+ line-height: 24px;
136
+ letter-spacing: 0.05em;
137
+ text-align: left;
138
+ text-underline-position: from-font;
139
+ text-decoration-skip-ink: none;
140
+ text-decoration: none;
141
+ }
142
+ #main-header .nav-menu a.active {
143
+ color: #5B4713;
144
+ }
145
+ #main-header #left-menu {
146
+ top: 13px;
147
+ left: 183px;
148
+ gap: 35px;
149
+ opacity: 0px;
150
+ }
151
+ #main-header .logo {
152
+ width: 304px;
153
+ height: 66px;
154
+ left: 568px;
155
+ gap: 0px;
156
+ opacity: 0px;
157
+ z-index: 2;
158
+ }
159
+ #main-header #right-menu {
160
+ top: 13px;
161
+ left: 877px;
162
+ gap: 35px;
163
+ opacity: 0px;
164
+ }
165
+ #main-header #get-brochure {
166
+ position: absolute;
167
+ width: 152px;
168
+ /* height: 35px; */
169
+ top: 8px;
170
+ right: 20px;
171
+ }
172
+ #main-header #get-brochure button {
173
+ padding: 7px 8px 7px 8px;
174
+ border-radius: 20px;
175
+ border: 1px solid;
176
+ background: linear-gradient(287.63deg, #D1AC6E -19.9%, #D1AC6E 10.87%, #F9E298 26.63%, #B68B31 93.91%);
177
+ border-image-source: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(42, 42, 42, 0.5) 100%);
178
+ box-shadow: 0px 3px 10px 0px rgba(170, 133, 62, 0.5019607843);
179
+ box-shadow: 0px 4px 4px 0px rgba(249, 246, 243, 0.1019607843) inset;
180
+ text-align: center;
181
+ text-transform: uppercase;
182
+ font-family: Poppins, san-serif;
183
+ font-size: 14px;
184
+ font-weight: 500;
185
+ line-height: 21px;
186
+ letter-spacing: 0.05em;
187
+ text-align: left;
188
+ text-underline-position: from-font;
189
+ text-decoration-skip-ink: none;
190
+ }
191
+
192
+ #main-footer {
193
+ height: 321px;
194
+ gap: 0px;
195
+ opacity: 0px;
196
+ background: linear-gradient(270deg, #AA853E 0%, #F9E298 33.5%, #FFF3A6 50%, #F9E298 65.5%, #E1B65B 100%), linear-gradient(4.08deg, rgba(170, 133, 62, 0.5) -2.54%, rgba(249, 225, 151, 0.5) 7.02%);
197
+ position: relative;
198
+ }
199
+ #main-footer_links {
200
+ margin: auto;
201
+ height: 196px;
202
+ width: 70%;
203
+ display: flex;
204
+ align-items: center;
205
+ justify-content: space-between;
206
+ padding: 38px 0;
207
+ position: relative;
208
+ }
209
+ #main-footer_links > div {
210
+ height: 100%;
211
+ display: flex;
212
+ flex-direction: column;
213
+ justify-content: space-between;
214
+ }
215
+ #main-footer_links a {
216
+ font-family: Poppins, san-serif;
217
+ font-size: 18px;
218
+ font-weight: 500;
219
+ line-height: 36px;
220
+ letter-spacing: 0.05em;
221
+ text-align: left;
222
+ text-underline-position: from-font;
223
+ text-decoration-skip-ink: none;
224
+ color: #AA853E;
225
+ text-transform: uppercase;
226
+ }
227
+ #main-footer_links div:has(> a + a) {
228
+ display: grid;
229
+ grid-template-columns: repeat(2, 1fr);
230
+ grid-template-rows: repeat(4, 1fr);
231
+ column-gap: 34px;
232
+ }
233
+ #main-footer_links .link-group-title {
234
+ font-family: Poppins, san-serif;
235
+ font-size: 15px;
236
+ font-weight: 400;
237
+ line-height: 22.5px;
238
+ letter-spacing: 0.05em;
239
+ text-align: left;
240
+ text-underline-position: from-font;
241
+ text-decoration-skip-ink: none;
242
+ color: #5B4713;
243
+ height: 37px;
244
+ grid-row-start: 2 span;
245
+ }
246
+ #main-footer_links hr {
247
+ width: 100%;
248
+ height: 0px;
249
+ top: 258.34px;
250
+ left: 0;
251
+ gap: 0px;
252
+ border: 1px 0px 0px 0px;
253
+ opacity: 0px;
254
+ border: 1px solid rgba(223, 177, 99, 0.5019607843);
255
+ position: absolute;
256
+ }
257
+ #main-footer #copyright {
258
+ height: 17px;
259
+ top: 282.28px;
260
+ left: 592px;
261
+ gap: 0px;
262
+ opacity: 0px;
263
+ position: absolute;
264
+ }
265
+ #main-footer #copyright span {
266
+ font-family: Poppins, san-serif;
267
+ font-size: 14px;
268
+ font-weight: 400;
269
+ line-height: 16.93px;
270
+ letter-spacing: 0.05em;
271
+ text-align: left;
272
+ text-underline-position: from-font;
273
+ text-decoration-skip-ink: none;
274
+ color: #AA853E;
275
+ }
276
+
277
+ #headline {
278
+ --side-padding: 10%;
279
+ }
280
+ #headline_banner {
281
+ height: 352px;
282
+ background-size: cover;
283
+ background-repeat: no-repeat;
284
+ background-position: center center;
285
+ }
286
+ #headline_header {
287
+ padding: 20px var(--side-padding);
288
+ top: 398px;
289
+ gap: 0px;
290
+ opacity: 0px;
291
+ background: linear-gradient(270deg, #AA853E 0%, #F9E298 33.5%, #FFF3A6 50%, #F9E298 65.5%, #E1B65B 100%), linear-gradient(40.85deg, rgba(170, 133, 62, 0.5) -614.19%, rgba(249, 225, 151, 0.5) -547.57%);
292
+ }
293
+ #headline_header h1 {
294
+ margin: 0;
295
+ font-family: Poppins, san-serif;
296
+ font-size: 45px;
297
+ font-weight: 400;
298
+ line-height: 67.5px;
299
+ letter-spacing: 0.05em;
300
+ text-align: left;
301
+ text-underline-position: from-font;
302
+ text-decoration-skip-ink: none;
303
+ color: #5B4713;
304
+ text-transform: uppercase;
305
+ }
306
+ #headline .ant-breadcrumb {
307
+ padding: 10px var(--side-padding);
308
+ }
309
+
310
+ .date-selector {
311
+ background: #F5F5F5;
312
+ padding: 15px 24px;
313
+ border-radius: 10px;
314
+ display: inline-flex;
315
+ gap: 8px;
316
+ width: 100%;
317
+ flex-wrap: wrap;
318
+ box-sizing: border-box;
319
+ }
320
+ .date-selector span {
321
+ border-width: 1px;
322
+ border-style: solid;
323
+ border-radius: 20px;
324
+ background: #FFFFFF;
325
+ font-family: Poppins, san-serif;
326
+ font-size: 12px;
327
+ font-weight: 400;
328
+ line-height: 18px;
329
+ letter-spacing: 0.05em;
330
+ text-align: center;
331
+ text-underline-position: from-font;
332
+ text-decoration-skip-ink: none;
333
+ color: #999999;
334
+ padding: 2px 8px 2px 8px;
335
+ cursor: pointer;
336
+ }
337
+ .date-selector .show-all-dates {
338
+ font-family: Poppins, san-serif;
339
+ font-size: 11px;
340
+ font-weight: 400;
341
+ line-height: 16.5px;
342
+ text-align: right;
343
+ text-underline-position: from-font;
344
+ text-decoration-skip-ink: none;
345
+ color: #DCB062;
346
+ display: inline-flex;
347
+ gap: 5px;
348
+ cursor: pointer;
349
+ }
350
+
351
+ .postcards {
352
+ display: grid;
353
+ grid-template-columns: repeat(2, 1fr);
354
+ grid-template-rows: repeat(2, 1fr);
355
+ gap: 20px;
356
+ }
357
+
358
+ .postcard {
359
+ border-radius: 20px;
360
+ overflow: hidden;
361
+ width: 100%;
362
+ }
363
+ .postcard img {
364
+ width: 100%;
365
+ height: 230.5px;
366
+ gap: 0px;
367
+ opacity: 0px;
368
+ border-top-left-radius: 20px;
369
+ border-top-right-radius: 20px;
370
+ display: block;
371
+ object-fit: cover;
372
+ object-position: top center;
373
+ transition: transform 0.4s ease;
374
+ transform-origin: 50% 100%;
375
+ }
376
+ .postcard img:hover {
377
+ transform: scale(1.2);
378
+ width: 100%;
379
+ }
380
+ .postcard .details {
381
+ padding: 12px 20px 12px 20px;
382
+ gap: 0px;
383
+ border: 1px 0px 0px 0px;
384
+ justify-content: space-between;
385
+ align-items: center;
386
+ opacity: 0px;
387
+ background: #DCB062;
388
+ display: flex;
389
+ border-bottom-left-radius: 20px;
390
+ border-bottom-right-radius: 20px;
391
+ }
392
+ .postcard .name {
393
+ font-family: Poppins, san-serif;
394
+ font-size: 20px;
395
+ font-weight: 400;
396
+ line-height: 30px;
397
+ letter-spacing: 0.05em;
398
+ text-align: left;
399
+ text-underline-position: from-font;
400
+ text-decoration-skip-ink: none;
401
+ text-transform: uppercase;
402
+ color: #FFFFFF;
403
+ }
404
+ .postcard .tour-count {
405
+ font-family: Poppins, san-serif;
406
+ font-size: 14px;
407
+ font-weight: 400;
408
+ line-height: 21px;
409
+ letter-spacing: 0.05em;
410
+ text-align: right;
411
+ text-underline-position: from-font;
412
+ text-decoration-skip-ink: none;
413
+ color: #FFFFFF;
414
+ cursor: pointer;
415
+ }
416
+ .postcard .tour-count svg {
417
+ vertical-align: middle;
418
+ }
419
+
420
+ #ribbon-section {
421
+ background: #F7F4EB;
422
+ margin-top: 100px;
423
+ }
424
+ #ribbon-section_header {
425
+ height: 138px;
426
+ text-align: center;
427
+ position: relative;
428
+ background-image: url("/iceholidays-assets/images/Layer_1.png");
429
+ }
430
+ #ribbon-section_header h1 {
431
+ font-family: Poppins, san-serif;
432
+ font-size: 45px;
433
+ font-weight: 200;
434
+ line-height: 67.5px;
435
+ letter-spacing: 0.06em;
436
+ text-underline-position: from-font;
437
+ text-decoration-skip-ink: none;
438
+ color: #5B4713;
439
+ text-transform: uppercase;
440
+ position: absolute;
441
+ bottom: 20px;
442
+ left: 50%;
443
+ transform: translate(-50%, 20px);
444
+ margin: 0;
445
+ }
446
+
447
+ .pre-wrap {
448
+ white-space: pre-wrap; /* css-3 */
449
+ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
450
+ white-space: -pre-wrap; /* Opera 4-6 */
451
+ white-space: -o-pre-wrap; /* Opera 7 */
452
+ word-wrap: break-word; /* Internet Explorer 5.5+ */
453
+ }
454
+
455
+ .ant-input {
456
+ field-sizing: content;
457
+ }
458
+
459
+ #search-bar {
460
+ width: 100%;
461
+ height: auto;
462
+ filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.1490196078)) drop-shadow(0 1px 1px rgba(223, 177, 99, 0.6));
463
+ }
464
+ #search-bar img {
465
+ display: none;
466
+ }
467
+ #search-bar #search-bar-widget {
468
+ width: 100%;
469
+ padding: 25px;
470
+ gap: 7px;
471
+ opacity: 0px;
472
+ background: #F7F4EB;
473
+ position: relative;
474
+ }
475
+ #search-bar #search-bar-widget .ant-picker {
476
+ width: 100%;
477
+ }
478
+ #search-bar #search-bar-widget .ant-form-item {
479
+ margin-bottom: 10px;
480
+ }
481
+ #search-bar #search-bar-widget .ant-form-item .ant-form-item-label {
482
+ padding-bottom: 3px;
483
+ }
484
+ #search-bar #search-bar-widget .ant-form-item .ant-form-item-label label {
485
+ font-family: Poppins, san-serif;
486
+ font-size: 12px;
487
+ font-weight: 400;
488
+ line-height: 16.5px;
489
+ letter-spacing: 0.05em;
490
+ text-align: left;
491
+ text-underline-position: from-font;
492
+ text-decoration-skip-ink: none;
493
+ }
494
+ #search-bar #search-bar-widget .search-button {
495
+ width: 172px;
496
+ margin-top: 20px;
497
+ }
498
+ #search-bar #search-bar-widget .search-button span {
499
+ font-family: Poppins, san-serif;
500
+ font-size: 12px;
501
+ font-weight: 600;
502
+ line-height: 18px;
503
+ text-align: center;
504
+ text-underline-position: from-font;
505
+ text-decoration-skip-ink: none;
506
+ }
507
+ #search-bar #search-bar-widget .ant-picker .ant-picker-input span.ant-picker-suffix {
508
+ margin-left: 1px;
509
+ margin-right: 10px;
510
+ order: -1;
511
+ color: #AA853E;
512
+ }
513
+
514
+ @media only screen and (min-width: 769px) {
515
+ #search-bar {
516
+ top: 0;
517
+ left: 0;
518
+ position: absolute;
519
+ display: flex;
520
+ justify-content: center;
521
+ z-index: 1;
522
+ }
523
+ #search-bar img {
524
+ display: block;
525
+ margin: 0 -1px;
526
+ }
527
+ #search-bar #search-bar-widget {
528
+ width: auto;
529
+ padding: 15px;
530
+ }
531
+ #search-bar #search-bar-widget .ant-space {
532
+ flex-direction: unset;
533
+ align-items: flex-end;
534
+ }
535
+ #search-bar #search-bar-widget .ant-form {
536
+ display: inline-flex;
537
+ gap: 7px;
538
+ height: 100%;
539
+ }
540
+ #search-bar #search-bar-widget .ant-form-item {
541
+ margin-bottom: 0;
542
+ }
543
+ #search-bar #search-bar-widget .search-button {
544
+ width: auto;
545
+ margin-bottom: 3px;
546
+ }
547
+ }
548
+ .filter-title {
549
+ font-family: Poppins, san-serif;
550
+ font-size: 12px;
551
+ font-weight: 400;
552
+ line-height: 18px;
553
+ letter-spacing: 0.05em;
554
+ text-align: left;
555
+ text-underline-position: from-font;
556
+ text-decoration-skip-ink: none;
557
+ color: #545047;
558
+ }
559
+
560
+ .filter-pill {
561
+ padding: 6px 13px 6px 13px;
562
+ border-radius: 10px;
563
+ background: linear-gradient(360deg, #DCB062 5.04%, #F9E298 99.13%);
564
+ color: #836848;
565
+ cursor: pointer;
566
+ text-align: center;
567
+ min-width: 150px;
568
+ }
569
+ .filter-pill span {
570
+ font-family: Poppins, san-serif;
571
+ font-size: 18px;
572
+ font-weight: 400;
573
+ line-height: 27px;
574
+ letter-spacing: 0.05em;
575
+ text-align: left;
576
+ text-underline-position: from-font;
577
+ text-decoration-skip-ink: none;
578
+ }
579
+ .filter-pill.selected {
580
+ background: #836848;
581
+ color: #FFFFFF;
582
+ }
583
+
584
+ body {
585
+ margin: 0;
586
+ background: #F2F2F2;
587
+ font-family: Poppins, san-serif;
588
+ }
589
+
590
+ .flip {
591
+ -webkit-transform: scaleX(-1);
592
+ transform: scaleX(-1);
593
+ }
594
+
595
+ #homepage_banner {
596
+ min-height: 760px;
597
+ border-radius: 0px 0px 50px 50px;
598
+ }
599
+ #homepage_banner [class~=ant-carousel] .slick-prev {
600
+ inset-inline-start: 115px;
601
+ }
602
+ #homepage_banner [class~=ant-carousel] .slick-next {
603
+ inset-inline-end: 115px;
604
+ }
605
+
606
+ #popular-destinations {
607
+ margin: auto;
608
+ width: 80%;
609
+ }
610
+ #popular-destinations h1 {
611
+ font-family: Poppins, san-serif;
612
+ font-size: 45px;
613
+ font-weight: 200;
614
+ line-height: 67.5px;
615
+ text-align: center;
616
+ text-underline-position: from-font;
617
+ text-decoration-skip-ink: none;
618
+ text-transform: uppercase;
619
+ color: #545047;
620
+ }
621
+ #popular-destinations .ant-tabs .ant-tabs-content-holder {
622
+ margin-top: -2px;
623
+ }
624
+ #popular-destinations .ant-tabs > .ant-tabs-nav {
625
+ margin: 0;
626
+ }
627
+ #popular-destinations .ant-tabs-nav {
628
+ width: 100% !important;
629
+ }
630
+ #popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab {
631
+ display: block;
632
+ text-align: center;
633
+ justify-content: center;
634
+ background: transparent;
635
+ margin-left: 30px;
636
+ padding: 0;
637
+ }
638
+ #popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab {
639
+ margin: 0;
640
+ }
641
+ #popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-btn {
642
+ text-transform: uppercase;
643
+ font-family: Poppins, san-serif;
644
+ font-size: 20px;
645
+ font-weight: 400;
646
+ line-height: 30px;
647
+ letter-spacing: 0.05em;
648
+ text-align: center;
649
+ text-underline-position: from-font;
650
+ text-decoration-skip-ink: none;
651
+ color: #DCB062;
652
+ position: relative;
653
+ margin: 0 5px;
654
+ padding: 8px 20px;
655
+ background: #FAFAFA;
656
+ border-radius: 20px 20px 0 0;
657
+ }
658
+ #popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-btn:before, #popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-btn:after {
659
+ content: " ";
660
+ position: absolute;
661
+ top: 0;
662
+ width: 23px;
663
+ height: 100%;
664
+ background-color: inherit;
665
+ }
666
+ #popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-btn:before {
667
+ border-radius: 12px 0 0 0;
668
+ transform: skew(-24deg);
669
+ left: -13px;
670
+ }
671
+ #popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-btn:after {
672
+ border-radius: 0 12px 0 0;
673
+ transform: skew(24deg);
674
+ right: -13px; /* play with this one to give the LI border ~2px extrusion */
675
+ border-right: 1px solid #EBEBEB;
676
+ z-index: 1; /* overlap next element */
677
+ }
678
+ #popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab.ant-tabs-tab-active {
679
+ z-index: 1;
680
+ }
681
+ #popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
682
+ background: linear-gradient(180deg, #F9E298 -1.58%, #DCB062 92.51%);
683
+ color: white !important;
684
+ }
685
+ #popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn:before, #popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn:after {
686
+ background: linear-gradient(180deg, #F9E298 -1.58%, #DCB062 92.51%);
687
+ }
688
+ #popular-destinations .ant-tabs-nav > div:nth-of-type(1) {
689
+ display: unset !important;
690
+ width: 100% !important;
691
+ }
692
+ #popular-destinations .country {
693
+ position: relative;
694
+ display: block;
695
+ }
696
+ #popular-destinations .country-image {
697
+ width: 100%;
698
+ height: 392px;
699
+ object-fit: cover;
700
+ object-position: center;
701
+ border-width: 5px 0px 5px 0px;
702
+ border-style: solid;
703
+ border-color: #DCB062;
704
+ border-radius: 20px;
705
+ }
706
+ #popular-destinations .country-name {
707
+ width: 160px;
708
+ height: 71px;
709
+ top: 58px;
710
+ left: 45px;
711
+ gap: 0px;
712
+ opacity: 0px;
713
+ position: absolute;
714
+ }
715
+ #popular-destinations .country .bottom-logo {
716
+ position: absolute;
717
+ bottom: -35px;
718
+ border-color: #F2F2F2;
719
+ left: 0;
720
+ width: 100%;
721
+ }
722
+ #popular-destinations .top-cities h2 {
723
+ font-family: Poppins, san-serif;
724
+ font-size: 30px;
725
+ font-weight: 600;
726
+ line-height: 45px;
727
+ letter-spacing: 0.05em;
728
+ text-align: left;
729
+ text-underline-position: from-font;
730
+ text-decoration-skip-ink: none;
731
+ }
732
+ #popular-destinations .more-cities h2 {
733
+ font-family: Poppins, san-serif;
734
+ font-size: 30px;
735
+ font-weight: 600;
736
+ line-height: 45px;
737
+ letter-spacing: 0.05em;
738
+ text-align: left;
739
+ text-underline-position: from-font;
740
+ text-decoration-skip-ink: none;
741
+ }
742
+ #popular-destinations .more-cities .other-destinations {
743
+ display: inline-flex;
744
+ gap: 10px;
745
+ }
746
+ #popular-destinations .more-cities .other-destinations a {
747
+ font-family: Poppins, san-serif;
748
+ font-size: 18px;
749
+ font-weight: 400;
750
+ line-height: 27px;
751
+ letter-spacing: 0.05em;
752
+ text-align: left;
753
+ text-underline-position: from-font;
754
+ text-decoration-skip-ink: none;
755
+ background: linear-gradient(360deg, #DCB062 5.04%, #F9E298 99.13%);
756
+ color: #836848;
757
+ width: auto;
758
+ padding: 5px 15px;
759
+ gap: 4px;
760
+ border-radius: 20px;
761
+ opacity: 0px;
762
+ }
763
+ #popular-destinations .highlights {
764
+ display: grid;
765
+ grid-template-columns: repeat(5, 1fr);
766
+ gap: 10px;
767
+ margin-top: 30px;
768
+ }
769
+ #popular-destinations .highlights .tour {
770
+ height: 352px;
771
+ padding: 15px 0px 0px 0px;
772
+ gap: 0px;
773
+ border-radius: 20px;
774
+ opacity: 0px;
775
+ object-fit: cover;
776
+ position: relative;
777
+ background-size: cover;
778
+ position: relative;
779
+ background-position: top;
780
+ background-color: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
781
+ }
782
+ #popular-destinations .highlights .tour .details {
783
+ position: absolute;
784
+ display: flex;
785
+ justify-content: space-between;
786
+ align-items: flex-end;
787
+ bottom: 10px;
788
+ width: 100%;
789
+ padding: 0 15px;
790
+ }
791
+ #popular-destinations .highlights .tour .details .city-name {
792
+ font-family: Poppins, san-serif;
793
+ font-size: 20px;
794
+ font-weight: 400;
795
+ line-height: 30px;
796
+ letter-spacing: 0.05em;
797
+ text-align: left;
798
+ text-underline-position: from-font;
799
+ text-decoration-skip-ink: none;
800
+ color: #F9E298;
801
+ }
802
+ #popular-destinations .highlights .tour .details .tour-count {
803
+ width: 80px;
804
+ font-family: Poppins, san-serif;
805
+ font-size: 12px;
806
+ font-weight: 400;
807
+ line-height: 21px;
808
+ letter-spacing: 0.05em;
809
+ text-align: right;
810
+ text-underline-position: from-font;
811
+ text-decoration-skip-ink: none;
812
+ color: #FFFFFF;
813
+ display: inline-flex;
814
+ align-items: center;
815
+ justify-content: flex-end;
816
+ }
817
+
818
+ #testimonials {
819
+ max-width: 1099px;
820
+ margin: auto;
821
+ padding: 50px 0;
822
+ }
823
+ #testimonials [class~=ant-carousel] .slick-slider {
824
+ padding: 0 70px;
825
+ }
826
+ #testimonials [class~=ant-carousel] .slick-list {
827
+ margin: 0;
828
+ }
829
+ #testimonials [class~=ant-carousel] .slick-track {
830
+ margin: auto;
831
+ }
832
+ #testimonials [class~=ant-carousel] .slick-slide > div {
833
+ padding: 20px 15px;
834
+ }
835
+ #testimonials [class~=ant-carousel] .slick-prev,
836
+ #testimonials [class~=ant-carousel] .slick-next {
837
+ color: #959492;
838
+ }
839
+ #testimonials [class~=ant-carousel] .slick-prev:hover,
840
+ #testimonials [class~=ant-carousel] .slick-next:hover {
841
+ color: #DFB163;
842
+ }
843
+ #testimonials .testimonial {
844
+ padding: 10px 18px 20px 18px;
845
+ gap: 15px;
846
+ border-radius: 20px;
847
+ opacity: 0px;
848
+ background: #FFFFFF;
849
+ box-shadow: 0px 5px 20px 0px rgba(225, 182, 91, 0.2);
850
+ text-align: center;
851
+ display: flex !important;
852
+ flex-direction: column;
853
+ justify-content: flex-start;
854
+ }
855
+ #testimonials .testimonial .stars-icon {
856
+ width: 92px;
857
+ height: 32px;
858
+ gap: 0px;
859
+ opacity: 0px;
860
+ margin: auto;
861
+ }
862
+ #testimonials .testimonial .tour {
863
+ width: 100%;
864
+ padding: 10px;
865
+ gap: 10px;
866
+ border-radius: 10px;
867
+ opacity: 0px;
868
+ background: linear-gradient(270deg, #F9E298 0%, #FFFDF5 117.76%);
869
+ box-shadow: 0px 7px 16.7px 0px rgba(225, 182, 91, 0.5019607843);
870
+ box-sizing: border-box;
871
+ display: inline-flex;
872
+ align-items: center;
873
+ }
874
+ #testimonials .testimonial .tour img {
875
+ width: 28.46px;
876
+ height: 26.5px;
877
+ }
878
+ #testimonials .testimonial .tour span {
879
+ font-family: Poppins, san-serif;
880
+ font-size: 12px;
881
+ font-weight: 500;
882
+ line-height: 18px;
883
+ text-align: left;
884
+ text-underline-position: from-font;
885
+ text-decoration-skip-ink: none;
886
+ color: #AA853E;
887
+ width: 100%;
888
+ display: block;
889
+ }
890
+ #testimonials .testimonial .comment {
891
+ white-space: break-spaces;
892
+ }
893
+ #testimonials .testimonial .comment span {
894
+ font-family: Poppins, san-serif;
895
+ font-size: 14px;
896
+ font-style: italic;
897
+ font-weight: 200;
898
+ line-height: 21px;
899
+ text-align: center;
900
+ text-underline-position: from-font;
901
+ text-decoration-skip-ink: none;
902
+ }
903
+ #testimonials .testimonial .author {
904
+ display: inline-flex;
905
+ align-items: center;
906
+ justify-content: center;
907
+ gap: 10px;
908
+ }
909
+ #testimonials .testimonial .author .author-icon {
910
+ color: rgba(0, 0, 0, 0.8);
911
+ width: 20px;
912
+ height: 20px;
913
+ }
914
+ #testimonials .testimonial .author span {
915
+ font-family: Poppins, san-serif;
916
+ font-size: 20px;
917
+ font-weight: 400;
918
+ line-height: 30px;
919
+ letter-spacing: 0.05em;
920
+ text-align: left;
921
+ text-underline-position: from-font;
922
+ text-decoration-skip-ink: none;
923
+ }
924
+
925
+ #listing-page_header .country-filter.ant-select {
926
+ line-height: 35px;
927
+ width: 170px;
928
+ }
929
+ #listing-page_header .country-filter.ant-select .ant-select-selector {
930
+ padding: 3px 40px 3px 15px;
931
+ border-radius: 30px;
932
+ height: 36px;
933
+ }
934
+ #listing-page_header .country-filter.ant-select .ant-select-selection-item {
935
+ font-family: Poppins, san-serif;
936
+ font-size: 20px;
937
+ font-weight: 500;
938
+ line-height: 30px;
939
+ letter-spacing: 0.05em;
940
+ text-align: left;
941
+ text-underline-position: from-font;
942
+ text-decoration-skip-ink: none;
943
+ color: #836848;
944
+ text-transform: uppercase;
945
+ }
946
+ #listing-page_header .country-filter.ant-select .ant-select-arrow {
947
+ inset-inline-end: 20px;
948
+ color: #836848;
949
+ }
950
+ #listing-page_body {
951
+ padding: 20px var(--side-padding);
952
+ }
953
+ #listing-page #legends {
954
+ --legend-size: 10px;
955
+ padding: 20px 0;
956
+ }
957
+ #listing-page #legends .ant-badge-status-dot {
958
+ width: var(--legend-size);
959
+ height: var(--legend-size);
960
+ }
961
+ #listing-page #legends .ant-badge-status-text {
962
+ font-family: Poppins, san-serif;
963
+ font-size: 12px;
964
+ font-weight: 400;
965
+ line-height: 18px;
966
+ letter-spacing: 0.05em;
967
+ text-align: center;
968
+ text-underline-position: from-font;
969
+ text-decoration-skip-ink: none;
970
+ }
971
+ #listing-page #tours .tour_image {
972
+ height: 100%;
973
+ }
974
+ #listing-page #tours .tour_image img {
975
+ width: 300px;
976
+ height: 100%;
977
+ border-top-left-radius: 20px;
978
+ border-bottom-left-radius: 20px;
979
+ }
980
+ #listing-page #tours .tour_details {
981
+ padding: 20px;
982
+ background-color: #FFFFFF;
983
+ height: 100%;
984
+ }
985
+ #listing-page #tours .tour_details .ant-space .ant-space-item:first-child {
986
+ position: relative;
987
+ }
988
+ #listing-page #tours .tour_details_title {
989
+ font-family: Poppins, san-serif;
990
+ font-size: 16px;
991
+ font-weight: 500;
992
+ line-height: 24px;
993
+ letter-spacing: 0.05em;
994
+ text-align: left;
995
+ text-underline-position: from-font;
996
+ text-decoration-skip-ink: none;
997
+ max-width: 95%;
998
+ }
999
+ #listing-page #tours .tour_details_subtitle {
1000
+ font-family: Poppins, san-serif;
1001
+ font-size: 15px;
1002
+ font-weight: 400;
1003
+ line-height: 24px;
1004
+ letter-spacing: 0.05em;
1005
+ text-align: left;
1006
+ text-underline-position: from-font;
1007
+ text-decoration-skip-ink: none;
1008
+ color: rgba(0, 0, 0, 0.4);
1009
+ }
1010
+ #listing-page #tours .tour_details_country {
1011
+ font-family: Poppins, san-serif;
1012
+ font-size: 15px;
1013
+ font-weight: 500;
1014
+ line-height: 22.5px;
1015
+ letter-spacing: 0.05em;
1016
+ text-align: left;
1017
+ text-underline-position: from-font;
1018
+ text-decoration-skip-ink: none;
1019
+ }
1020
+ #listing-page #tours .tour_details_code {
1021
+ color: #DCB062;
1022
+ }
1023
+ #listing-page #tours .tour_details_country svg, #listing-page #tours .tour_details_code svg {
1024
+ vertical-align: middle;
1025
+ }
1026
+ #listing-page #tours .tour_details_info {
1027
+ position: absolute;
1028
+ right: 0;
1029
+ top: 0;
1030
+ }
1031
+ #listing-page #tours .tour_details_info svg {
1032
+ color: #DCB062;
1033
+ cursor: pointer;
1034
+ }
1035
+ #listing-page #tours .tour_details_dates {
1036
+ padding: 12px 8px 17px 8px;
1037
+ }
1038
+ #listing-page #tours .tour_details_dates label {
1039
+ font-family: Poppins, san-serif;
1040
+ font-size: 14px;
1041
+ font-weight: 500;
1042
+ line-height: 21px;
1043
+ letter-spacing: 0.05em;
1044
+ text-align: left;
1045
+ text-underline-position: from-font;
1046
+ text-decoration-skip-ink: none;
1047
+ color: #434039;
1048
+ }
1049
+ #listing-page #tours .tour_pricing {
1050
+ background-color: #DCB062;
1051
+ padding: 20px;
1052
+ border-top-right-radius: 20px;
1053
+ border-bottom-right-radius: 20px;
1054
+ height: 100%;
1055
+ }
1056
+ #listing-page #tours .tour_pricing > .ant-space {
1057
+ height: 100%;
1058
+ width: 100%;
1059
+ justify-content: center;
1060
+ }
1061
+ #listing-page #tours .tour_pricing span {
1062
+ font-family: Poppins, san-serif;
1063
+ font-size: 15px;
1064
+ font-weight: 400;
1065
+ line-height: 22.5px;
1066
+ letter-spacing: 0.05em;
1067
+ text-align: center;
1068
+ text-underline-position: from-font;
1069
+ text-decoration-skip-ink: none;
1070
+ }
1071
+ #listing-page #tours .tour_pricing span.price {
1072
+ font-size: 28px;
1073
+ font-weight: 500;
1074
+ line-height: 42px;
1075
+ color: #FFFFFF;
1076
+ }
1077
+ #listing-page #tours .tour_pricing .select-tour {
1078
+ padding: 5px 27px 5px 27px;
1079
+ border-radius: 20px;
1080
+ font-family: Poppins, san-serif;
1081
+ font-size: 15px;
1082
+ font-weight: 700;
1083
+ line-height: 22.5px;
1084
+ letter-spacing: 0.05em;
1085
+ text-align: center;
1086
+ text-underline-position: from-font;
1087
+ text-decoration-skip-ink: none;
1088
+ color: #DCB062;
1089
+ background-color: #FFFFFF;
1090
+ }
1091
+
1092
+ .tour_details_description.ant-modal .ant-modal-title {
1093
+ font-family: Poppins, san-serif;
1094
+ font-size: 16px;
1095
+ font-weight: 700;
1096
+ line-height: 24px;
1097
+ letter-spacing: 0.05em;
1098
+ text-align: left;
1099
+ text-underline-position: from-font;
1100
+ text-decoration-skip-ink: none;
1101
+ color: #836848;
1102
+ }
1103
+ .tour_details_description.ant-modal .ant-modal-body {
1104
+ overflow-y: auto;
1105
+ max-height: 500px;
1106
+ }
1107
+
1108
+ .tour_details_all_dates.ant-modal .ant-modal-title {
1109
+ padding-right: 30px;
1110
+ }
1111
+ .tour_details_all_dates.ant-modal .custom-modal-header-title {
1112
+ font-family: Poppins, san-serif;
1113
+ font-size: 20px;
1114
+ font-weight: 500;
1115
+ line-height: 30px;
1116
+ letter-spacing: 0.05em;
1117
+ text-align: left;
1118
+ text-underline-position: from-font;
1119
+ text-decoration-skip-ink: none;
1120
+ color: #434039;
1121
+ }
1122
+ .tour_details_all_dates.ant-modal .custom-modal-header-legends {
1123
+ font-family: Poppins, san-serif;
1124
+ font-size: 12px;
1125
+ font-weight: 400;
1126
+ line-height: 18px;
1127
+ letter-spacing: 0.05em;
1128
+ text-align: center;
1129
+ text-underline-position: from-font;
1130
+ text-decoration-skip-ink: none;
1131
+ color: #545047;
1132
+ --legend-size: 10px;
1133
+ }
1134
+ .tour_details_all_dates.ant-modal .custom-modal-header-legends .ant-badge-status-dot {
1135
+ width: var(--legend-size);
1136
+ height: var(--legend-size);
1137
+ }
1138
+ .tour_details_all_dates.ant-modal .ant-modal-footer {
1139
+ text-align: center;
1140
+ }
1141
+ .tour_details_all_dates.ant-modal .ant-modal-footer button {
1142
+ padding: 5px 27px 5px 27px;
1143
+ border-radius: 32px;
1144
+ background: #AA853E;
1145
+ color: #FFFFFF;
1146
+ text-transform: uppercase;
1147
+ }
1148
+ .tour_details_all_dates.ant-modal .ant-modal-footer button:hover {
1149
+ color: #FFFFFF;
1150
+ background: #DCB062;
1151
+ border-color: #DCB062;
1152
+ outline: #DCB062;
1153
+ }
1154
+
1155
+ .country-filter_option {
1156
+ font-family: Poppins, san-serif;
1157
+ font-size: 20px;
1158
+ font-weight: 400;
1159
+ line-height: 30px;
1160
+ letter-spacing: 0.05em;
1161
+ text-align: left;
1162
+ text-underline-position: from-font;
1163
+ text-decoration-skip-ink: none;
1164
+ text-transform: uppercase;
1165
+ }
1166
+
1167
+ * {
1168
+ --side-padding: 10%;
1169
+ }
1170
+
1171
+ #show-page_header h1 {
1172
+ font-size: 30px;
1173
+ font-weight: 400;
1174
+ line-height: 45px;
1175
+ letter-spacing: 0.05em;
1176
+ text-align: left;
1177
+ }
1178
+ #show-page_header .tour_details {
1179
+ display: inline-flex;
1180
+ gap: 10px;
1181
+ opacity: 0.5;
1182
+ }
1183
+ #show-page_header .tour_details span {
1184
+ font-family: Poppins, san-serif;
1185
+ font-size: 16px;
1186
+ font-weight: 500;
1187
+ line-height: 24px;
1188
+ letter-spacing: 0.05em;
1189
+ text-align: left;
1190
+ text-underline-position: from-font;
1191
+ text-decoration-skip-ink: none;
1192
+ }
1193
+ #show-page #date-selector {
1194
+ padding: 20px var(--side-padding);
1195
+ }
1196
+ #show-page #date-selector [class~=ant-carousel] .slick-slide > div {
1197
+ padding: 0 5px;
1198
+ }
1199
+ #show-page #date-selector [class~=ant-carousel] .slick-arrow {
1200
+ color: rgb(149, 148, 146);
1201
+ }
1202
+ #show-page #date-selector [class~=ant-carousel] .slick-arrow:hover {
1203
+ color: #DCB062;
1204
+ }
1205
+ #show-page #date-selector [class~=ant-carousel] .slick-prev {
1206
+ inset-inline-start: -40px;
1207
+ }
1208
+ #show-page #date-selector [class~=ant-carousel] .slick-next {
1209
+ inset-inline-end: -40px;
1210
+ }
1211
+ #show-page #date-selector .date-box {
1212
+ background: #FFFFFF;
1213
+ border: 1px solid rgba(223, 177, 99, 0.2);
1214
+ padding: 6px 13px 6px 13px;
1215
+ border-radius: 20px;
1216
+ border-width: 1px;
1217
+ color: rgba(0, 0, 0, 0.8);
1218
+ cursor: pointer;
1219
+ text-align: center;
1220
+ }
1221
+ #show-page #date-selector .date-box_date {
1222
+ font-family: Poppins, san-serif;
1223
+ font-size: 15px;
1224
+ font-weight: 400;
1225
+ line-height: 22.5px;
1226
+ letter-spacing: 0.05em;
1227
+ text-align: center;
1228
+ text-underline-position: from-font;
1229
+ text-decoration-skip-ink: none;
1230
+ }
1231
+ #show-page #date-selector .date-box span {
1232
+ font-family: Poppins, san-serif;
1233
+ font-size: 12px;
1234
+ font-weight: 400;
1235
+ line-height: 18px;
1236
+ letter-spacing: 0.05em;
1237
+ text-align: center;
1238
+ text-underline-position: from-font;
1239
+ text-decoration-skip-ink: none;
1240
+ opacity: 50%;
1241
+ }
1242
+ #show-page #date-selector .date-box_price {
1243
+ font-family: Poppins, san-serif;
1244
+ font-size: 14px;
1245
+ font-weight: 400;
1246
+ line-height: 21px;
1247
+ letter-spacing: 0.05em;
1248
+ text-align: center;
1249
+ text-underline-position: from-font;
1250
+ text-decoration-skip-ink: none;
1251
+ }
1252
+ #show-page #date-selector .date-box.selected {
1253
+ background-color: #DCB062;
1254
+ color: rgb(249, 246, 243);
1255
+ }
1256
+ #show-page #date-selector .date-box.selected .date-box_date, #show-page #date-selector .date-box.selected .date-box_price {
1257
+ font-weight: 700;
1258
+ }
1259
+ #show-page_body {
1260
+ padding: 20px var(--side-padding);
1261
+ gap: 20px;
1262
+ }
1263
+ #show-page_body .details-container {
1264
+ padding: 20px;
1265
+ gap: 20px;
1266
+ border-radius: 20px;
1267
+ background: #FFFFFF;
1268
+ display: flex;
1269
+ flex-direction: column;
1270
+ box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
1271
+ }
1272
+ #show-page_body .details-container_header {
1273
+ font-family: Poppins, san-serif;
1274
+ font-size: 16px;
1275
+ font-weight: 700;
1276
+ line-height: 24px;
1277
+ letter-spacing: 0.05em;
1278
+ text-align: left;
1279
+ text-underline-position: from-font;
1280
+ text-decoration-skip-ink: none;
1281
+ color: #5B4713;
1282
+ }
1283
+ #show-page_body .details-container_content #things-to-know {
1284
+ padding: 20px;
1285
+ border-radius: 5px;
1286
+ background: #F9F6F3;
1287
+ display: grid;
1288
+ grid-template-columns: repeat(5, 18%);
1289
+ justify-content: center;
1290
+ text-align: center;
1291
+ gap: 20px;
1292
+ }
1293
+ #show-page_body .details-container_content #things-to-know .item {
1294
+ color: #5B4713;
1295
+ }
1296
+ #show-page_body .details-container_content #things-to-know .item .icon {
1297
+ opacity: 0.8;
1298
+ }
1299
+ #show-page_body .details-container_content #things-to-know .item label {
1300
+ font-family: Poppins, san-serif;
1301
+ font-size: 12px;
1302
+ font-weight: 400;
1303
+ line-height: 18px;
1304
+ letter-spacing: 0.05em;
1305
+ text-align: center;
1306
+ text-underline-position: from-font;
1307
+ text-decoration-skip-ink: none;
1308
+ }
1309
+ #show-page_body .details-container_content #things-to-know .item.guaranteed {
1310
+ color: #DCB062;
1311
+ }
1312
+ #show-page_body .details-container_content .schedule {
1313
+ padding: 20px;
1314
+ gap: 32px;
1315
+ border-radius: 5px;
1316
+ background: #F9F6F3;
1317
+ display: inline-flex;
1318
+ align-items: center;
1319
+ justify-content: space-between;
1320
+ }
1321
+ #show-page_body .details-container_content .schedule .flight-date svg {
1322
+ vertical-align: middle;
1323
+ margin-right: 12px;
1324
+ }
1325
+ #show-page_body .details-container_content .schedule .flight-date span {
1326
+ color: rgba(91, 71, 19, 0.7);
1327
+ font-family: Poppins, san-serif;
1328
+ font-size: 12px;
1329
+ font-weight: 400;
1330
+ line-height: 18px;
1331
+ letter-spacing: 0.05em;
1332
+ text-align: left;
1333
+ text-underline-position: from-font;
1334
+ text-decoration-skip-ink: none;
1335
+ }
1336
+ #show-page_body .details-container_content .schedule .flight-details {
1337
+ display: flex;
1338
+ flex-direction: column;
1339
+ gap: 11px;
1340
+ }
1341
+ #show-page_body .details-container_content .schedule .flight-details label {
1342
+ font-family: Poppins, san-serif;
1343
+ font-size: 12px;
1344
+ font-weight: 700;
1345
+ line-height: 18px;
1346
+ letter-spacing: 0.05em;
1347
+ text-align: left;
1348
+ text-underline-position: from-font;
1349
+ text-decoration-skip-ink: none;
1350
+ color: rgba(0, 0, 0, 0.8);
1351
+ }
1352
+ #show-page_body .details-container_content .schedule .flight-details img {
1353
+ width: 14px;
1354
+ height: 14px;
1355
+ vertical-align: middle;
1356
+ margin-right: 5px;
1357
+ }
1358
+ #show-page_body .details-container_content .schedule .flight-details span {
1359
+ font-family: Poppins, san-serif;
1360
+ font-size: 12px;
1361
+ font-weight: 400;
1362
+ line-height: 18px;
1363
+ letter-spacing: 0.05em;
1364
+ text-align: left;
1365
+ text-underline-position: from-font;
1366
+ text-decoration-skip-ink: none;
1367
+ color: rgba(0, 0, 0, 0.8);
1368
+ }
1369
+ #show-page_body .details-container_content .schedule .flight-time .from, #show-page_body .details-container_content .schedule .flight-time .to {
1370
+ display: flex;
1371
+ flex-direction: column;
1372
+ gap: 8px;
1373
+ }
1374
+ #show-page_body .details-container_content .schedule .flight-time .from {
1375
+ align-items: flex-end;
1376
+ }
1377
+ #show-page_body .details-container_content .schedule .flight-time .to {
1378
+ align-items: flex-start;
1379
+ }
1380
+ #show-page_body .details-container_content .schedule .flight-time label {
1381
+ font-family: Poppins, san-serif;
1382
+ font-size: 15px;
1383
+ font-weight: 700;
1384
+ line-height: 22.5px;
1385
+ letter-spacing: 0.05em;
1386
+ text-align: center;
1387
+ text-underline-position: from-font;
1388
+ text-decoration-skip-ink: none;
1389
+ color: rgb(0, 0, 0);
1390
+ }
1391
+ #show-page_body .details-container_content .schedule .flight-time span {
1392
+ font-family: Poppins, san-serif;
1393
+ font-size: 12px;
1394
+ font-weight: 300;
1395
+ line-height: 18px;
1396
+ text-align: center;
1397
+ text-underline-position: from-font;
1398
+ text-decoration-skip-ink: none;
1399
+ color: rgba(91, 71, 19, 0.7);
1400
+ }
1401
+ #show-page_body .details-container_content .schedule .flight-time_icon::before, #show-page_body .details-container_content .schedule .flight-time_icon::after {
1402
+ /* Styles kept */
1403
+ width: 25%;
1404
+ height: 1px;
1405
+ /* Changed to border-top (instead of border) to simulate a line better */
1406
+ border-top: 1px solid #ccc;
1407
+ /* Styles added */
1408
+ display: inline-block;
1409
+ content: "";
1410
+ /* Use padding to vertical align the line */
1411
+ /* Use padding in em for a responsive icon height */
1412
+ padding-top: 0.5em;
1413
+ /* Use margins to give the lines some spacement around the icon */
1414
+ /* Use margins in % for a responsive spacement */
1415
+ margin-left: 5%;
1416
+ margin-right: 5%;
1417
+ }
1418
+ #show-page_body .details-container_content #pricing-table {
1419
+ width: 100%;
1420
+ border-spacing: 5px 0;
1421
+ }
1422
+ #show-page_body .details-container_content #pricing-table .super-promo {
1423
+ background: rgb(249, 226, 152);
1424
+ }
1425
+ #show-page_body .details-container_content #pricing-table .promo {
1426
+ background: rgb(249, 246, 243);
1427
+ }
1428
+ #show-page_body .details-container_content #pricing-table .normal {
1429
+ background: rgb(245, 245, 245);
1430
+ }
1431
+ #show-page_body .details-container_content #pricing-table th {
1432
+ border-top-left-radius: 10px;
1433
+ border-top-right-radius: 10px;
1434
+ font-family: Poppins, san-serif;
1435
+ font-size: 14px;
1436
+ font-weight: 700;
1437
+ line-height: 21px;
1438
+ letter-spacing: 0.05em;
1439
+ text-align: center;
1440
+ text-underline-position: from-font;
1441
+ text-decoration-skip-ink: none;
1442
+ color: rgb(131, 104, 72);
1443
+ padding: 10px 15px;
1444
+ }
1445
+ #show-page_body .details-container_content #pricing-table td {
1446
+ font-family: Poppins, san-serif;
1447
+ font-size: 14px;
1448
+ font-weight: 500;
1449
+ line-height: 21px;
1450
+ letter-spacing: 0.05em;
1451
+ text-align: center;
1452
+ text-underline-position: from-font;
1453
+ text-decoration-skip-ink: none;
1454
+ color: rgb(84, 80, 71);
1455
+ padding: 15px;
1456
+ white-space: nowrap;
1457
+ }
1458
+ #show-page_body .details-container_content #pricing-table td:first-child {
1459
+ text-align: left;
1460
+ font-weight: 400;
1461
+ }
1462
+ #show-page_body .details-container_content #pricing-table tr:last-child td {
1463
+ border-bottom-left-radius: 10px;
1464
+ border-bottom-right-radius: 10px;
1465
+ }
1466
+ #show-page_body .contact-agent {
1467
+ height: auto;
1468
+ border-radius: 20px;
1469
+ background: #FFFFFF;
1470
+ }
1471
+ #show-page_body .contact-agent_header {
1472
+ background-color: #F9E298;
1473
+ font-family: Poppins, san-serif;
1474
+ font-size: 15px;
1475
+ font-weight: 400;
1476
+ line-height: 22.5px;
1477
+ letter-spacing: 0.05em;
1478
+ text-align: left;
1479
+ text-underline-position: from-font;
1480
+ text-decoration-skip-ink: none;
1481
+ color: #545047;
1482
+ padding: 11px 15px 11px 15px;
1483
+ border-radius: inherit;
1484
+ border-bottom-left-radius: 0;
1485
+ border-bottom-right-radius: 0;
1486
+ }
1487
+ #show-page_body .contact-agent_content {
1488
+ padding: 10px 15px 15px 15px;
1489
+ }
1490
+ #show-page_body .contact-agent_content .ant-form-item {
1491
+ margin-bottom: 15px;
1492
+ }
1493
+ #show-page_body .contact-agent_content .ant-form-item:last-child {
1494
+ margin-bottom: 0;
1495
+ }
1496
+ #show-page_body .contact-agent_content .search-results {
1497
+ margin-top: 10px;
1498
+ }
1499
+ #show-page_body .contact-agent_content .search-results .agent-info .company {
1500
+ font-family: Poppins, san-serif;
1501
+ font-size: 10px;
1502
+ font-weight: 600;
1503
+ line-height: 15px;
1504
+ text-align: left;
1505
+ text-underline-position: from-font;
1506
+ text-decoration-skip-ink: none;
1507
+ min-height: 20px;
1508
+ color: rgba(0, 0, 0, 0.8);
1509
+ max-width: 180px;
1510
+ cursor: pointer;
1511
+ }
1512
+ #show-page_body .contact-agent_content .search-results .agent-info .contact-numbers {
1513
+ display: inline-flex;
1514
+ gap: 2px;
1515
+ }
1516
+
1517
+ .agent-full-contact-details .contact-details {
1518
+ padding: 15px 10px 15px 10px;
1519
+ background: rgb(245, 245, 245);
1520
+ }
1521
+ .agent-full-contact-details .contact-details svg {
1522
+ color: rgb(170, 133, 62);
1523
+ background: rgb(255, 255, 255);
1524
+ height: Fixed 25px px;
1525
+ padding: 3.75px;
1526
+ border-radius: 62.5px;
1527
+ margin-right: 6px;
1528
+ vertical-align: middle;
1529
+ }
1530
+ .agent-full-contact-details .contact-details span {
1531
+ font-family: Poppins, san-serif;
1532
+ font-size: 14px;
1533
+ font-weight: 400;
1534
+ line-height: 21px;
1535
+ letter-spacing: 0.03em;
1536
+ text-align: left;
1537
+ text-underline-position: from-font;
1538
+ text-decoration-skip-ink: none;
1539
+ }
1540
+
1541
+ #about-signature-tours {
1542
+ height: 100%;
1543
+ gap: 0px;
1544
+ opacity: 0px;
1545
+ display: flex;
1546
+ flex-direction: column;
1547
+ align-items: center;
1548
+ padding: 50px 0;
1549
+ }
1550
+ #about-signature-tours > div {
1551
+ max-width: 970px;
1552
+ }
1553
+ #about-signature-tours h1 {
1554
+ font-family: Poppins, san-serif;
1555
+ font-size: 45px;
1556
+ font-weight: 200;
1557
+ line-height: 67.5px;
1558
+ letter-spacing: 0.06em;
1559
+ text-align: center;
1560
+ text-underline-position: from-font;
1561
+ text-decoration-skip-ink: none;
1562
+ color: #545047;
1563
+ }
1564
+ #about-signature-tours p {
1565
+ font-family: Poppins, san-serif;
1566
+ font-size: 18px;
1567
+ font-weight: 200;
1568
+ line-height: 27px;
1569
+ letter-spacing: 0.05em;
1570
+ text-align: left;
1571
+ text-underline-position: from-font;
1572
+ text-decoration-skip-ink: none;
1573
+ color: #545047;
1574
+ margin: 20px 0;
1575
+ display: block;
1576
+ }
1577
+ #about-signature-tours #about-st-feature {
1578
+ display: flex;
1579
+ align-items: center;
1580
+ justify-content: space-between;
1581
+ }
1582
+ #about-signature-tours #about-st-feature #feature {
1583
+ width: 419px;
1584
+ height: 246px;
1585
+ gap: 0px;
1586
+ border-radius: 20px;
1587
+ opacity: 0px;
1588
+ background: #FFFFFF;
1589
+ box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
1590
+ }
1591
+ #about-signature-tours #about-st-feature #feature > img {
1592
+ width: 419px;
1593
+ height: 183.24px;
1594
+ gap: 0px;
1595
+ border-radius: 20px;
1596
+ opacity: 0px;
1597
+ border: 3px solid #FFFFFF;
1598
+ object-fit: cover;
1599
+ object-position: 50% 33%;
1600
+ display: block;
1601
+ box-sizing: border-box;
1602
+ }
1603
+ #about-signature-tours #about-st-feature #feature #st-brand {
1604
+ display: flex;
1605
+ justify-content: space-between;
1606
+ align-items: center;
1607
+ padding: 5px 23px 0px 12px;
1608
+ }
1609
+ #about-signature-tours #about-st-feature #feature #st-brand span {
1610
+ font-family: Poppins, san-serif;
1611
+ font-size: 20px;
1612
+ font-weight: 400;
1613
+ line-height: 30px;
1614
+ letter-spacing: 0.05em;
1615
+ text-align: left;
1616
+ text-underline-position: from-font;
1617
+ text-decoration-skip-ink: none;
1618
+ }
1619
+ #about-signature-tours #about-st-feature #feature #st-brand #st-logo {
1620
+ width: 47px;
1621
+ height: 43.76px;
1622
+ gap: 0px;
1623
+ opacity: 0px;
1624
+ }
1625
+
1626
+ #about-us-page_body {
1627
+ padding: 20px var(--side-padding);
1628
+ }
1629
+ #about-us-page_body #introduction img {
1630
+ width: 42.96px;
1631
+ height: 40px;
1632
+ }
1633
+ #about-us-page_body #introduction h1 {
1634
+ font-family: Poppins, san-serif;
1635
+ font-size: 24px;
1636
+ font-weight: 500;
1637
+ line-height: 36px;
1638
+ text-align: left;
1639
+ text-underline-position: from-font;
1640
+ text-decoration-skip-ink: none;
1641
+ }
1642
+ #about-us-page_body #article {
1643
+ background: #FFFFFF;
1644
+ padding: 32px;
1645
+ border-radius: 20px;
1646
+ box-shadow: 0px 5px 20px 0px rgba(225, 182, 91, 0.2);
1647
+ }
1648
+ #about-us-page_body #article img {
1649
+ height: 644px;
1650
+ border-radius: 20px;
1651
+ width: 100%;
1652
+ object-fit: cover;
1653
+ }
1654
+ #about-us-page_body #article p {
1655
+ font-family: Poppins, san-serif;
1656
+ font-size: 14px;
1657
+ font-weight: 300;
1658
+ line-height: 27px;
1659
+ text-align: left;
1660
+ text-underline-position: from-font;
1661
+ text-decoration-skip-ink: none;
1662
+ color: #000000;
1663
+ }
1664
+ #about-us-page .section-header {
1665
+ width: 741px;
1666
+ margin: auto;
1667
+ }
1668
+ #about-us-page .section-header h2 {
1669
+ font-family: Poppins, san-serif;
1670
+ font-size: 24px;
1671
+ font-weight: 500;
1672
+ line-height: 36px;
1673
+ text-align: center;
1674
+ text-underline-position: from-font;
1675
+ text-decoration-skip-ink: none;
1676
+ color: #000000;
1677
+ }
1678
+ #about-us-page .section-header p {
1679
+ font-family: Poppins, san-serif;
1680
+ font-size: 14px;
1681
+ font-weight: 300;
1682
+ line-height: 27px;
1683
+ text-align: center;
1684
+ text-underline-position: from-font;
1685
+ text-decoration-skip-ink: none;
1686
+ color: #000000;
1687
+ }
1688
+ #about-us-page .items {
1689
+ display: flex;
1690
+ flex-direction: column;
1691
+ align-items: center;
1692
+ gap: 12px;
1693
+ color: #000000;
1694
+ padding: 24px;
1695
+ }
1696
+ #about-us-page .items label {
1697
+ font-family: Poppins, san-serif;
1698
+ font-size: 16px;
1699
+ font-weight: 500;
1700
+ line-height: 24px;
1701
+ text-align: center;
1702
+ text-underline-position: from-font;
1703
+ text-decoration-skip-ink: none;
1704
+ }
1705
+ #about-us-page .items p {
1706
+ font-family: Poppins, san-serif;
1707
+ font-size: 14px;
1708
+ font-weight: 300;
1709
+ line-height: 27px;
1710
+ text-align: center;
1711
+ text-underline-position: from-font;
1712
+ text-decoration-skip-ink: none;
1713
+ }
1714
+ #about-us-page #quality-policy {
1715
+ padding: 0 170px 16px 170px;
1716
+ margin-top: -70px;
1717
+ }
1718
+ #about-us-page #certificates {
1719
+ background: linear-gradient(180deg, #F7F4EB 0%, #FFFFFF 100%);
1720
+ padding: 40px 160px 40px 160px;
1721
+ }
1722
+ #about-us-page #certificates img {
1723
+ width: 263px;
1724
+ height: 365px;
1725
+ box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1019607843);
1726
+ }
1727
+
1728
+ #countries-page_body {
1729
+ padding: 20px var(--side-padding);
1730
+ }
1731
+ #countries-page_body #introduction {
1732
+ padding: 32px;
1733
+ border-radius: 20px;
1734
+ background: #FFFFFF;
1735
+ }
1736
+ #countries-page_body #introduction_header {
1737
+ text-align: center;
1738
+ display: inline-flex;
1739
+ justify-content: center;
1740
+ align-items: center;
1741
+ gap: 24px;
1742
+ }
1743
+ #countries-page_body #introduction_header img {
1744
+ width: 42.96px;
1745
+ height: 40px;
1746
+ }
1747
+ #countries-page_body #introduction_header span {
1748
+ font-family: Poppins, san-serif;
1749
+ font-size: 24px;
1750
+ font-weight: 500;
1751
+ line-height: 36px;
1752
+ text-align: left;
1753
+ text-underline-position: from-font;
1754
+ text-decoration-skip-ink: none;
1755
+ color: #000000;
1756
+ }
1757
+ #countries-page_body #introduction_body p {
1758
+ font-family: Poppins, san-serif;
1759
+ font-size: 14px;
1760
+ font-weight: 300;
1761
+ line-height: 27px;
1762
+ text-align: left;
1763
+ text-underline-position: from-font;
1764
+ text-decoration-skip-ink: none;
1765
+ }
1766
+ #countries-page_body h2 {
1767
+ font-family: Poppins, san-serif;
1768
+ font-size: 30px;
1769
+ font-weight: 600;
1770
+ line-height: 45px;
1771
+ letter-spacing: 0.05em;
1772
+ text-align: left;
1773
+ text-underline-position: from-font;
1774
+ text-decoration-skip-ink: none;
1775
+ }
1776
+
1777
+ #contact-us-page_body {
1778
+ margin: 20px var(--side-padding);
1779
+ border-radius: 20px;
1780
+ box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
1781
+ background-color: #FFFFFF;
1782
+ }
1783
+ #contact-us-page_body img {
1784
+ height: 250px;
1785
+ width: 100%;
1786
+ object-fit: cover;
1787
+ border-top-left-radius: 20px;
1788
+ border-top-right-radius: 20px;
1789
+ }
1790
+ #contact-us-page_body #contact-us-form {
1791
+ padding: 20px 24px 40px 24px;
1792
+ }
1793
+ #contact-us-page_body #contact-us-form_header {
1794
+ margin-bottom: 20px;
1795
+ }
1796
+ #contact-us-page_body #contact-us-form_header h2 {
1797
+ font-family: Poppins, san-serif;
1798
+ font-size: 16px;
1799
+ font-weight: 700;
1800
+ line-height: 24px;
1801
+ letter-spacing: 0.05em;
1802
+ text-align: left;
1803
+ text-underline-position: from-font;
1804
+ text-decoration-skip-ink: none;
1805
+ color: rgb(91, 71, 19);
1806
+ margin: 0;
1807
+ }
1808
+ #contact-us-page_body #contact-us-form_header span {
1809
+ font-family: Poppins, san-serif;
1810
+ font-size: 14px;
1811
+ font-weight: 300;
1812
+ line-height: 21px;
1813
+ letter-spacing: 0.05em;
1814
+ text-align: left;
1815
+ text-underline-position: from-font;
1816
+ text-decoration-skip-ink: none;
1817
+ color: rgb(0, 0, 0);
1818
+ }
1819
+ #contact-us-page_body #contact-us-form textarea {
1820
+ min-height: 200px;
1821
+ }
1822
+ #contact-us-page_body #contact-us-form button[type=submit] {
1823
+ width: 216px;
1824
+ }
1825
+ #contact-us-page_footer {
1826
+ margin: 20px var(--side-padding);
1827
+ border-radius: 20px;
1828
+ box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
1829
+ background-color: #FFFFFF;
1830
+ padding: 40px 24px 40px 24px;
1831
+ }
1832
+ #contact-us-page_footer label {
1833
+ font-family: Poppins, san-serif;
1834
+ font-size: 16px;
1835
+ font-weight: 700;
1836
+ line-height: 24px;
1837
+ letter-spacing: 0.05em;
1838
+ text-align: left;
1839
+ text-underline-position: from-font;
1840
+ text-decoration-skip-ink: none;
1841
+ color: rgb(91, 71, 19);
1842
+ display: block;
1843
+ margin-bottom: 10px;
1844
+ }
1845
+ #contact-us-page_footer span {
1846
+ font-family: Poppins, san-serif;
1847
+ font-size: 14px;
1848
+ font-weight: 300;
1849
+ line-height: 21px;
1850
+ letter-spacing: 0.05em;
1851
+ text-align: left;
1852
+ text-underline-position: from-font;
1853
+ text-decoration-skip-ink: none;
1854
+ color: rgb(0, 0, 0);
1855
+ }
1856
+ #contact-us-page_footer svg {
1857
+ color: #DCB062;
1858
+ }
1859
+
1860
+ #blog-page_body {
1861
+ margin: 20px var(--side-padding);
1862
+ }
1863
+ #blog-page_body #blogs {
1864
+ margin: 30px 0;
1865
+ }
1866
+
1867
+ #blog-show-page_body {
1868
+ margin: 20px var(--side-padding);
1869
+ padding: 32px;
1870
+ border-radius: 20px;
1871
+ background: rgb(255, 255, 255);
1872
+ box-shadow: 0px 5px 20px 0px rgba(225, 182, 91, 0.2);
1873
+ }