iceholidays-frontend 0.1.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 (65) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +28 -0
  4. data/Rakefile +8 -0
  5. data/app/assets/builds/iceholidays/frontend/application.js +40819 -0
  6. data/app/assets/builds/iceholidays/frontend/application.js.map +7 -0
  7. data/app/assets/builds/iceholidays/frontend/banner01-MY5H645U.digested.png +0 -0
  8. data/app/assets/builds/iceholidays/frontend/banner02-2GQQYFI3.digested.png +0 -0
  9. data/app/assets/builds/iceholidays/frontend/banner2-BWOLYVUE.digested.png +0 -0
  10. data/app/assets/config/iceholidays_frontend_manifest.js +0 -0
  11. data/app/assets/images/iceholidays/frontend/5star.png +0 -0
  12. data/app/assets/images/iceholidays/frontend/Frame71.png +0 -0
  13. data/app/assets/images/iceholidays/frontend/Group_71.png +0 -0
  14. data/app/assets/images/iceholidays/frontend/Layer_1.png +0 -0
  15. data/app/assets/images/iceholidays/frontend/Rectangle49.png +0 -0
  16. data/app/assets/images/iceholidays/frontend/TS_Logo.png +0 -0
  17. data/app/assets/images/iceholidays/frontend/about_st_bg.png +0 -0
  18. data/app/assets/images/iceholidays/frontend/africa.png +0 -0
  19. data/app/assets/images/iceholidays/frontend/banner1.png +0 -0
  20. data/app/assets/images/iceholidays/frontend/banner2.png +0 -0
  21. data/app/assets/images/iceholidays/frontend/china.jpeg +0 -0
  22. data/app/assets/images/iceholidays/frontend/china2.png +0 -0
  23. data/app/assets/images/iceholidays/frontend/chongqing.png +0 -0
  24. data/app/assets/images/iceholidays/frontend/cover_img.jpeg +0 -0
  25. data/app/assets/images/iceholidays/frontend/feature.jpeg +0 -0
  26. data/app/assets/images/iceholidays/frontend/guangzhou.png +0 -0
  27. data/app/assets/images/iceholidays/frontend/guilin.png +0 -0
  28. data/app/assets/images/iceholidays/frontend/harbin.png +0 -0
  29. data/app/assets/images/iceholidays/frontend/hongkong.png +0 -0
  30. data/app/assets/images/iceholidays/frontend/inner_mongolia.png +0 -0
  31. data/app/assets/images/iceholidays/frontend/jiangxi.png +0 -0
  32. data/app/assets/images/iceholidays/frontend/kenya.png +0 -0
  33. data/app/assets/images/iceholidays/frontend/kenya2.png +0 -0
  34. data/app/assets/images/iceholidays/frontend/kunming.png +0 -0
  35. data/app/assets/images/iceholidays/frontend/logo_container.png +0 -0
  36. data/app/assets/images/iceholidays/frontend/logomark.png +0 -0
  37. data/app/assets/images/iceholidays/frontend/slikroad.png +0 -0
  38. data/app/assets/images/iceholidays/frontend/southafrica.png +0 -0
  39. data/app/assets/images/iceholidays/frontend/tanzania.png +0 -0
  40. data/app/assets/images/iceholidays/frontend/uganda.png +0 -0
  41. data/app/assets/stylesheets/iceholidays/frontend/application.scss +790 -0
  42. data/app/controllers/iceholidays/frontend/application_controller.rb +6 -0
  43. data/app/controllers/iceholidays/frontend/site_controller.rb +8 -0
  44. data/app/helpers/iceholidays/frontend/application_helper.rb +9 -0
  45. data/app/javascript/application.js +5 -0
  46. data/app/javascript/react/application.js +72 -0
  47. data/app/javascript/react/components/Destinations.tsx +182 -0
  48. data/app/javascript/react/components/Homepage.tsx +16 -0
  49. data/app/javascript/react/components/HomepageBanner.tsx +35 -0
  50. data/app/javascript/react/components/Testimonials.tsx +66 -0
  51. data/app/javascript/react/index.js +8 -0
  52. data/app/jobs/iceholidays/frontend/application_job.rb +6 -0
  53. data/app/mailers/iceholidays/frontend/application_mailer.rb +8 -0
  54. data/app/models/iceholidays/frontend/application_record.rb +7 -0
  55. data/app/views/iceholidays/frontend/site/index.html.erb +24 -0
  56. data/app/views/layouts/iceholidays/frontend/application.html.erb +24 -0
  57. data/app/views/layouts/iceholidays/frontend/shared/_footer.html.erb +42 -0
  58. data/app/views/layouts/iceholidays/frontend/shared/_header.html.erb +20 -0
  59. data/config/routes.rb +3 -0
  60. data/lib/iceholidays/frontend/engine.rb +14 -0
  61. data/lib/iceholidays/frontend/react_component.rb +21 -0
  62. data/lib/iceholidays/frontend/version.rb +5 -0
  63. data/lib/iceholidays/frontend.rb +8 -0
  64. data/lib/tasks/iceholidays/frontend_tasks.rake +4 -0
  65. metadata +164 -0
@@ -0,0 +1,790 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
+ * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
+ * files in this directory. Styles in this file should be added after the last require_* statement.
11
+ * It is generally better to create a new file per style scope.
12
+ *
13
+ *= require_tree .
14
+ *= require_self
15
+ */
16
+
17
+ @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,200;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
18
+
19
+ .ant-tabs >.ant-tabs-nav{
20
+ margin: 0;
21
+ }
22
+
23
+ .ant-tabs-nav {
24
+ width: 100% !important;
25
+ }
26
+
27
+ .ant-tabs-card.ant-tabs-top >.ant-tabs-nav {
28
+ .ant-tabs-tab {
29
+ display: block; // centers text inside tabs
30
+ flex: 1;
31
+ text-align: center;
32
+ justify-content: center;
33
+ background: #FAFAFA;
34
+ border-color: #EBEBEB;
35
+ border-bottom-color: #DCB062;
36
+
37
+ &+.ant-tabs-tab{
38
+ margin:0;
39
+ }
40
+
41
+ .ant-tabs-tab-btn {
42
+ text-transform: uppercase;
43
+ font-family: Poppins;
44
+ font-size: 20px;
45
+ font-weight: 400;
46
+ line-height: 30px;
47
+ letter-spacing: 0.05em;
48
+ text-align: center;
49
+ text-underline-position: from-font;
50
+ text-decoration-skip-ink: none;
51
+ color: #DCB062;
52
+ }
53
+
54
+ &.ant-tabs-tab-active{
55
+ background: linear-gradient(360deg, #F9E298 -1.58%, #DCB062 92.51%);
56
+ z-index: 1;
57
+ border-bottom-color: #DCB062;
58
+ .ant-tabs-tab-btn {
59
+ color: white !important;
60
+ }
61
+ }
62
+ }
63
+ }
64
+
65
+ .ant-tabs-nav > div:nth-of-type(1) {
66
+ display: unset !important;
67
+ width: 100% !important;
68
+ }
69
+
70
+
71
+ [class~='ant-carousel'] {
72
+ [class~='slick-dots'] {
73
+ bottom: 30px;
74
+
75
+ li {
76
+ width: 15px !important;
77
+
78
+ button{
79
+ width: 13px;
80
+ height: 13px;
81
+ border-radius: 100%;
82
+ background-color: transparent;
83
+ border: 1px solid #FFFFFF;
84
+ opacity: 1;
85
+ }
86
+
87
+ &.slick-active {
88
+ button {
89
+ width: 13px;
90
+ height: 13px;
91
+ border-radius: 100%;
92
+ background-color: white;
93
+ }
94
+ }
95
+ }
96
+ }
97
+
98
+ }
99
+
100
+ body{
101
+ margin: 0;
102
+ background: #F2F2F2;
103
+ }
104
+
105
+ #header{
106
+ position: relative;
107
+ background: linear-gradient(241.37deg, #D1AC6E -108.33%, #D1AC6E -14.72%, #F9E298 -2.73%, #B68B31 108.18%);
108
+ width: 100%;
109
+ height: 50px;
110
+ display: flex;
111
+ align-items: center;
112
+ justify-content: space-around;
113
+ }
114
+
115
+ #header>div{
116
+ display: flex;
117
+ align-items: center;
118
+ justify-content: space-around;
119
+ }
120
+
121
+ .nav-menu{
122
+ /* position: absolute; */
123
+ display: grid;
124
+ grid-template-columns: auto auto auto auto;
125
+ }
126
+
127
+ .nav-menu a{
128
+ color: white;
129
+ text-transform: uppercase;
130
+ }
131
+
132
+ #left-menu{
133
+ top: 13px;
134
+ left: 183px;
135
+ gap: 35px;
136
+ opacity: 0px;
137
+ }
138
+
139
+ .logo{
140
+ width: 304px;
141
+ height: 66px;
142
+ left: 568px;
143
+ gap: 0px;
144
+ opacity: 0px;
145
+ z-index: 1;
146
+ }
147
+
148
+ #right-menu{
149
+ top: 13px;
150
+ left: 877px;
151
+ gap: 35px;
152
+ opacity: 0px;
153
+ }
154
+
155
+ #get-brochure{
156
+ position: absolute;
157
+ width: 152px;
158
+ /* height: 35px; */
159
+ top: 4px;
160
+ left: 1247px;
161
+ padding: 7px 8px 7px 8px;
162
+ gap: 7px;
163
+ border-radius: 20px;
164
+ border: 1px 0px 0px 0px;
165
+ opacity: 0px;
166
+ background: linear-gradient(287.63deg, #D1AC6E -19.9%, #D1AC6E 10.87%, #F9E298 26.63%, #B68B31 93.91%);
167
+ border: 1px solid;
168
+ border-image-source: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(42, 42, 42, 0.5) 100%);
169
+ box-shadow: 0px 3px 10px 0px #AA853E80;
170
+ box-shadow: 0px 4px 4px 0px #F9F6F31A inset;
171
+ text-align: center;
172
+ text-transform: uppercase;
173
+ }
174
+
175
+ #get-brochure span{
176
+ font-family: Poppins;
177
+ font-size: 14px;
178
+ font-weight: 500;
179
+ line-height: 21px;
180
+ letter-spacing: 0.05em;
181
+ text-align: left;
182
+ text-underline-position: from-font;
183
+ text-decoration-skip-ink: none;
184
+ }
185
+
186
+ #search-bar{
187
+ width: 738px;
188
+ height: 84px;
189
+ top: 50px;
190
+ left: 349px;
191
+ gap: 0px;
192
+ opacity: 0px;
193
+ position: absolute;
194
+ display: flex;
195
+ justify-content: center;
196
+ }
197
+
198
+ #search-bar-widget{
199
+ width: 427px;
200
+ /* height: 84px; */
201
+ padding: 25px 0px 15px 0px;
202
+ gap: 7px;
203
+ opacity: 0px;
204
+ background: #F7F4EB;
205
+ }
206
+
207
+ .flip{
208
+ -webkit-transform: scaleX(-1);
209
+ transform: scaleX(-1);
210
+ }
211
+
212
+ #cover{
213
+ width: 1440px;
214
+ height: 760px;
215
+ gap: 0px;
216
+ border-radius: 0px 0px 50px 50px;
217
+ opacity: 0px;
218
+ /* position: relative; */
219
+
220
+ }
221
+
222
+ #tagline{
223
+ width: 989.63px;
224
+ height: 108.42px;
225
+ top: 304px;
226
+ left: 223.69px;
227
+ gap: 0px;
228
+ opacity: 0px;
229
+ position: absolute;
230
+ text-align: center;
231
+ }
232
+
233
+ #tagline span{
234
+ font-family: Poppins;
235
+ font-size: 45px;
236
+ font-weight: 600;
237
+ line-height: 69px;
238
+ letter-spacing: 0.01em;
239
+ text-align: center;
240
+ text-underline-position: from-font;
241
+ text-decoration-skip-ink: none;
242
+ color: #FFFFFF;
243
+ text-transform: uppercase;
244
+
245
+ }
246
+
247
+ #popular-destinations{
248
+ margin: auto;
249
+ width: 80%;
250
+ }
251
+
252
+ #popular-destinations h1{
253
+ font-family: Poppins;
254
+ font-size: 45px;
255
+ font-weight: 200;
256
+ line-height: 67.5px;
257
+ text-align: center;
258
+ text-underline-position: from-font;
259
+ text-decoration-skip-ink: none;
260
+ text-transform: uppercase;
261
+ color: #545047;
262
+ }
263
+
264
+
265
+ .top-cities h2{
266
+ font-family: Poppins;
267
+ font-size: 30px;
268
+ font-weight: 600;
269
+ line-height: 45px;
270
+ letter-spacing: 0.05em;
271
+ text-align: left;
272
+ text-underline-position: from-font;
273
+ text-decoration-skip-ink: none;
274
+
275
+ }
276
+
277
+ #city-group{
278
+ display: grid;
279
+ grid-template-columns: repeat(2, 1fr);
280
+ grid-template-rows: repeat(2, 1fr);
281
+ gap: 20px;
282
+ }
283
+
284
+ .top-cities .city-cover{
285
+ border-radius: 20px;
286
+ }
287
+
288
+ .city-cover{
289
+ width: 540px;
290
+ }
291
+ .city-cover img{
292
+ width: 100%;
293
+ height: 230.5px;
294
+ gap: 0px;
295
+ opacity: 0px;
296
+ border-top-left-radius: 20px;
297
+ border-top-right-radius: 20px;
298
+ display: block;
299
+ object-fit: cover;
300
+ object-position: top center;
301
+
302
+ }
303
+
304
+ .top-cities .city-details{
305
+ /* width: Fill (540px)px;
306
+ height: Hug (54px)px; */
307
+ padding: 12px 20px 12px 20px;
308
+ gap: 0px;
309
+ border: 1px 0px 0px 0px;
310
+ justify-content: space-between;
311
+ align-items: center;
312
+ opacity: 0px;
313
+ background: #DCB062;
314
+ display: flex;;
315
+ border-bottom-left-radius: 20px;
316
+ border-bottom-right-radius: 20px;
317
+ }
318
+
319
+ .city-details .city-name{
320
+ font-family: Poppins;
321
+ font-size: 20px;
322
+ font-weight: 400;
323
+ line-height: 30px;
324
+ letter-spacing: 0.05em;
325
+ text-align: left;
326
+ text-underline-position: from-font;
327
+ text-decoration-skip-ink: none;
328
+ text-transform: uppercase;
329
+ color: #FFFFFF;
330
+ }
331
+
332
+ .city-details .tour-count{
333
+ font-family: Poppins;
334
+ font-size: 14px;
335
+ font-weight: 400;
336
+ line-height: 21px;
337
+ letter-spacing: 0.05em;
338
+ text-align: right;
339
+ text-underline-position: from-font;
340
+ text-decoration-skip-ink: none;
341
+ color: #FFFFFF;
342
+ cursor: pointer;
343
+
344
+ }
345
+
346
+ .city-details .tour-count:hover{
347
+ text-decoration: underline;
348
+ }
349
+
350
+ .country-info {
351
+ position: relative;
352
+
353
+ .country-image{
354
+ width: 100%;
355
+ height: 392px;
356
+ object-fit: cover;
357
+ object-position: center;
358
+ border-width: 5px 0px 5px 0px;
359
+ border-style: solid;
360
+ border-color: #DCB062;
361
+ border-radius: 20px;
362
+ }
363
+
364
+ .country-name{
365
+ width: 160px;
366
+ height: 71px;
367
+ top: 58px;
368
+ left: 45px;
369
+ gap: 0px;
370
+ opacity: 0px;
371
+ position: absolute;
372
+ }
373
+
374
+ .bottom-logo{
375
+ position: absolute;
376
+ bottom: -40px;
377
+ border-color: #F2F2F2;
378
+ left: 0;
379
+ width: 100%;
380
+ }
381
+ }
382
+ #testimonial{
383
+ background: #F7F4EB;
384
+ margin-top: 100px;
385
+
386
+ }
387
+
388
+ #testimonial #testimonial-header{
389
+ height: 138px;
390
+ gap: 0px;
391
+ opacity: 0px;
392
+ text-align: center;
393
+ position: relative;
394
+ }
395
+
396
+ #testimonial #testimonial-header>span{
397
+ font-family: Poppins;
398
+ font-size: 45px;
399
+ font-weight: 200;
400
+ line-height: 67.5px;
401
+ letter-spacing: 0.06em;
402
+ text-underline-position: from-font;
403
+ text-decoration-skip-ink: none;
404
+ color: #5B4713;
405
+ text-transform: uppercase;
406
+
407
+ position: absolute;
408
+ bottom: 20px;
409
+ left: 50%;
410
+ transform: translate(-50%, 20px);
411
+ }
412
+
413
+ #testimonials{
414
+ // display: grid;
415
+ // gap: 20px;
416
+ // grid-template-columns: auto auto auto;
417
+ max-width: 1099px;
418
+ margin: auto;
419
+ padding: 50px 170px 70px 170px;
420
+ // gap: 20px;
421
+ }
422
+ .testimonial{
423
+ width: 317.33px !important;
424
+ height: 383px;
425
+ padding: 10px 18px 20px 18px;
426
+ gap: 15px;
427
+ border-radius: 20px;
428
+ opacity: 0px;
429
+ background: #FFFFFF;
430
+ box-shadow: 0px 5px 20px 0px #E1B65B33;
431
+ text-align: center;
432
+ display: grid !important;
433
+ }
434
+
435
+ .stars-icon{
436
+ width: 92px;
437
+ height: 32px;
438
+ gap: 0px;
439
+ opacity: 0px;
440
+ margin: auto;
441
+
442
+ }
443
+
444
+ .itinerary-summary{
445
+ width: 100%;
446
+ height: 56px;
447
+ padding: 10px;
448
+ gap: 10px;
449
+ border-radius: 10px;
450
+ opacity: 0px;
451
+ background: linear-gradient(270deg, #F9E298 0%, #FFFDF5 117.76%);
452
+ box-shadow: 0px 7px 16.7px 0px #E1B65B80;
453
+ box-sizing: border-box;
454
+ display: flex;
455
+ align-items: center;
456
+
457
+
458
+ }
459
+ .itinerary-summary img{
460
+ width: 28.46px;
461
+ height: 26.5px;
462
+
463
+ }
464
+ .itinerary-summary span{
465
+ font-family: Poppins;
466
+ font-size: 12px;
467
+ font-weight: 500;
468
+ line-height: 18px;
469
+ text-align: left;
470
+ text-underline-position: from-font;
471
+ text-decoration-skip-ink: none;
472
+ color: #AA853E;
473
+
474
+
475
+ }
476
+
477
+ .comment span{
478
+ font-family: Poppins;
479
+ font-size: 14px;
480
+ font-style: italic;
481
+ font-weight: 200;
482
+ line-height: 21px;
483
+ text-align: center;
484
+ text-underline-position: from-font;
485
+ text-decoration-skip-ink: none;
486
+
487
+ }
488
+
489
+ .customer-name span{
490
+ font-family: Poppins;
491
+ font-size: 20px;
492
+ font-weight: 400;
493
+ line-height: 30px;
494
+ letter-spacing: 0.05em;
495
+ text-align: left;
496
+ text-underline-position: from-font;
497
+ text-decoration-skip-ink: none;
498
+
499
+ }
500
+ .more-cities h2{
501
+ font-family: Poppins;
502
+ font-size: 30px;
503
+ font-weight: 600;
504
+ line-height: 45px;
505
+ letter-spacing: 0.05em;
506
+ text-align: left;
507
+ text-underline-position: from-font;
508
+ text-decoration-skip-ink: none;
509
+
510
+ }
511
+
512
+ .other-destinations{
513
+ display: inline-flex;
514
+ gap: 10px;
515
+
516
+ a{
517
+ font-family: Poppins;
518
+ font-size: 18px;
519
+ font-weight: 400;
520
+ line-height: 27px;
521
+ letter-spacing: 0.05em;
522
+ text-align: left;
523
+ text-underline-position: from-font;
524
+ text-decoration-skip-ink: none;
525
+ background: linear-gradient(360deg, #DCB062 5.04%, #F9E298 99.13%);
526
+ color: #836848;
527
+
528
+ width: auto;
529
+ padding: 5px 15px;
530
+ gap: 4px;
531
+ border-radius: 20px;
532
+ opacity: 0px;
533
+
534
+ }
535
+ }
536
+
537
+ .other-tours{
538
+ display: inline-flex;
539
+ gap: 10px;
540
+ margin-top: 30px;
541
+
542
+ .tour-story{
543
+ width: 220px;
544
+ height: 352px;
545
+ padding: 15px 0px 0px 0px;
546
+ gap: 0px;
547
+ border-radius: 20px;
548
+ opacity: 0px;
549
+ object-fit: cover;
550
+ position: relative;
551
+ background-size: cover;
552
+ position: relative;
553
+ background-position: top;
554
+ background-color: linear-gradient(
555
+ rgba(0, 0, 0, 0.5),
556
+ rgba(0, 0, 0, 0.5)
557
+ );
558
+
559
+ .tour-detail{
560
+ position: absolute;
561
+ display: flex;
562
+ justify-content: space-between;
563
+ align-items: flex-end;
564
+ bottom: 10px;
565
+ width: 80%;
566
+ left: 20px;
567
+ }
568
+
569
+ .city-name{
570
+ font-family: Poppins;
571
+ font-size: 20px;
572
+ font-weight: 400;
573
+ line-height: 30px;
574
+ letter-spacing: 0.05em;
575
+ text-align: left;
576
+ text-underline-position: from-font;
577
+ text-decoration-skip-ink: none;
578
+ color: #F9E298;
579
+ }
580
+
581
+ .tour-count{
582
+ width: 40px;
583
+ font-family: Poppins;
584
+ font-size: 12px;
585
+ font-weight: 400;
586
+ line-height: 21px;
587
+ letter-spacing: 0.05em;
588
+ text-align: right;
589
+ text-underline-position: from-font;
590
+ text-decoration-skip-ink: none;
591
+ color: #FFFFFF;
592
+ }
593
+
594
+ }
595
+ }
596
+ #about-signature-tours{
597
+ width: 1440px;
598
+ height: 597px;
599
+ gap: 0px;
600
+ opacity: 0px;
601
+ display: flex;
602
+ flex-direction: column;
603
+ align-items: center;
604
+ }
605
+ #about-signature-tours > div{
606
+ max-width: 970px;
607
+ }
608
+
609
+ #about-signature-tours h1{
610
+ font-family: Poppins;
611
+ font-size: 45px;
612
+ font-weight: 200;
613
+ line-height: 67.5px;
614
+ letter-spacing: 0.06em;
615
+ text-align: center;
616
+ text-underline-position: from-font;
617
+ text-decoration-skip-ink: none;
618
+ color: #545047;
619
+ margin-top: 55px;
620
+
621
+ }
622
+
623
+ #about-st-feature{
624
+ display: flex;
625
+ align-items: center;
626
+ justify-content: space-between;
627
+ }
628
+ #feature> img{
629
+ width: 419px;
630
+ height: 183.24px;
631
+ gap: 0px;
632
+ border-radius: 20px;
633
+ opacity: 0px;
634
+ border: 3px solid #FFFFFF;
635
+
636
+ object-fit: cover;
637
+ object-position: 50% 33%;
638
+ display: block;
639
+ box-sizing: border-box;
640
+ }
641
+
642
+ #st-brand{
643
+ display: flex;
644
+ justify-content: space-between;
645
+ align-items: center;
646
+ }
647
+
648
+ #st-brand span{
649
+ font-family: Poppins;
650
+ font-size: 20px;
651
+ font-weight: 400;
652
+ line-height: 30px;
653
+ letter-spacing: 0.05em;
654
+ text-align: left;
655
+ text-underline-position: from-font;
656
+ text-decoration-skip-ink: none;
657
+
658
+ }
659
+ #st-brand #st-logo{
660
+ width: 47px;
661
+ height: 43.76px;
662
+ gap: 0px;
663
+ opacity: 0px;
664
+ }
665
+
666
+ #about-signature-tours #feature{
667
+ width: 419px;
668
+ height: 246px;
669
+ gap: 0px;
670
+ border-radius: 20px;
671
+ opacity: 0px;
672
+ background: #FFFFFF;
673
+ box-shadow: 0px 5px 20px 0px #00000026;
674
+ }
675
+
676
+ #about-signature-tours p{
677
+ font-family: Poppins;
678
+ font-size: 18px;
679
+ font-weight: 200;
680
+ line-height: 27px;
681
+ letter-spacing: 0.05em;
682
+ text-align: left;
683
+ text-underline-position: from-font;
684
+ text-decoration-skip-ink: none;
685
+ color: #545047;
686
+ margin: 20px 0;
687
+ display: block;
688
+
689
+ }
690
+
691
+ #st-brand{
692
+ padding: 5px 23px 0px 12px;
693
+ }
694
+
695
+ #footer{
696
+ width: 1440px;
697
+ height: 321px;
698
+ gap: 0px;
699
+ opacity: 0px;
700
+ background: linear-gradient(270deg, #AA853E 0%, #F9E298 33.5%, #FFF3A6 50%, #F9E298 65.5%, #E1B65B 100%),
701
+ linear-gradient(4.08deg, rgba(170, 133, 62, 0.5) -2.54%, rgba(249, 225, 151, 0.5) 7.02%);
702
+ position: relative;
703
+ }
704
+
705
+ #footer .link-group-title{
706
+ font-family: Poppins;
707
+ font-size: 15px;
708
+ font-weight: 400;
709
+ line-height: 22.5px;
710
+ letter-spacing: 0.05em;
711
+ text-align: left;
712
+ text-underline-position: from-font;
713
+ text-decoration-skip-ink: none;
714
+ color: #5B4713;
715
+ height: 37px;
716
+ grid-row-start: 2 span;
717
+ }
718
+
719
+ #footer-links{
720
+ margin: auto;
721
+ height: 196px;
722
+ width: 70%;
723
+ display: flex;
724
+ align-items: center;
725
+ justify-content: space-between;
726
+ padding: 38px 0;
727
+ }
728
+
729
+ #footer-links > div{
730
+ height: 100%;
731
+ display: flex;
732
+ flex-direction: column;
733
+ justify-content: space-between;
734
+ }
735
+
736
+ #footer-links div:has(> a+a){
737
+ display: grid;
738
+ grid-template-columns: repeat(2, 1fr);
739
+ grid-template-rows: repeat(4, 1fr);
740
+ column-gap: 34px;
741
+ }
742
+
743
+ #footer-links a{
744
+ font-family: Poppins;
745
+ font-size: 18px;
746
+ font-weight: 500;
747
+ line-height: 36px;
748
+ letter-spacing: 0.05em;
749
+ text-align: left;
750
+ text-underline-position: from-font;
751
+ text-decoration-skip-ink: none;
752
+ color: #AA853E;
753
+ text-transform: uppercase;
754
+
755
+
756
+ }
757
+
758
+ #footer hr{
759
+ width: 1120px;
760
+ height: 0px;
761
+ top: 258.34px;
762
+ left: 160px;
763
+ gap: 0px;
764
+ border: 1px 0px 0px 0px;
765
+ opacity: 0px;
766
+ border: 1px solid #DFB16380;
767
+ position: absolute;
768
+ }
769
+
770
+ #copyright{
771
+ height: 17px;
772
+ top: 282.28px;
773
+ left: 592px;
774
+ gap: 0px;
775
+ opacity: 0px;
776
+ position: absolute;
777
+ }
778
+ #copyright span{
779
+ font-family: Poppins;
780
+ font-size: 14px;
781
+ font-weight: 400;
782
+ line-height: 16.93px;
783
+ letter-spacing: 0.05em;
784
+ text-align: left;
785
+ text-underline-position: from-font;
786
+ text-decoration-skip-ink: none;
787
+ color: #AA853E;
788
+
789
+
790
+ }