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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/iceholidays/frontend/actiontext.scss +119 -0
- data/app/assets/stylesheets/iceholidays/frontend/application.sass.scss +968 -355
- data/app/assets/stylesheets/iceholidays/frontend/common.scss +159 -74
- data/app/assets/stylesheets/iceholidays/frontend/layout.scss +218 -125
- data/app/assets/stylesheets/iceholidays/frontend/utils/_antd_overrides.scss +22 -7
- data/app/assets/stylesheets/iceholidays/frontend/utils/_variables.scss +2 -1
- data/app/assets/stylesheets/iceholidays/frontend/widgets/filter_pills.scss +19 -12
- data/app/assets/stylesheets/iceholidays/frontend/widgets/search_bar.scss +4 -0
- data/app/controllers/iceholidays/frontend/posts_controller.rb +14 -0
- data/app/javascript/api-services/agents-api.service.ts +33 -0
- data/app/javascript/api-services/locations-api.service.ts +23 -1
- data/app/javascript/api-services/series-api.service.ts +48 -28
- data/app/javascript/interfaces/agent.interface.ts +11 -0
- data/app/javascript/interfaces/country.interface.ts +4 -3
- data/app/javascript/interfaces/itinerary.interface.ts +101 -8
- data/app/javascript/react/App.tsx +1 -1
- data/app/javascript/react/components/Destinations.tsx +30 -20
- data/app/javascript/react/components/PriceDetails.tsx +146 -0
- data/app/javascript/react/components/shared/ContactAgentsForm.tsx +44 -0
- data/app/javascript/react/components/shared/Headline.tsx +2 -1
- data/app/javascript/react/components/shared/LocationDropdown.tsx +34 -0
- data/app/javascript/react/components/shared/{Postcard.tsx → LocationPostcards.tsx} +22 -1
- data/app/javascript/react/layouts/MainFooter.tsx +64 -39
- data/app/javascript/react/layouts/MainHeader.tsx +68 -30
- data/app/javascript/react/pages/AboutUsPage.tsx +8 -8
- data/app/javascript/react/pages/BlogPage.tsx +6 -4
- data/app/javascript/react/pages/ContactAgentsPage.tsx +174 -5
- data/app/javascript/react/pages/ContactUsPage.tsx +5 -5
- data/app/javascript/react/pages/CountriesPage.tsx +3 -8
- data/app/javascript/react/pages/Homepage.tsx +23 -13
- data/app/javascript/react/pages/ListingPage.tsx +197 -145
- data/app/javascript/react/pages/ShowPage.tsx +275 -265
- data/app/javascript/react/widgets/FilterPills.tsx +83 -49
- data/app/javascript/react/widgets/SearchBarWidget.tsx +24 -8
- data/app/views/iceholidays/frontend/posts/index.html.erb +9 -0
- data/app/views/iceholidays/frontend/posts/show.html.erb +2 -0
- data/config/routes.rb +2 -1
- data/lib/iceholidays/frontend/version.rb +1 -1
- data/public/iceholidays-assets/application.css +1209 -437
- data/public/iceholidays-assets/application.js +91 -104
- data/public/iceholidays-assets/application.js.map +4 -4
- data/public/iceholidays-assets/images/TSTRibbon.png +0 -0
- data/public/iceholidays-assets/images/about-us_logo_mobile.png +0 -0
- data/public/iceholidays-assets/images/destinations_logo.png +0 -0
- data/public/iceholidays-assets/images/footer-bg_mobile.png +0 -0
- data/public/iceholidays-assets/images/logo_mobile.png +0 -0
- metadata +19 -27
- data/public/iceholidays-assets/images/8D7N.png +0 -0
- data/public/iceholidays-assets/images/Frame71.png +0 -0
- data/public/iceholidays-assets/images/africa.png +0 -0
- data/public/iceholidays-assets/images/banner1.png +0 -0
- data/public/iceholidays-assets/images/banner2.png +0 -0
- data/public/iceholidays-assets/images/china.png +0 -0
- data/public/iceholidays-assets/images/china2.png +0 -0
- data/public/iceholidays-assets/images/chongqing.png +0 -0
- data/public/iceholidays-assets/images/guangzhou.png +0 -0
- data/public/iceholidays-assets/images/guilin.png +0 -0
- data/public/iceholidays-assets/images/harbin.png +0 -0
- data/public/iceholidays-assets/images/hongkong.png +0 -0
- data/public/iceholidays-assets/images/inner_mongolia.png +0 -0
- data/public/iceholidays-assets/images/jiangxi.png +0 -0
- data/public/iceholidays-assets/images/kenya.png +0 -0
- data/public/iceholidays-assets/images/kenya2.png +0 -0
- data/public/iceholidays-assets/images/kunming.png +0 -0
- data/public/iceholidays-assets/images/slikroad.png +0 -0
- data/public/iceholidays-assets/images/southafrica.png +0 -0
- data/public/iceholidays-assets/images/tanzania.png +0 -0
- data/public/iceholidays-assets/images/tour1.png +0 -0
- data/public/iceholidays-assets/images/uganda.png +0 -0
- /data/public/iceholidays-assets/images/{Group_71.png → about-us_logo.png} +0 -0
- /data/public/iceholidays-assets/images/{logo_container.png → logo.png} +0 -0
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
1
2
|
/*
|
|
2
3
|
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
4
|
* listed below.
|
|
@@ -94,89 +95,68 @@ a {
|
|
|
94
95
|
color: #DCB062;
|
|
95
96
|
}
|
|
96
97
|
|
|
97
|
-
.ant-select-
|
|
98
|
-
|
|
98
|
+
.ant-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled),
|
|
99
|
+
.ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
|
|
100
|
+
background-color: transparent;
|
|
101
|
+
color: #DCB062;
|
|
99
102
|
}
|
|
100
103
|
|
|
101
|
-
.ant-select-
|
|
102
|
-
color:
|
|
103
|
-
background-color: #FFFFFF;
|
|
104
|
+
.ant-select-dropdown .ant-select-item {
|
|
105
|
+
color: rgba(0, 0, 0, 0.5019607843);
|
|
104
106
|
}
|
|
105
107
|
|
|
106
|
-
.ant-
|
|
107
|
-
|
|
108
|
+
.ant-menu-light.ant-menu-horizontal > .ant-menu-item:hover::after, .ant-menu-light.ant-menu-horizontal > .ant-menu-item-selected::after, .ant-menu-light.ant-menu-horizontal > .ant-menu-item-active::after {
|
|
109
|
+
display: none;
|
|
110
|
+
}
|
|
111
|
+
.ant-menu-light .ant-menu-item-selected {
|
|
112
|
+
background-color: transparent;
|
|
108
113
|
}
|
|
109
114
|
|
|
110
115
|
#main-header {
|
|
116
|
+
--button-height: 35px;
|
|
111
117
|
position: relative;
|
|
112
|
-
background: linear-gradient(241.37deg, #D1AC6E -108.33%, #D1AC6E -14.72%, #F9E298 -2.73%, #B68B31 108.18%);
|
|
113
|
-
width: 100%;
|
|
114
118
|
height: 50px;
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
display: flex;
|
|
119
|
+
width: 100%;
|
|
120
|
+
background: linear-gradient(241.37deg, #D1AC6E -108.33%, #D1AC6E -14.72%, #F9E298 -2.73%, #B68B31 108.18%);
|
|
121
|
+
padding-inline-end: 25px;
|
|
122
|
+
display: inline-flex;
|
|
123
|
+
justify-content: space-between;
|
|
121
124
|
align-items: center;
|
|
122
|
-
justify-content: space-around;
|
|
123
125
|
}
|
|
124
|
-
#main-header
|
|
125
|
-
|
|
126
|
-
|
|
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;
|
|
126
|
+
#main-header #nav-buttons {
|
|
127
|
+
display: inline-flex;
|
|
128
|
+
gap: 7px;
|
|
141
129
|
}
|
|
142
|
-
#main-header
|
|
143
|
-
|
|
130
|
+
#main-header #toggle-menu {
|
|
131
|
+
height: var(--button-height);
|
|
132
|
+
background: linear-gradient(287.63deg, #D1AC6E -19.9%, #D1AC6E 10.87%, #F9E298 26.63%, #B68B31 93.91%);
|
|
133
|
+
border: 1px solid;
|
|
134
|
+
border-image-source: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(42, 42, 42, 0.5) 100%);
|
|
135
|
+
box-shadow: 0px 4px 4px 0px rgba(249, 246, 243, 0.1019607843) inset, 0px 1px 2px 0px rgba(170, 133, 62, 0.5019607843);
|
|
136
|
+
width: 35px;
|
|
137
|
+
height: 35px;
|
|
138
|
+
padding: 6px 5px 6px 5px;
|
|
139
|
+
border-radius: 23px;
|
|
144
140
|
}
|
|
145
|
-
#main-header
|
|
146
|
-
|
|
147
|
-
left: 183px;
|
|
148
|
-
gap: 35px;
|
|
149
|
-
opacity: 0px;
|
|
141
|
+
#main-header .nav-menu {
|
|
142
|
+
display: none;
|
|
150
143
|
}
|
|
151
144
|
#main-header .logo {
|
|
152
|
-
width: 304px;
|
|
153
|
-
height: 66px;
|
|
154
|
-
left: 568px;
|
|
155
|
-
gap: 0px;
|
|
156
|
-
opacity: 0px;
|
|
157
145
|
z-index: 2;
|
|
146
|
+
position: relative;
|
|
158
147
|
}
|
|
159
|
-
#main-header
|
|
160
|
-
top:
|
|
161
|
-
left: 877px;
|
|
162
|
-
gap: 35px;
|
|
163
|
-
opacity: 0px;
|
|
148
|
+
#main-header .logo.logo_mobile {
|
|
149
|
+
padding-top: 25px;
|
|
164
150
|
}
|
|
165
151
|
#main-header #get-brochure {
|
|
166
|
-
position: absolute;
|
|
167
152
|
width: 152px;
|
|
168
|
-
|
|
169
|
-
top: 8px;
|
|
170
|
-
right: 20px;
|
|
171
|
-
}
|
|
172
|
-
#main-header #get-brochure button {
|
|
153
|
+
height: var(--button-height);
|
|
173
154
|
padding: 7px 8px 7px 8px;
|
|
174
155
|
border-radius: 20px;
|
|
175
156
|
border: 1px solid;
|
|
176
|
-
background: linear-gradient(287.63deg, #
|
|
157
|
+
background: linear-gradient(287.63deg, #DCB062 -19.9%, #DCB062 10.87%, #F9E298 26.63%, #B68B31 93.91%);
|
|
177
158
|
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;
|
|
159
|
+
box-shadow: 0px 3px 10px 0px rgba(170, 133, 62, 0.5019607843), 0px 4px 4px 0px rgba(249, 246, 243, 0.1019607843) inset;
|
|
180
160
|
text-align: center;
|
|
181
161
|
text-transform: uppercase;
|
|
182
162
|
font-family: Poppins, san-serif;
|
|
@@ -190,33 +170,35 @@ a {
|
|
|
190
170
|
}
|
|
191
171
|
|
|
192
172
|
#main-footer {
|
|
193
|
-
|
|
194
|
-
|
|
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;
|
|
173
|
+
background: url("/iceholidays-assets/images/footer-bg_mobile.png") no-repeat;
|
|
174
|
+
padding: 50px 30px;
|
|
207
175
|
position: relative;
|
|
208
176
|
}
|
|
209
177
|
#main-footer_links > div {
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
178
|
+
border-bottom: 1px solid rgba(223, 177, 99, 0.5019607843);
|
|
179
|
+
padding: 10px 0;
|
|
180
|
+
}
|
|
181
|
+
#main-footer_links .ant-space {
|
|
182
|
+
width: 100%;
|
|
183
|
+
}
|
|
184
|
+
#main-footer_links .link-group-title {
|
|
185
|
+
font-family: Poppins, san-serif;
|
|
186
|
+
font-family: Poppins;
|
|
187
|
+
font-size: 14px;
|
|
188
|
+
font-weight: 400;
|
|
189
|
+
line-height: 21px;
|
|
190
|
+
letter-spacing: 0.05em;
|
|
191
|
+
text-align: left;
|
|
192
|
+
text-underline-position: from-font;
|
|
193
|
+
text-decoration-skip-ink: none;
|
|
194
|
+
color: #5B4713;
|
|
195
|
+
grid-row-start: 2 span;
|
|
214
196
|
}
|
|
215
197
|
#main-footer_links a {
|
|
216
198
|
font-family: Poppins, san-serif;
|
|
217
|
-
font-size:
|
|
199
|
+
font-size: 16px;
|
|
218
200
|
font-weight: 500;
|
|
219
|
-
line-height:
|
|
201
|
+
line-height: 32px;
|
|
220
202
|
letter-spacing: 0.05em;
|
|
221
203
|
text-align: left;
|
|
222
204
|
text-underline-position: from-font;
|
|
@@ -227,58 +209,139 @@ a {
|
|
|
227
209
|
#main-footer_links div:has(> a + a) {
|
|
228
210
|
display: grid;
|
|
229
211
|
grid-template-columns: repeat(2, 1fr);
|
|
230
|
-
grid-template-rows:
|
|
212
|
+
grid-template-rows: 1fr;
|
|
231
213
|
column-gap: 34px;
|
|
232
214
|
}
|
|
233
|
-
#main-footer_links .link-group-title {
|
|
215
|
+
#main-footer_links .contact-info .link-group-title {
|
|
216
|
+
text-align: center;
|
|
217
|
+
}
|
|
218
|
+
#main-footer #copyright {
|
|
219
|
+
text-align: center;
|
|
220
|
+
padding: 20px 0 0;
|
|
221
|
+
}
|
|
222
|
+
#main-footer #copyright span {
|
|
234
223
|
font-family: Poppins, san-serif;
|
|
235
|
-
font-size:
|
|
224
|
+
font-size: 14px;
|
|
236
225
|
font-weight: 400;
|
|
237
|
-
line-height:
|
|
226
|
+
line-height: 16.93px;
|
|
238
227
|
letter-spacing: 0.05em;
|
|
239
228
|
text-align: left;
|
|
240
229
|
text-underline-position: from-font;
|
|
241
230
|
text-decoration-skip-ink: none;
|
|
242
|
-
color: #
|
|
243
|
-
height: 37px;
|
|
244
|
-
grid-row-start: 2 span;
|
|
231
|
+
color: #AA853E;
|
|
245
232
|
}
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
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;
|
|
233
|
+
|
|
234
|
+
#nav-drawer.ant-drawer-content {
|
|
235
|
+
background: #F7F4EB;
|
|
256
236
|
}
|
|
257
|
-
#
|
|
258
|
-
|
|
259
|
-
top: 282.28px;
|
|
260
|
-
left: 592px;
|
|
261
|
-
gap: 0px;
|
|
262
|
-
opacity: 0px;
|
|
263
|
-
position: absolute;
|
|
237
|
+
#nav-drawer.ant-drawer-content .ant-drawer-header {
|
|
238
|
+
border: none;
|
|
264
239
|
}
|
|
265
|
-
#
|
|
240
|
+
#nav-drawer.ant-drawer-content .ant-drawer-header-title {
|
|
241
|
+
justify-content: flex-end;
|
|
242
|
+
}
|
|
243
|
+
#nav-drawer.ant-drawer-content .ant-drawer-close {
|
|
244
|
+
width: 35px;
|
|
245
|
+
height: 35px;
|
|
246
|
+
padding: 6px 5px 6px 5px;
|
|
247
|
+
border-radius: 23px;
|
|
248
|
+
background: linear-gradient(287.63deg, #D1AC6E -19.9%, #D1AC6E 10.87%, #F9E298 26.63%, #B68B31 93.91%);
|
|
249
|
+
border: 1px solid;
|
|
250
|
+
border-image-source: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(42, 42, 42, 0.5) 100%);
|
|
251
|
+
box-shadow: 0px 4px 4px 0px rgba(249, 246, 243, 0.1019607843) inset, 0px 1px 2px 0px rgba(170, 133, 62, 0.5019607843);
|
|
252
|
+
}
|
|
253
|
+
#nav-drawer.ant-drawer-content .ant-drawer-body {
|
|
254
|
+
padding: 0 30px;
|
|
255
|
+
}
|
|
256
|
+
#nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light {
|
|
257
|
+
background-color: transparent;
|
|
258
|
+
border: none;
|
|
259
|
+
}
|
|
260
|
+
#nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-item {
|
|
261
|
+
border-bottom: 1px solid rgba(170, 133, 62, 0.1411764706);
|
|
262
|
+
padding: 16px 0;
|
|
263
|
+
height: 56px;
|
|
264
|
+
}
|
|
265
|
+
#nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-item:has(.logo_desktop) {
|
|
266
|
+
display: none;
|
|
267
|
+
}
|
|
268
|
+
#nav-drawer.ant-drawer-content .ant-drawer-body .nav-menu_mobile a {
|
|
266
269
|
font-family: Poppins, san-serif;
|
|
267
|
-
font-size:
|
|
268
|
-
font-weight:
|
|
269
|
-
line-height:
|
|
270
|
+
font-size: 16px;
|
|
271
|
+
font-weight: 500;
|
|
272
|
+
line-height: 24px;
|
|
270
273
|
letter-spacing: 0.05em;
|
|
271
274
|
text-align: left;
|
|
272
275
|
text-underline-position: from-font;
|
|
273
276
|
text-decoration-skip-ink: none;
|
|
274
|
-
|
|
277
|
+
text-transform: uppercase;
|
|
278
|
+
color: #5B4713;
|
|
275
279
|
}
|
|
276
280
|
|
|
281
|
+
@media only screen and (min-width: 769px) {
|
|
282
|
+
#main-header #toggle-menu {
|
|
283
|
+
display: none;
|
|
284
|
+
}
|
|
285
|
+
#main-header .nav-menu {
|
|
286
|
+
display: flex;
|
|
287
|
+
flex: 1;
|
|
288
|
+
background: transparent;
|
|
289
|
+
height: 100%;
|
|
290
|
+
justify-content: center;
|
|
291
|
+
margin-inline-start: 80px;
|
|
292
|
+
}
|
|
293
|
+
#main-header .nav-menu a {
|
|
294
|
+
color: white;
|
|
295
|
+
text-transform: uppercase;
|
|
296
|
+
font-family: Poppins, san-serif;
|
|
297
|
+
font-size: 16px;
|
|
298
|
+
font-weight: 500;
|
|
299
|
+
line-height: 24px;
|
|
300
|
+
letter-spacing: 0.05em;
|
|
301
|
+
text-align: left;
|
|
302
|
+
text-underline-position: from-font;
|
|
303
|
+
text-decoration-skip-ink: none;
|
|
304
|
+
text-decoration: none;
|
|
305
|
+
}
|
|
306
|
+
#main-header .nav-menu .ant-menu-item-selected a {
|
|
307
|
+
color: #5B4713;
|
|
308
|
+
}
|
|
309
|
+
#main-header .nav-menu .ant-menu-item:has(.logo) {
|
|
310
|
+
padding: 0;
|
|
311
|
+
}
|
|
312
|
+
#main-header .logo {
|
|
313
|
+
width: 304px;
|
|
314
|
+
}
|
|
315
|
+
#main-header .logo.logo_mobile {
|
|
316
|
+
display: none;
|
|
317
|
+
}
|
|
318
|
+
#main-header .logo.logo_desktop {
|
|
319
|
+
display: block;
|
|
320
|
+
}
|
|
321
|
+
#main-footer {
|
|
322
|
+
height: 321px;
|
|
323
|
+
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%);
|
|
324
|
+
}
|
|
325
|
+
#main-footer_links {
|
|
326
|
+
width: 80%;
|
|
327
|
+
margin: auto !important;
|
|
328
|
+
}
|
|
329
|
+
#main-footer_links > div {
|
|
330
|
+
padding: 10px 0 40px;
|
|
331
|
+
}
|
|
332
|
+
#main-footer .footer-menu {
|
|
333
|
+
padding-top: 40px;
|
|
334
|
+
}
|
|
335
|
+
#main-footer .contact-info .ant-flex {
|
|
336
|
+
gap: 10px !important;
|
|
337
|
+
align-items: flex-start;
|
|
338
|
+
}
|
|
339
|
+
}
|
|
277
340
|
#headline {
|
|
278
|
-
--side-padding:
|
|
341
|
+
--side-padding: 20px;
|
|
279
342
|
}
|
|
280
343
|
#headline_banner {
|
|
281
|
-
height:
|
|
344
|
+
height: 180px;
|
|
282
345
|
background-size: cover;
|
|
283
346
|
background-repeat: no-repeat;
|
|
284
347
|
background-position: center center;
|
|
@@ -293,10 +356,10 @@ a {
|
|
|
293
356
|
#headline_header h1 {
|
|
294
357
|
margin: 0;
|
|
295
358
|
font-family: Poppins, san-serif;
|
|
296
|
-
font-size: 45px;
|
|
297
359
|
font-weight: 400;
|
|
298
|
-
|
|
299
|
-
|
|
360
|
+
font-size: 18px;
|
|
361
|
+
line-height: 27px;
|
|
362
|
+
letter-spacing: 5%;
|
|
300
363
|
text-align: left;
|
|
301
364
|
text-underline-position: from-font;
|
|
302
365
|
text-decoration-skip-ink: none;
|
|
@@ -304,7 +367,8 @@ a {
|
|
|
304
367
|
text-transform: uppercase;
|
|
305
368
|
}
|
|
306
369
|
#headline .ant-breadcrumb {
|
|
307
|
-
padding: 10px var(--side-padding);
|
|
370
|
+
padding: 10px var(--side-padding) 0;
|
|
371
|
+
font-size: 12px;
|
|
308
372
|
}
|
|
309
373
|
|
|
310
374
|
.date-selector {
|
|
@@ -350,19 +414,17 @@ a {
|
|
|
350
414
|
|
|
351
415
|
.postcards {
|
|
352
416
|
display: grid;
|
|
353
|
-
grid-template-columns:
|
|
354
|
-
grid-template-rows: repeat(2, 1fr);
|
|
417
|
+
grid-template-columns: 1fr;
|
|
355
418
|
gap: 20px;
|
|
356
419
|
}
|
|
357
|
-
|
|
358
|
-
.postcard {
|
|
420
|
+
.postcards .postcard {
|
|
359
421
|
border-radius: 20px;
|
|
360
422
|
overflow: hidden;
|
|
361
423
|
width: 100%;
|
|
362
424
|
}
|
|
363
|
-
.postcard img {
|
|
425
|
+
.postcards .postcard img {
|
|
364
426
|
width: 100%;
|
|
365
|
-
height:
|
|
427
|
+
height: 140px;
|
|
366
428
|
gap: 0px;
|
|
367
429
|
opacity: 0px;
|
|
368
430
|
border-top-left-radius: 20px;
|
|
@@ -373,11 +435,11 @@ a {
|
|
|
373
435
|
transition: transform 0.4s ease;
|
|
374
436
|
transform-origin: 50% 100%;
|
|
375
437
|
}
|
|
376
|
-
.postcard img:hover {
|
|
438
|
+
.postcards .postcard img:hover {
|
|
377
439
|
transform: scale(1.2);
|
|
378
440
|
width: 100%;
|
|
379
441
|
}
|
|
380
|
-
.postcard .details {
|
|
442
|
+
.postcards .postcard .details {
|
|
381
443
|
padding: 12px 20px 12px 20px;
|
|
382
444
|
gap: 0px;
|
|
383
445
|
border: 1px 0px 0px 0px;
|
|
@@ -389,11 +451,11 @@ a {
|
|
|
389
451
|
border-bottom-left-radius: 20px;
|
|
390
452
|
border-bottom-right-radius: 20px;
|
|
391
453
|
}
|
|
392
|
-
.postcard .name {
|
|
454
|
+
.postcards .postcard .name {
|
|
393
455
|
font-family: Poppins, san-serif;
|
|
394
|
-
font-size:
|
|
456
|
+
font-size: 16px;
|
|
395
457
|
font-weight: 400;
|
|
396
|
-
line-height:
|
|
458
|
+
line-height: 24px;
|
|
397
459
|
letter-spacing: 0.05em;
|
|
398
460
|
text-align: left;
|
|
399
461
|
text-underline-position: from-font;
|
|
@@ -401,7 +463,7 @@ a {
|
|
|
401
463
|
text-transform: uppercase;
|
|
402
464
|
color: #FFFFFF;
|
|
403
465
|
}
|
|
404
|
-
.postcard .tour-count {
|
|
466
|
+
.postcards .postcard .tour-count {
|
|
405
467
|
font-family: Poppins, san-serif;
|
|
406
468
|
font-size: 14px;
|
|
407
469
|
font-weight: 400;
|
|
@@ -413,7 +475,7 @@ a {
|
|
|
413
475
|
color: #FFFFFF;
|
|
414
476
|
cursor: pointer;
|
|
415
477
|
}
|
|
416
|
-
.postcard .tour-count svg {
|
|
478
|
+
.postcards .postcard .tour-count svg {
|
|
417
479
|
vertical-align: middle;
|
|
418
480
|
}
|
|
419
481
|
|
|
@@ -422,10 +484,11 @@ a {
|
|
|
422
484
|
margin-top: 100px;
|
|
423
485
|
}
|
|
424
486
|
#ribbon-section_header {
|
|
425
|
-
height:
|
|
487
|
+
height: 150px;
|
|
426
488
|
text-align: center;
|
|
427
489
|
position: relative;
|
|
428
|
-
background-image: url("/iceholidays-assets/images/
|
|
490
|
+
background-image: url("/iceholidays-assets/images/TSTRibbon.png");
|
|
491
|
+
background-repeat: no-repeat;
|
|
429
492
|
}
|
|
430
493
|
#ribbon-section_header h1 {
|
|
431
494
|
font-family: Poppins, san-serif;
|
|
@@ -452,6 +515,72 @@ a {
|
|
|
452
515
|
word-wrap: break-word; /* Internet Explorer 5.5+ */
|
|
453
516
|
}
|
|
454
517
|
|
|
518
|
+
.location-dropdown {
|
|
519
|
+
margin: 10px;
|
|
520
|
+
}
|
|
521
|
+
.location-dropdown .location-filter {
|
|
522
|
+
height: 46px;
|
|
523
|
+
width: 100%;
|
|
524
|
+
}
|
|
525
|
+
.location-dropdown .location-filter .ant-select-selector {
|
|
526
|
+
border-radius: 30px;
|
|
527
|
+
border: none;
|
|
528
|
+
background: linear-gradient(360deg, #DCB062 5.04%, #F9E298 99.13%);
|
|
529
|
+
}
|
|
530
|
+
.location-dropdown .location-filter .ant-select-selection-wrap {
|
|
531
|
+
padding: 3px 16px;
|
|
532
|
+
}
|
|
533
|
+
.location-dropdown .location-filter .ant-select-selection-item {
|
|
534
|
+
font-family: Poppins, san-serif;
|
|
535
|
+
font-weight: 500;
|
|
536
|
+
font-size: 16px;
|
|
537
|
+
line-height: 24px;
|
|
538
|
+
letter-spacing: 5%;
|
|
539
|
+
text-transform: uppercase;
|
|
540
|
+
color: #5B4713;
|
|
541
|
+
}
|
|
542
|
+
.location-dropdown .location-filter .ant-select-arrow {
|
|
543
|
+
inset-inline-end: 20px;
|
|
544
|
+
color: #5B4713;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.location-filter_option {
|
|
548
|
+
font-family: Poppins;
|
|
549
|
+
font-weight: 400;
|
|
550
|
+
font-size: 16px;
|
|
551
|
+
line-height: 32px;
|
|
552
|
+
letter-spacing: 5%;
|
|
553
|
+
text-transform: uppercase;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
@media only screen and (min-width: 769px) {
|
|
557
|
+
#headline {
|
|
558
|
+
--side-padding: 10%;
|
|
559
|
+
}
|
|
560
|
+
#headline_banner {
|
|
561
|
+
height: 352px;
|
|
562
|
+
}
|
|
563
|
+
#headline_header h1 {
|
|
564
|
+
font-size: 45px;
|
|
565
|
+
font-weight: 400;
|
|
566
|
+
line-height: 67.5px;
|
|
567
|
+
letter-spacing: 0.05em;
|
|
568
|
+
}
|
|
569
|
+
#headline .ant-breadcrumb {
|
|
570
|
+
font-size: 14px;
|
|
571
|
+
}
|
|
572
|
+
.postcards {
|
|
573
|
+
grid-template-columns: repeat(2, 1fr);
|
|
574
|
+
}
|
|
575
|
+
.postcards .postcard img {
|
|
576
|
+
height: 230px;
|
|
577
|
+
}
|
|
578
|
+
.postcards .postcard .name {
|
|
579
|
+
font-size: 20px;
|
|
580
|
+
font-weight: 400;
|
|
581
|
+
line-height: 30px;
|
|
582
|
+
}
|
|
583
|
+
}
|
|
455
584
|
.ant-input {
|
|
456
585
|
field-sizing: content;
|
|
457
586
|
}
|
|
@@ -540,6 +669,9 @@ a {
|
|
|
540
669
|
#search-bar #search-bar-widget .ant-form-item {
|
|
541
670
|
margin-bottom: 0;
|
|
542
671
|
}
|
|
672
|
+
#search-bar #search-bar-widget .ant-input {
|
|
673
|
+
min-width: 272px;
|
|
674
|
+
}
|
|
543
675
|
#search-bar #search-bar-widget .search-button {
|
|
544
676
|
width: auto;
|
|
545
677
|
margin-bottom: 3px;
|
|
@@ -564,21 +696,190 @@ a {
|
|
|
564
696
|
color: #836848;
|
|
565
697
|
cursor: pointer;
|
|
566
698
|
text-align: center;
|
|
567
|
-
min-width: 150px;
|
|
568
699
|
}
|
|
569
|
-
.filter-pill
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
700
|
+
.filter-pill.default-filter {
|
|
701
|
+
background: #F9E298;
|
|
702
|
+
}
|
|
703
|
+
.filter-pill span {
|
|
704
|
+
font-family: Poppins, san-serif;
|
|
705
|
+
font-weight: 500;
|
|
706
|
+
font-size: 14px;
|
|
707
|
+
line-height: 21px;
|
|
708
|
+
letter-spacing: 2%;
|
|
709
|
+
text-align: left;
|
|
710
|
+
text-underline-position: from-font;
|
|
711
|
+
text-decoration-skip-ink: none;
|
|
712
|
+
}
|
|
713
|
+
.filter-pill.selected {
|
|
714
|
+
background: #836848;
|
|
715
|
+
color: #FFFFFF;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
@media only screen and (min-width: 769px) {
|
|
719
|
+
.filter-pill span {
|
|
720
|
+
font-size: 18px;
|
|
721
|
+
font-weight: 400;
|
|
722
|
+
line-height: 27px;
|
|
723
|
+
letter-spacing: 0.05em;
|
|
724
|
+
}
|
|
725
|
+
}
|
|
726
|
+
.trix-content .attachment-gallery > action-text-attachment,
|
|
727
|
+
.trix-content .attachment-gallery > .attachment {
|
|
728
|
+
flex: 1 0 33%;
|
|
729
|
+
padding: 0 0.5em;
|
|
730
|
+
max-width: 33%;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
.trix-content .attachment-gallery.attachment-gallery--2 > action-text-attachment,
|
|
734
|
+
.trix-content .attachment-gallery.attachment-gallery--2 > .attachment, .trix-content .attachment-gallery.attachment-gallery--4 > action-text-attachment,
|
|
735
|
+
.trix-content .attachment-gallery.attachment-gallery--4 > .attachment {
|
|
736
|
+
flex-basis: 50%;
|
|
737
|
+
max-width: 50%;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
.trix-content action-text-attachment .attachment {
|
|
741
|
+
padding: 0 !important;
|
|
742
|
+
max-width: 100% !important;
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
.actiontext-content {
|
|
746
|
+
font-family: Arial, sans-serif;
|
|
747
|
+
line-height: 1.5;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.actiontext-table {
|
|
751
|
+
border-collapse: collapse !important;
|
|
752
|
+
width: 100% !important;
|
|
753
|
+
margin-top: 20px !important;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.actiontext-table th, .actiontext-table td {
|
|
757
|
+
border: 1px solid black !important;
|
|
758
|
+
padding: 8px !important;
|
|
759
|
+
text-align: left !important;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
.actiontext-table th {
|
|
763
|
+
background-color: #f2f2f2 !important;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
.actiontext-link {
|
|
767
|
+
color: #007BFF !important;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
.trix-content {
|
|
771
|
+
line-height: 1.5;
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
.trix-content * {
|
|
775
|
+
box-sizing: border-box;
|
|
776
|
+
margin: 0;
|
|
777
|
+
padding: 0;
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.trix-content h1 {
|
|
781
|
+
font-size: 1.2em;
|
|
782
|
+
line-height: 1.2;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.trix-content blockquote {
|
|
786
|
+
border: 0 solid #ccc;
|
|
787
|
+
border-left-width: 0.3em;
|
|
788
|
+
margin-left: 0.3em;
|
|
789
|
+
padding-left: 0.6em;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.trix-content [dir=rtl] blockquote,
|
|
793
|
+
.trix-content blockquote[dir=rtl] {
|
|
794
|
+
border-width: 0;
|
|
795
|
+
border-right-width: 0.3em;
|
|
796
|
+
margin-right: 0.3em;
|
|
797
|
+
padding-right: 0.6em;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.trix-content li {
|
|
801
|
+
margin-left: 1em;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.trix-content [dir=rtl] li {
|
|
805
|
+
margin-right: 1em;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
.trix-content pre {
|
|
809
|
+
display: inline-block;
|
|
810
|
+
width: 100%;
|
|
811
|
+
vertical-align: top;
|
|
812
|
+
font-family: monospace;
|
|
813
|
+
font-size: 0.9em;
|
|
814
|
+
padding: 0.5em;
|
|
815
|
+
white-space: pre;
|
|
816
|
+
background-color: #eee;
|
|
817
|
+
overflow-x: auto;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.trix-content img {
|
|
821
|
+
max-width: 100%;
|
|
822
|
+
height: auto;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.trix-content .attachment {
|
|
826
|
+
display: inline-block;
|
|
827
|
+
position: relative;
|
|
828
|
+
max-width: 100%;
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
.trix-content .attachment a {
|
|
832
|
+
color: inherit;
|
|
833
|
+
text-decoration: none;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {
|
|
837
|
+
color: inherit;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.trix-content .attachment__caption {
|
|
841
|
+
text-align: center;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.trix-content .attachment__caption .attachment__name + .attachment__size::before {
|
|
845
|
+
content: " •";
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.trix-content .attachment--preview {
|
|
849
|
+
width: 100%;
|
|
850
|
+
text-align: center;
|
|
851
|
+
}
|
|
852
|
+
|
|
853
|
+
.trix-content .attachment--preview .attachment__caption {
|
|
854
|
+
color: #666;
|
|
855
|
+
font-size: 0.9em;
|
|
856
|
+
line-height: 1.2;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.trix-content .attachment--file {
|
|
860
|
+
color: #333;
|
|
861
|
+
line-height: 1;
|
|
862
|
+
margin: 0 2px 2px 2px;
|
|
863
|
+
padding: 0.4em 1em;
|
|
864
|
+
border: 1px solid #bbb;
|
|
865
|
+
border-radius: 5px;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.trix-content .attachment-gallery {
|
|
869
|
+
display: flex;
|
|
870
|
+
flex-wrap: wrap;
|
|
871
|
+
position: relative;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
.trix-content .attachment-gallery .attachment {
|
|
875
|
+
flex: 1 0 33%;
|
|
876
|
+
padding: 0 0.5em;
|
|
877
|
+
max-width: 33%;
|
|
578
878
|
}
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
879
|
+
|
|
880
|
+
.trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
|
|
881
|
+
flex-basis: 50%;
|
|
882
|
+
max-width: 50%;
|
|
582
883
|
}
|
|
583
884
|
|
|
584
885
|
body {
|
|
@@ -593,7 +894,6 @@ body {
|
|
|
593
894
|
}
|
|
594
895
|
|
|
595
896
|
#homepage_banner {
|
|
596
|
-
min-height: 760px;
|
|
597
897
|
border-radius: 0px 0px 50px 50px;
|
|
598
898
|
}
|
|
599
899
|
#homepage_banner [class~=ant-carousel] .slick-prev {
|
|
@@ -602,92 +902,28 @@ body {
|
|
|
602
902
|
#homepage_banner [class~=ant-carousel] .slick-next {
|
|
603
903
|
inset-inline-end: 115px;
|
|
604
904
|
}
|
|
905
|
+
#homepage_banner [class~=ant-carousel] .slick-slide img {
|
|
906
|
+
width: 100%;
|
|
907
|
+
}
|
|
605
908
|
|
|
606
909
|
#popular-destinations {
|
|
607
|
-
margin:
|
|
608
|
-
width: 80%;
|
|
910
|
+
margin-bottom: 30px;
|
|
609
911
|
}
|
|
610
912
|
#popular-destinations h1 {
|
|
611
913
|
font-family: Poppins, san-serif;
|
|
612
|
-
font-size: 45px;
|
|
613
|
-
font-weight: 200;
|
|
614
|
-
line-height: 67.5px;
|
|
615
914
|
text-align: center;
|
|
616
915
|
text-underline-position: from-font;
|
|
617
916
|
text-decoration-skip-ink: none;
|
|
618
917
|
text-transform: uppercase;
|
|
619
918
|
color: #545047;
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
919
|
+
font-size: 24px;
|
|
920
|
+
font-weight: 300;
|
|
921
|
+
line-height: 36px;
|
|
922
|
+
width: 80%;
|
|
923
|
+
margin: 20px auto;
|
|
623
924
|
}
|
|
624
925
|
#popular-destinations .ant-tabs > .ant-tabs-nav {
|
|
625
|
-
|
|
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;
|
|
926
|
+
display: none;
|
|
691
927
|
}
|
|
692
928
|
#popular-destinations .country {
|
|
693
929
|
position: relative;
|
|
@@ -701,16 +937,17 @@ body {
|
|
|
701
937
|
border-width: 5px 0px 5px 0px;
|
|
702
938
|
border-style: solid;
|
|
703
939
|
border-color: #DCB062;
|
|
704
|
-
border-radius: 20px;
|
|
705
940
|
}
|
|
706
941
|
#popular-destinations .country-name {
|
|
707
|
-
width:
|
|
708
|
-
height:
|
|
709
|
-
top:
|
|
710
|
-
left:
|
|
711
|
-
gap: 0px;
|
|
712
|
-
opacity: 0px;
|
|
942
|
+
width: auto;
|
|
943
|
+
height: 42px;
|
|
944
|
+
top: 24px;
|
|
945
|
+
left: 24px;
|
|
713
946
|
position: absolute;
|
|
947
|
+
text-align: left;
|
|
948
|
+
font-size: 28px;
|
|
949
|
+
font-weight: 300;
|
|
950
|
+
line-height: 42px;
|
|
714
951
|
}
|
|
715
952
|
#popular-destinations .country .bottom-logo {
|
|
716
953
|
position: absolute;
|
|
@@ -718,37 +955,33 @@ body {
|
|
|
718
955
|
border-color: #F2F2F2;
|
|
719
956
|
left: 0;
|
|
720
957
|
width: 100%;
|
|
958
|
+
text-align: center;
|
|
721
959
|
}
|
|
722
|
-
#popular-destinations
|
|
960
|
+
#popular-destinations h2 {
|
|
723
961
|
font-family: Poppins, san-serif;
|
|
724
|
-
font-size:
|
|
962
|
+
font-size: 22px;
|
|
725
963
|
font-weight: 600;
|
|
726
|
-
line-height:
|
|
727
|
-
letter-spacing: 0.05em;
|
|
964
|
+
line-height: 33px;
|
|
728
965
|
text-align: left;
|
|
729
966
|
text-underline-position: from-font;
|
|
730
967
|
text-decoration-skip-ink: none;
|
|
731
968
|
}
|
|
732
|
-
#popular-destinations .
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
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;
|
|
969
|
+
#popular-destinations .top-cities,
|
|
970
|
+
#popular-destinations .more-cities,
|
|
971
|
+
#popular-destinations .highlights {
|
|
972
|
+
padding: 10px 25px;
|
|
741
973
|
}
|
|
742
974
|
#popular-destinations .more-cities .other-destinations {
|
|
743
975
|
display: inline-flex;
|
|
976
|
+
flex-wrap: wrap;
|
|
744
977
|
gap: 10px;
|
|
745
978
|
}
|
|
746
979
|
#popular-destinations .more-cities .other-destinations a {
|
|
747
980
|
font-family: Poppins, san-serif;
|
|
748
|
-
font-size:
|
|
981
|
+
font-size: 14px;
|
|
749
982
|
font-weight: 400;
|
|
750
|
-
line-height:
|
|
751
|
-
letter-spacing: 0.
|
|
983
|
+
line-height: 21px;
|
|
984
|
+
letter-spacing: 0.02em;
|
|
752
985
|
text-align: left;
|
|
753
986
|
text-underline-position: from-font;
|
|
754
987
|
text-decoration-skip-ink: none;
|
|
@@ -761,12 +994,18 @@ body {
|
|
|
761
994
|
opacity: 0px;
|
|
762
995
|
}
|
|
763
996
|
#popular-destinations .highlights {
|
|
764
|
-
display:
|
|
765
|
-
|
|
997
|
+
display: inline-flex;
|
|
998
|
+
overflow-x: auto;
|
|
766
999
|
gap: 10px;
|
|
767
|
-
margin-top:
|
|
1000
|
+
margin-top: 20px;
|
|
1001
|
+
width: 100%;
|
|
1002
|
+
}
|
|
1003
|
+
#popular-destinations .highlights a {
|
|
1004
|
+
flex-grow: 1;
|
|
1005
|
+
flex-shrink: 0;
|
|
768
1006
|
}
|
|
769
1007
|
#popular-destinations .highlights .tour {
|
|
1008
|
+
min-width: 210px;
|
|
770
1009
|
height: 352px;
|
|
771
1010
|
padding: 15px 0px 0px 0px;
|
|
772
1011
|
gap: 0px;
|
|
@@ -815,135 +1054,35 @@ body {
|
|
|
815
1054
|
justify-content: flex-end;
|
|
816
1055
|
}
|
|
817
1056
|
|
|
818
|
-
#testimonials {
|
|
819
|
-
|
|
820
|
-
margin: auto;
|
|
821
|
-
padding: 50px 0;
|
|
822
|
-
}
|
|
823
|
-
#testimonials [class~=ant-carousel] .slick-slider {
|
|
824
|
-
padding: 0 70px;
|
|
1057
|
+
#testimonials-section {
|
|
1058
|
+
display: none;
|
|
825
1059
|
}
|
|
826
|
-
|
|
1060
|
+
|
|
1061
|
+
#listing-page_header .location-dropdown {
|
|
827
1062
|
margin: 0;
|
|
828
1063
|
}
|
|
829
|
-
#
|
|
830
|
-
|
|
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;
|
|
1064
|
+
#listing-page_header .location-filter.ant-select {
|
|
1065
|
+
height: auto;
|
|
887
1066
|
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
1067
|
}
|
|
929
|
-
#listing-page_header .
|
|
930
|
-
|
|
931
|
-
border-radius: 30px;
|
|
1068
|
+
#listing-page_header .location-filter.ant-select .ant-select-selector {
|
|
1069
|
+
background: white;
|
|
932
1070
|
height: 36px;
|
|
933
1071
|
}
|
|
934
|
-
#listing-page_header .
|
|
1072
|
+
#listing-page_header .location-filter.ant-select .ant-select-selection-item {
|
|
935
1073
|
font-family: Poppins, san-serif;
|
|
936
|
-
font-
|
|
1074
|
+
font-family: Poppins;
|
|
937
1075
|
font-weight: 500;
|
|
938
|
-
|
|
939
|
-
|
|
1076
|
+
font-size: 16px;
|
|
1077
|
+
line-height: 24px;
|
|
1078
|
+
letter-spacing: 5%;
|
|
940
1079
|
text-align: left;
|
|
941
1080
|
text-underline-position: from-font;
|
|
942
1081
|
text-decoration-skip-ink: none;
|
|
943
1082
|
color: #836848;
|
|
944
1083
|
text-transform: uppercase;
|
|
945
1084
|
}
|
|
946
|
-
#listing-page_header .
|
|
1085
|
+
#listing-page_header .location-filter.ant-select .ant-select-arrow {
|
|
947
1086
|
inset-inline-end: 20px;
|
|
948
1087
|
color: #836848;
|
|
949
1088
|
}
|
|
@@ -968,14 +1107,17 @@ body {
|
|
|
968
1107
|
text-underline-position: from-font;
|
|
969
1108
|
text-decoration-skip-ink: none;
|
|
970
1109
|
}
|
|
1110
|
+
#listing-page #tours .tour {
|
|
1111
|
+
flex-direction: column;
|
|
1112
|
+
}
|
|
971
1113
|
#listing-page #tours .tour_image {
|
|
972
1114
|
height: 100%;
|
|
973
1115
|
}
|
|
974
1116
|
#listing-page #tours .tour_image img {
|
|
975
|
-
width:
|
|
1117
|
+
width: 100%;
|
|
976
1118
|
height: 100%;
|
|
977
1119
|
border-top-left-radius: 20px;
|
|
978
|
-
border-
|
|
1120
|
+
border-top-right-radius: 20px;
|
|
979
1121
|
}
|
|
980
1122
|
#listing-page #tours .tour_details {
|
|
981
1123
|
padding: 20px;
|
|
@@ -994,7 +1136,8 @@ body {
|
|
|
994
1136
|
text-align: left;
|
|
995
1137
|
text-underline-position: from-font;
|
|
996
1138
|
text-decoration-skip-ink: none;
|
|
997
|
-
max-width:
|
|
1139
|
+
max-width: calc(100% - 30px);
|
|
1140
|
+
overflow-wrap: anywhere;
|
|
998
1141
|
}
|
|
999
1142
|
#listing-page #tours .tour_details_subtitle {
|
|
1000
1143
|
font-family: Poppins, san-serif;
|
|
@@ -1046,18 +1189,29 @@ body {
|
|
|
1046
1189
|
text-decoration-skip-ink: none;
|
|
1047
1190
|
color: #434039;
|
|
1048
1191
|
}
|
|
1192
|
+
#listing-page #tours .tour_details_dates .date-selector {
|
|
1193
|
+
justify-content: center;
|
|
1194
|
+
}
|
|
1049
1195
|
#listing-page #tours .tour_pricing {
|
|
1050
1196
|
background-color: #DCB062;
|
|
1051
1197
|
padding: 20px;
|
|
1052
|
-
border-
|
|
1198
|
+
border-bottom-left-radius: 20px;
|
|
1053
1199
|
border-bottom-right-radius: 20px;
|
|
1054
1200
|
height: 100%;
|
|
1055
1201
|
}
|
|
1202
|
+
#listing-page #tours .tour_pricing_details {
|
|
1203
|
+
align-items: baseline;
|
|
1204
|
+
justify-content: center;
|
|
1205
|
+
gap: 10px;
|
|
1206
|
+
}
|
|
1056
1207
|
#listing-page #tours .tour_pricing > .ant-space {
|
|
1057
1208
|
height: 100%;
|
|
1058
1209
|
width: 100%;
|
|
1059
1210
|
justify-content: center;
|
|
1060
1211
|
}
|
|
1212
|
+
#listing-page #tours .tour_pricing .ant-space-item {
|
|
1213
|
+
width: 100%;
|
|
1214
|
+
}
|
|
1061
1215
|
#listing-page #tours .tour_pricing span {
|
|
1062
1216
|
font-family: Poppins, san-serif;
|
|
1063
1217
|
font-size: 15px;
|
|
@@ -1087,6 +1241,14 @@ body {
|
|
|
1087
1241
|
text-decoration-skip-ink: none;
|
|
1088
1242
|
color: #DCB062;
|
|
1089
1243
|
background-color: #FFFFFF;
|
|
1244
|
+
display: block;
|
|
1245
|
+
width: 100%;
|
|
1246
|
+
}
|
|
1247
|
+
#listing-page #no-tours-found {
|
|
1248
|
+
font-family: Poppins, san-serif;
|
|
1249
|
+
font-weight: 400;
|
|
1250
|
+
text-align: center;
|
|
1251
|
+
color: rgba(0, 0, 12, 0.6);
|
|
1090
1252
|
}
|
|
1091
1253
|
|
|
1092
1254
|
.tour_details_description.ant-modal .ant-modal-title {
|
|
@@ -1105,6 +1267,11 @@ body {
|
|
|
1105
1267
|
max-height: 500px;
|
|
1106
1268
|
}
|
|
1107
1269
|
|
|
1270
|
+
.tour_details_itinerary.ant-modal #itinerary-file img {
|
|
1271
|
+
width: 100%;
|
|
1272
|
+
object-fit: contain;
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1108
1275
|
.tour_details_all_dates.ant-modal .ant-modal-title {
|
|
1109
1276
|
padding-right: 30px;
|
|
1110
1277
|
}
|
|
@@ -1165,15 +1332,15 @@ body {
|
|
|
1165
1332
|
}
|
|
1166
1333
|
|
|
1167
1334
|
* {
|
|
1168
|
-
--side-padding:
|
|
1335
|
+
--side-padding: 20px;
|
|
1169
1336
|
}
|
|
1170
1337
|
|
|
1171
1338
|
#show-page_header h1 {
|
|
1172
|
-
font-size:
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
letter-spacing: 0.05em;
|
|
1339
|
+
font-size: 18px;
|
|
1340
|
+
line-height: 27px;
|
|
1341
|
+
letter-spacing: 0%;
|
|
1176
1342
|
text-align: left;
|
|
1343
|
+
overflow-wrap: anywhere;
|
|
1177
1344
|
}
|
|
1178
1345
|
#show-page_header .tour_details {
|
|
1179
1346
|
display: inline-flex;
|
|
@@ -1285,7 +1452,7 @@ body {
|
|
|
1285
1452
|
border-radius: 5px;
|
|
1286
1453
|
background: #F9F6F3;
|
|
1287
1454
|
display: grid;
|
|
1288
|
-
grid-template-columns: repeat(
|
|
1455
|
+
grid-template-columns: repeat(2, 1fr);
|
|
1289
1456
|
justify-content: center;
|
|
1290
1457
|
text-align: center;
|
|
1291
1458
|
gap: 20px;
|
|
@@ -1309,6 +1476,39 @@ body {
|
|
|
1309
1476
|
#show-page_body .details-container_content #things-to-know .item.guaranteed {
|
|
1310
1477
|
color: #DCB062;
|
|
1311
1478
|
}
|
|
1479
|
+
#show-page_body .details-container_content #description {
|
|
1480
|
+
position: relative;
|
|
1481
|
+
transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
1482
|
+
}
|
|
1483
|
+
#show-page_body .details-container_content #description + button {
|
|
1484
|
+
margin-top: 10px;
|
|
1485
|
+
font-family: Poppins, san-serif;
|
|
1486
|
+
font-weight: 500;
|
|
1487
|
+
font-size: 14px;
|
|
1488
|
+
line-height: 21px;
|
|
1489
|
+
letter-spacing: 5%;
|
|
1490
|
+
text-align: right;
|
|
1491
|
+
color: #545047;
|
|
1492
|
+
}
|
|
1493
|
+
#show-page_body .details-container_content #description.collapsed {
|
|
1494
|
+
height: 300px;
|
|
1495
|
+
overflow: hidden;
|
|
1496
|
+
}
|
|
1497
|
+
#show-page_body .details-container_content #description.collapsed::after {
|
|
1498
|
+
content: "";
|
|
1499
|
+
position: absolute;
|
|
1500
|
+
z-index: 1;
|
|
1501
|
+
bottom: 0;
|
|
1502
|
+
left: 0;
|
|
1503
|
+
pointer-events: none;
|
|
1504
|
+
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255) 90%);
|
|
1505
|
+
width: 100%;
|
|
1506
|
+
height: 5em;
|
|
1507
|
+
transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
1508
|
+
}
|
|
1509
|
+
#show-page_body .details-container_content #description.collapsed + button {
|
|
1510
|
+
margin-top: 0px;
|
|
1511
|
+
}
|
|
1312
1512
|
#show-page_body .details-container_content .schedule {
|
|
1313
1513
|
padding: 20px;
|
|
1314
1514
|
gap: 32px;
|
|
@@ -1317,6 +1517,12 @@ body {
|
|
|
1317
1517
|
display: inline-flex;
|
|
1318
1518
|
align-items: center;
|
|
1319
1519
|
justify-content: space-between;
|
|
1520
|
+
flex-direction: column;
|
|
1521
|
+
text-align: center;
|
|
1522
|
+
}
|
|
1523
|
+
#show-page_body .details-container_content .schedule .flight-date {
|
|
1524
|
+
width: 100%;
|
|
1525
|
+
text-align: left;
|
|
1320
1526
|
}
|
|
1321
1527
|
#show-page_body .details-container_content .schedule .flight-date svg {
|
|
1322
1528
|
vertical-align: middle;
|
|
@@ -1371,12 +1577,6 @@ body {
|
|
|
1371
1577
|
flex-direction: column;
|
|
1372
1578
|
gap: 8px;
|
|
1373
1579
|
}
|
|
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
1580
|
#show-page_body .details-container_content .schedule .flight-time label {
|
|
1381
1581
|
font-family: Poppins, san-serif;
|
|
1382
1582
|
font-size: 15px;
|
|
@@ -1393,11 +1593,28 @@ body {
|
|
|
1393
1593
|
font-size: 12px;
|
|
1394
1594
|
font-weight: 300;
|
|
1395
1595
|
line-height: 18px;
|
|
1396
|
-
text-align: center;
|
|
1397
1596
|
text-underline-position: from-font;
|
|
1398
1597
|
text-decoration-skip-ink: none;
|
|
1399
1598
|
color: rgba(91, 71, 19, 0.7);
|
|
1400
1599
|
}
|
|
1600
|
+
#show-page_body .details-container_content .schedule .flight-time .from {
|
|
1601
|
+
align-items: flex-end;
|
|
1602
|
+
}
|
|
1603
|
+
#show-page_body .details-container_content .schedule .flight-time .from span {
|
|
1604
|
+
text-align: right;
|
|
1605
|
+
}
|
|
1606
|
+
#show-page_body .details-container_content .schedule .flight-time .to {
|
|
1607
|
+
align-items: flex-start;
|
|
1608
|
+
}
|
|
1609
|
+
#show-page_body .details-container_content .schedule .flight-time .to span {
|
|
1610
|
+
text-align: left;
|
|
1611
|
+
}
|
|
1612
|
+
#show-page_body .details-container_content .schedule .flight-time_icon {
|
|
1613
|
+
width: 53px;
|
|
1614
|
+
}
|
|
1615
|
+
#show-page_body .details-container_content .schedule .flight-time_icon img {
|
|
1616
|
+
vertical-align: middle;
|
|
1617
|
+
}
|
|
1401
1618
|
#show-page_body .details-container_content .schedule .flight-time_icon::before, #show-page_body .details-container_content .schedule .flight-time_icon::after {
|
|
1402
1619
|
/* Styles kept */
|
|
1403
1620
|
width: 25%;
|
|
@@ -1409,64 +1626,85 @@ body {
|
|
|
1409
1626
|
content: "";
|
|
1410
1627
|
/* Use padding to vertical align the line */
|
|
1411
1628
|
/* Use padding in em for a responsive icon height */
|
|
1412
|
-
padding-top: 0.
|
|
1629
|
+
padding-top: 0.2em;
|
|
1413
1630
|
/* Use margins to give the lines some spacement around the icon */
|
|
1414
1631
|
/* Use margins in % for a responsive spacement */
|
|
1415
1632
|
margin-left: 5%;
|
|
1416
1633
|
margin-right: 5%;
|
|
1417
1634
|
}
|
|
1418
|
-
#show-page_body .details-container_content
|
|
1419
|
-
width: 100%;
|
|
1420
|
-
border-spacing: 5px 0;
|
|
1421
|
-
}
|
|
1422
|
-
#show-page_body .details-container_content #pricing-table .super-promo {
|
|
1635
|
+
#show-page_body .details-container_content .super-promo {
|
|
1423
1636
|
background: rgb(249, 226, 152);
|
|
1424
1637
|
}
|
|
1425
|
-
#show-page_body .details-container_content
|
|
1638
|
+
#show-page_body .details-container_content .promo1 {
|
|
1426
1639
|
background: rgb(249, 246, 243);
|
|
1427
1640
|
}
|
|
1428
|
-
#show-page_body .details-container_content
|
|
1641
|
+
#show-page_body .details-container_content .normal {
|
|
1429
1642
|
background: rgb(245, 245, 245);
|
|
1430
1643
|
}
|
|
1431
|
-
#show-page_body .details-container_content #pricing-table
|
|
1432
|
-
|
|
1433
|
-
|
|
1644
|
+
#show-page_body .details-container_content #pricing-table {
|
|
1645
|
+
display: none;
|
|
1646
|
+
}
|
|
1647
|
+
#show-page_body .details-container_content #pricing-list .ant-card .ant-card-body {
|
|
1648
|
+
padding: 10px 15px;
|
|
1649
|
+
}
|
|
1650
|
+
#show-page_body .details-container_content #pricing-list .pricing-header {
|
|
1434
1651
|
font-family: Poppins, san-serif;
|
|
1652
|
+
font-weight: 600;
|
|
1435
1653
|
font-size: 14px;
|
|
1436
|
-
font-weight: 700;
|
|
1437
1654
|
line-height: 21px;
|
|
1438
|
-
letter-spacing:
|
|
1439
|
-
text-align: center;
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1655
|
+
letter-spacing: 2%;
|
|
1656
|
+
text-align: center;
|
|
1657
|
+
color: #836848;
|
|
1658
|
+
margin-bottom: 10px;
|
|
1659
|
+
text-transform: capitalize;
|
|
1660
|
+
}
|
|
1661
|
+
#show-page_body .details-container_content #pricing-list .pricing-body .pricing {
|
|
1662
|
+
display: flex;
|
|
1663
|
+
justify-content: space-between;
|
|
1664
|
+
color: #545047;
|
|
1444
1665
|
}
|
|
1445
|
-
#show-page_body .details-container_content #pricing-
|
|
1666
|
+
#show-page_body .details-container_content #pricing-list .pricing-body .pricing .category {
|
|
1446
1667
|
font-family: Poppins, san-serif;
|
|
1447
|
-
font-
|
|
1668
|
+
font-weight: 400;
|
|
1669
|
+
font-size: 12px;
|
|
1670
|
+
line-height: 18px;
|
|
1671
|
+
letter-spacing: 5%;
|
|
1672
|
+
}
|
|
1673
|
+
#show-page_body .details-container_content #pricing-list .pricing-body .pricing .price {
|
|
1674
|
+
font-family: Poppins;
|
|
1448
1675
|
font-weight: 500;
|
|
1676
|
+
font-size: 14px;
|
|
1449
1677
|
line-height: 21px;
|
|
1450
|
-
letter-spacing:
|
|
1678
|
+
letter-spacing: 5%;
|
|
1451
1679
|
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
1680
|
}
|
|
1458
|
-
#show-page_body .
|
|
1459
|
-
|
|
1460
|
-
|
|
1681
|
+
#show-page_body .toggle_contact-agent {
|
|
1682
|
+
cursor: pointer;
|
|
1683
|
+
border-bottom-left-radius: 20px;
|
|
1684
|
+
border-top-left-radius: 20px;
|
|
1685
|
+
color: #FFFFFF;
|
|
1686
|
+
background-color: #836848;
|
|
1687
|
+
font-size: 12px;
|
|
1688
|
+
line-height: 18px;
|
|
1689
|
+
letter-spacing: 5%;
|
|
1690
|
+
padding: 11px 15px 11px 15px;
|
|
1691
|
+
width: 135px;
|
|
1692
|
+
position: absolute;
|
|
1693
|
+
right: 0;
|
|
1461
1694
|
}
|
|
1462
|
-
#show-page_body .
|
|
1463
|
-
|
|
1464
|
-
|
|
1695
|
+
#show-page_body .contact-agent-sider {
|
|
1696
|
+
position: fixed;
|
|
1697
|
+
z-index: 1;
|
|
1698
|
+
right: 0;
|
|
1699
|
+
top: 110px;
|
|
1465
1700
|
}
|
|
1466
1701
|
#show-page_body .contact-agent {
|
|
1467
1702
|
height: auto;
|
|
1468
|
-
border-radius: 20px;
|
|
1469
1703
|
background: #FFFFFF;
|
|
1704
|
+
border-radius: 20px;
|
|
1705
|
+
border-bottom-right-radius: 0;
|
|
1706
|
+
border-top-right-radius: 0;
|
|
1707
|
+
display: none;
|
|
1470
1708
|
}
|
|
1471
1709
|
#show-page_body .contact-agent_header {
|
|
1472
1710
|
background-color: #F9E298;
|
|
@@ -1483,6 +1721,9 @@ body {
|
|
|
1483
1721
|
border-radius: inherit;
|
|
1484
1722
|
border-bottom-left-radius: 0;
|
|
1485
1723
|
border-bottom-right-radius: 0;
|
|
1724
|
+
display: flex;
|
|
1725
|
+
align-items: center;
|
|
1726
|
+
justify-content: space-between;
|
|
1486
1727
|
}
|
|
1487
1728
|
#show-page_body .contact-agent_content {
|
|
1488
1729
|
padding: 10px 15px 15px 15px;
|
|
@@ -1513,11 +1754,29 @@ body {
|
|
|
1513
1754
|
display: inline-flex;
|
|
1514
1755
|
gap: 2px;
|
|
1515
1756
|
}
|
|
1757
|
+
#show-page_body .show-contact-agent-mobile .toggle_contact-agent {
|
|
1758
|
+
display: none;
|
|
1759
|
+
}
|
|
1760
|
+
#show-page_body .show-contact-agent-mobile .contact-agent {
|
|
1761
|
+
display: block;
|
|
1762
|
+
}
|
|
1516
1763
|
|
|
1764
|
+
.agent-full-contact-details .ant-modal-title img {
|
|
1765
|
+
height: 40px;
|
|
1766
|
+
object-fit: cover;
|
|
1767
|
+
}
|
|
1517
1768
|
.agent-full-contact-details .contact-details {
|
|
1518
1769
|
padding: 15px 10px 15px 10px;
|
|
1519
1770
|
background: rgb(245, 245, 245);
|
|
1520
1771
|
}
|
|
1772
|
+
.agent-full-contact-details .contact-details h2 {
|
|
1773
|
+
font-family: Poppins, san-serif;
|
|
1774
|
+
font-weight: 600;
|
|
1775
|
+
font-size: 16px;
|
|
1776
|
+
line-height: 24px;
|
|
1777
|
+
letter-spacing: 3%;
|
|
1778
|
+
color: rgba(0, 0, 0, 0.8);
|
|
1779
|
+
}
|
|
1521
1780
|
.agent-full-contact-details .contact-details svg {
|
|
1522
1781
|
color: rgb(170, 133, 62);
|
|
1523
1782
|
background: rgb(255, 255, 255);
|
|
@@ -1540,21 +1799,13 @@ body {
|
|
|
1540
1799
|
|
|
1541
1800
|
#about-signature-tours {
|
|
1542
1801
|
height: 100%;
|
|
1543
|
-
|
|
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;
|
|
1802
|
+
padding: 45px;
|
|
1552
1803
|
}
|
|
1553
1804
|
#about-signature-tours h1 {
|
|
1554
1805
|
font-family: Poppins, san-serif;
|
|
1555
|
-
font-size:
|
|
1556
|
-
font-weight:
|
|
1557
|
-
line-height:
|
|
1806
|
+
font-size: 24px;
|
|
1807
|
+
font-weight: 300;
|
|
1808
|
+
line-height: 36px;
|
|
1558
1809
|
letter-spacing: 0.06em;
|
|
1559
1810
|
text-align: center;
|
|
1560
1811
|
text-underline-position: from-font;
|
|
@@ -1563,10 +1814,10 @@ body {
|
|
|
1563
1814
|
}
|
|
1564
1815
|
#about-signature-tours p {
|
|
1565
1816
|
font-family: Poppins, san-serif;
|
|
1566
|
-
font-size:
|
|
1567
|
-
font-weight:
|
|
1568
|
-
line-height:
|
|
1569
|
-
letter-spacing: 0.
|
|
1817
|
+
font-size: 14px;
|
|
1818
|
+
font-weight: 300;
|
|
1819
|
+
line-height: 24px;
|
|
1820
|
+
letter-spacing: 0.03em;
|
|
1570
1821
|
text-align: left;
|
|
1571
1822
|
text-underline-position: from-font;
|
|
1572
1823
|
text-decoration-skip-ink: none;
|
|
@@ -1574,13 +1825,7 @@ body {
|
|
|
1574
1825
|
margin: 20px 0;
|
|
1575
1826
|
display: block;
|
|
1576
1827
|
}
|
|
1577
|
-
#about-signature-tours #about-st-feature {
|
|
1578
|
-
display: flex;
|
|
1579
|
-
align-items: center;
|
|
1580
|
-
justify-content: space-between;
|
|
1581
|
-
}
|
|
1582
1828
|
#about-signature-tours #about-st-feature #feature {
|
|
1583
|
-
width: 419px;
|
|
1584
1829
|
height: 246px;
|
|
1585
1830
|
gap: 0px;
|
|
1586
1831
|
border-radius: 20px;
|
|
@@ -1589,7 +1834,7 @@ body {
|
|
|
1589
1834
|
box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
|
|
1590
1835
|
}
|
|
1591
1836
|
#about-signature-tours #about-st-feature #feature > img {
|
|
1592
|
-
width:
|
|
1837
|
+
width: 100%;
|
|
1593
1838
|
height: 183.24px;
|
|
1594
1839
|
gap: 0px;
|
|
1595
1840
|
border-radius: 20px;
|
|
@@ -1635,7 +1880,7 @@ body {
|
|
|
1635
1880
|
font-size: 24px;
|
|
1636
1881
|
font-weight: 500;
|
|
1637
1882
|
line-height: 36px;
|
|
1638
|
-
text-align:
|
|
1883
|
+
text-align: center;
|
|
1639
1884
|
text-underline-position: from-font;
|
|
1640
1885
|
text-decoration-skip-ink: none;
|
|
1641
1886
|
}
|
|
@@ -1661,10 +1906,6 @@ body {
|
|
|
1661
1906
|
text-decoration-skip-ink: none;
|
|
1662
1907
|
color: #000000;
|
|
1663
1908
|
}
|
|
1664
|
-
#about-us-page .section-header {
|
|
1665
|
-
width: 741px;
|
|
1666
|
-
margin: auto;
|
|
1667
|
-
}
|
|
1668
1909
|
#about-us-page .section-header h2 {
|
|
1669
1910
|
font-family: Poppins, san-serif;
|
|
1670
1911
|
font-size: 24px;
|
|
@@ -1712,14 +1953,20 @@ body {
|
|
|
1712
1953
|
text-decoration-skip-ink: none;
|
|
1713
1954
|
}
|
|
1714
1955
|
#about-us-page #quality-policy {
|
|
1715
|
-
padding:
|
|
1956
|
+
padding: 60px var(--side-padding) 30px;
|
|
1716
1957
|
margin-top: -70px;
|
|
1958
|
+
margin-left: 0 !important;
|
|
1959
|
+
margin-right: 0 !important;
|
|
1717
1960
|
}
|
|
1718
1961
|
#about-us-page #certificates {
|
|
1719
1962
|
background: linear-gradient(180deg, #F7F4EB 0%, #FFFFFF 100%);
|
|
1720
|
-
padding:
|
|
1963
|
+
padding: 0 var(--side-padding) 30px;
|
|
1964
|
+
}
|
|
1965
|
+
#about-us-page #certificates .ant-col {
|
|
1966
|
+
text-align: center;
|
|
1721
1967
|
}
|
|
1722
1968
|
#about-us-page #certificates img {
|
|
1969
|
+
margin: auto;
|
|
1723
1970
|
width: 263px;
|
|
1724
1971
|
height: 365px;
|
|
1725
1972
|
box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1019607843);
|
|
@@ -1857,6 +2104,124 @@ body {
|
|
|
1857
2104
|
color: #DCB062;
|
|
1858
2105
|
}
|
|
1859
2106
|
|
|
2107
|
+
#contact-agents-page_body {
|
|
2108
|
+
margin: 20px var(--side-padding);
|
|
2109
|
+
}
|
|
2110
|
+
#contact-agents-page_body #find-agents_header {
|
|
2111
|
+
width: 171px;
|
|
2112
|
+
height: 45px;
|
|
2113
|
+
margin: auto;
|
|
2114
|
+
padding-top: 11px;
|
|
2115
|
+
padding-right: 32px;
|
|
2116
|
+
padding-bottom: 11px;
|
|
2117
|
+
padding-left: 32px;
|
|
2118
|
+
gap: 10px;
|
|
2119
|
+
border-top-left-radius: 20px;
|
|
2120
|
+
border-top-right-radius: 20px;
|
|
2121
|
+
border-top-width: 1px;
|
|
2122
|
+
border-right-width: 1px;
|
|
2123
|
+
border-left-width: 1px;
|
|
2124
|
+
background: #F9E298;
|
|
2125
|
+
}
|
|
2126
|
+
#contact-agents-page_body #find-agents_header span {
|
|
2127
|
+
font-family: Poppins, san-serif;
|
|
2128
|
+
font-weight: 400;
|
|
2129
|
+
font-size: 15px;
|
|
2130
|
+
line-height: 22.5px;
|
|
2131
|
+
letter-spacing: 5%;
|
|
2132
|
+
text-align: center;
|
|
2133
|
+
color: #545047;
|
|
2134
|
+
}
|
|
2135
|
+
#contact-agents-page_body #find-agents_form {
|
|
2136
|
+
border-radius: 20px;
|
|
2137
|
+
padding-top: 33px;
|
|
2138
|
+
padding-right: 40px;
|
|
2139
|
+
padding-bottom: 33px;
|
|
2140
|
+
padding-left: 40px;
|
|
2141
|
+
gap: 10px;
|
|
2142
|
+
background: #FFFFFF;
|
|
2143
|
+
box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
|
|
2144
|
+
}
|
|
2145
|
+
#contact-agents-page_body #find-agents_form .find-button {
|
|
2146
|
+
width: 100%;
|
|
2147
|
+
}
|
|
2148
|
+
#contact-agents-page_body #agents-list {
|
|
2149
|
+
margin: 40px 0;
|
|
2150
|
+
}
|
|
2151
|
+
#contact-agents-page_body #agents-list img {
|
|
2152
|
+
height: 265;
|
|
2153
|
+
object-fit: cover;
|
|
2154
|
+
}
|
|
2155
|
+
#contact-agents-page_body #agents-list svg {
|
|
2156
|
+
vertical-align: middle;
|
|
2157
|
+
color: #000000;
|
|
2158
|
+
margin-right: 10px;
|
|
2159
|
+
}
|
|
2160
|
+
#contact-agents-page_body #agents-list span {
|
|
2161
|
+
font-family: Poppins, san-serif;
|
|
2162
|
+
font-weight: 400;
|
|
2163
|
+
font-size: 14px;
|
|
2164
|
+
line-height: 24px;
|
|
2165
|
+
letter-spacing: 0%;
|
|
2166
|
+
color: #959492;
|
|
2167
|
+
}
|
|
2168
|
+
#contact-agents-page_body #agents-list .ant-card-meta-title {
|
|
2169
|
+
font-family: Poppins;
|
|
2170
|
+
font-weight: 500;
|
|
2171
|
+
font-size: 16px;
|
|
2172
|
+
line-height: 24px;
|
|
2173
|
+
letter-spacing: 0.05em;
|
|
2174
|
+
}
|
|
2175
|
+
#contact-agents-page_body #agents-list .more-info-button {
|
|
2176
|
+
width: 225px;
|
|
2177
|
+
margin: 20px auto 0;
|
|
2178
|
+
display: block;
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
.agent-full-details .ant-modal-title {
|
|
2182
|
+
display: flex;
|
|
2183
|
+
align-items: center;
|
|
2184
|
+
justify-content: center;
|
|
2185
|
+
gap: 10px;
|
|
2186
|
+
}
|
|
2187
|
+
.agent-full-details .ant-modal-title img {
|
|
2188
|
+
height: 120px;
|
|
2189
|
+
object-fit: cover;
|
|
2190
|
+
}
|
|
2191
|
+
.agent-full-details .ant-modal-title span {
|
|
2192
|
+
font-family: Poppins, san-serif;
|
|
2193
|
+
font-weight: 500;
|
|
2194
|
+
font-size: 20px;
|
|
2195
|
+
line-height: 24px;
|
|
2196
|
+
letter-spacing: 0%;
|
|
2197
|
+
}
|
|
2198
|
+
.agent-full-details .ant-modal-body {
|
|
2199
|
+
margin: 20px -24px;
|
|
2200
|
+
background: #FAFAFA;
|
|
2201
|
+
height: 100%;
|
|
2202
|
+
}
|
|
2203
|
+
.agent-full-details .ant-modal-body .ant-row {
|
|
2204
|
+
width: 100%;
|
|
2205
|
+
margin: 0 !important;
|
|
2206
|
+
padding: 20px;
|
|
2207
|
+
}
|
|
2208
|
+
.agent-full-details .ant-modal-body .ant-row label {
|
|
2209
|
+
font-family: Poppins, san-serif;
|
|
2210
|
+
font-weight: 600;
|
|
2211
|
+
font-size: 14px;
|
|
2212
|
+
line-height: 21px;
|
|
2213
|
+
letter-spacing: 0%;
|
|
2214
|
+
color: #836848;
|
|
2215
|
+
}
|
|
2216
|
+
.agent-full-details .ant-modal-body .ant-row span {
|
|
2217
|
+
font-family: Poppins, san-serif;
|
|
2218
|
+
font-weight: 400;
|
|
2219
|
+
font-size: 14px;
|
|
2220
|
+
line-height: 24px;
|
|
2221
|
+
letter-spacing: 0%;
|
|
2222
|
+
color: #545047;
|
|
2223
|
+
}
|
|
2224
|
+
|
|
1860
2225
|
#blog-page_body {
|
|
1861
2226
|
margin: 20px var(--side-padding);
|
|
1862
2227
|
}
|
|
@@ -1871,3 +2236,410 @@ body {
|
|
|
1871
2236
|
background: rgb(255, 255, 255);
|
|
1872
2237
|
box-shadow: 0px 5px 20px 0px rgba(225, 182, 91, 0.2);
|
|
1873
2238
|
}
|
|
2239
|
+
|
|
2240
|
+
@media only screen and (min-width: 769px) {
|
|
2241
|
+
* {
|
|
2242
|
+
--side-padding: 10%;
|
|
2243
|
+
}
|
|
2244
|
+
#popular-destinations {
|
|
2245
|
+
margin: auto;
|
|
2246
|
+
width: 80%;
|
|
2247
|
+
}
|
|
2248
|
+
#popular-destinations h1 {
|
|
2249
|
+
font-size: 45px;
|
|
2250
|
+
font-weight: 200;
|
|
2251
|
+
line-height: 67.5px;
|
|
2252
|
+
width: 100%;
|
|
2253
|
+
margin: 50px 0;
|
|
2254
|
+
}
|
|
2255
|
+
#popular-destinations .location-dropdown {
|
|
2256
|
+
display: none;
|
|
2257
|
+
}
|
|
2258
|
+
#popular-destinations .ant-tabs .ant-tabs-content-holder {
|
|
2259
|
+
margin-top: -2px;
|
|
2260
|
+
}
|
|
2261
|
+
#popular-destinations .ant-tabs > .ant-tabs-nav {
|
|
2262
|
+
display: flex;
|
|
2263
|
+
margin: 0;
|
|
2264
|
+
}
|
|
2265
|
+
#popular-destinations .ant-tabs-nav {
|
|
2266
|
+
width: 100% !important;
|
|
2267
|
+
}
|
|
2268
|
+
#popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab {
|
|
2269
|
+
display: block;
|
|
2270
|
+
text-align: center;
|
|
2271
|
+
justify-content: center;
|
|
2272
|
+
background: transparent;
|
|
2273
|
+
margin-left: 30px;
|
|
2274
|
+
padding: 0;
|
|
2275
|
+
}
|
|
2276
|
+
#popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab {
|
|
2277
|
+
margin: 0;
|
|
2278
|
+
}
|
|
2279
|
+
#popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-btn {
|
|
2280
|
+
text-transform: uppercase;
|
|
2281
|
+
font-family: Poppins, san-serif;
|
|
2282
|
+
font-size: 20px;
|
|
2283
|
+
font-weight: 400;
|
|
2284
|
+
line-height: 30px;
|
|
2285
|
+
letter-spacing: 0.05em;
|
|
2286
|
+
text-align: center;
|
|
2287
|
+
text-underline-position: from-font;
|
|
2288
|
+
text-decoration-skip-ink: none;
|
|
2289
|
+
color: #DCB062;
|
|
2290
|
+
position: relative;
|
|
2291
|
+
margin: 0 5px;
|
|
2292
|
+
padding: 8px 20px;
|
|
2293
|
+
background: #FAFAFA;
|
|
2294
|
+
border-radius: 20px 20px 0 0;
|
|
2295
|
+
}
|
|
2296
|
+
#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 {
|
|
2297
|
+
content: " ";
|
|
2298
|
+
position: absolute;
|
|
2299
|
+
top: 0;
|
|
2300
|
+
width: 23px;
|
|
2301
|
+
height: 100%;
|
|
2302
|
+
background-color: inherit;
|
|
2303
|
+
}
|
|
2304
|
+
#popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-btn:before {
|
|
2305
|
+
border-radius: 12px 0 0 0;
|
|
2306
|
+
transform: skew(-24deg);
|
|
2307
|
+
left: -13px;
|
|
2308
|
+
}
|
|
2309
|
+
#popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-btn:after {
|
|
2310
|
+
border-radius: 0 12px 0 0;
|
|
2311
|
+
transform: skew(24deg);
|
|
2312
|
+
right: -13px; /* play with this one to give the LI border ~2px extrusion */
|
|
2313
|
+
border-right: 1px solid #EBEBEB;
|
|
2314
|
+
z-index: 1; /* overlap next element */
|
|
2315
|
+
}
|
|
2316
|
+
#popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab.ant-tabs-tab-active {
|
|
2317
|
+
z-index: 1;
|
|
2318
|
+
}
|
|
2319
|
+
#popular-destinations .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
|
|
2320
|
+
background: linear-gradient(180deg, #F9E298 -1.58%, #DCB062 92.51%);
|
|
2321
|
+
color: white !important;
|
|
2322
|
+
}
|
|
2323
|
+
#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 {
|
|
2324
|
+
background: linear-gradient(180deg, #F9E298 -1.58%, #DCB062 92.51%);
|
|
2325
|
+
}
|
|
2326
|
+
#popular-destinations .ant-tabs-nav > div:nth-of-type(1) {
|
|
2327
|
+
display: unset !important;
|
|
2328
|
+
width: 100% !important;
|
|
2329
|
+
}
|
|
2330
|
+
#popular-destinations .country-image {
|
|
2331
|
+
border-radius: 20px;
|
|
2332
|
+
}
|
|
2333
|
+
#popular-destinations .country-name {
|
|
2334
|
+
width: auto;
|
|
2335
|
+
height: 71px;
|
|
2336
|
+
top: 64px;
|
|
2337
|
+
left: 62px;
|
|
2338
|
+
font-size: 47px;
|
|
2339
|
+
font-weight: 400;
|
|
2340
|
+
line-height: 70.5px;
|
|
2341
|
+
}
|
|
2342
|
+
#popular-destinations h2 {
|
|
2343
|
+
font-size: 30px;
|
|
2344
|
+
font-weight: 600;
|
|
2345
|
+
line-height: 45px;
|
|
2346
|
+
letter-spacing: 0.05em;
|
|
2347
|
+
}
|
|
2348
|
+
#popular-destinations .top-cities,
|
|
2349
|
+
#popular-destinations .more-cities,
|
|
2350
|
+
#popular-destinations .highlights {
|
|
2351
|
+
padding: unset;
|
|
2352
|
+
}
|
|
2353
|
+
#popular-destinations .more-cities .other-destinations a {
|
|
2354
|
+
font-size: 18px;
|
|
2355
|
+
font-weight: 400;
|
|
2356
|
+
line-height: 27px;
|
|
2357
|
+
letter-spacing: 0.05em;
|
|
2358
|
+
}
|
|
2359
|
+
#testimonials-section {
|
|
2360
|
+
display: block;
|
|
2361
|
+
}
|
|
2362
|
+
#testimonials-section #testimonials {
|
|
2363
|
+
max-width: 1099px;
|
|
2364
|
+
margin: auto;
|
|
2365
|
+
padding: 50px 0;
|
|
2366
|
+
}
|
|
2367
|
+
#testimonials-section #testimonials [class~=ant-carousel] .slick-slider {
|
|
2368
|
+
padding: 0 70px;
|
|
2369
|
+
}
|
|
2370
|
+
#testimonials-section #testimonials [class~=ant-carousel] .slick-list {
|
|
2371
|
+
margin: 0;
|
|
2372
|
+
}
|
|
2373
|
+
#testimonials-section #testimonials [class~=ant-carousel] .slick-track {
|
|
2374
|
+
margin: auto;
|
|
2375
|
+
}
|
|
2376
|
+
#testimonials-section #testimonials [class~=ant-carousel] .slick-slide > div {
|
|
2377
|
+
padding: 20px 15px;
|
|
2378
|
+
}
|
|
2379
|
+
#testimonials-section #testimonials [class~=ant-carousel] .slick-prev,
|
|
2380
|
+
#testimonials-section #testimonials [class~=ant-carousel] .slick-next {
|
|
2381
|
+
color: #959492;
|
|
2382
|
+
}
|
|
2383
|
+
#testimonials-section #testimonials [class~=ant-carousel] .slick-prev:hover,
|
|
2384
|
+
#testimonials-section #testimonials [class~=ant-carousel] .slick-next:hover {
|
|
2385
|
+
color: #DFB163;
|
|
2386
|
+
}
|
|
2387
|
+
#testimonials-section #testimonials .testimonial {
|
|
2388
|
+
padding: 10px 18px 20px 18px;
|
|
2389
|
+
gap: 15px;
|
|
2390
|
+
border-radius: 20px;
|
|
2391
|
+
opacity: 0px;
|
|
2392
|
+
background: #FFFFFF;
|
|
2393
|
+
box-shadow: 0px 5px 20px 0px rgba(225, 182, 91, 0.2);
|
|
2394
|
+
text-align: center;
|
|
2395
|
+
display: flex !important;
|
|
2396
|
+
flex-direction: column;
|
|
2397
|
+
justify-content: flex-start;
|
|
2398
|
+
}
|
|
2399
|
+
#testimonials-section #testimonials .testimonial .stars-icon {
|
|
2400
|
+
width: 92px;
|
|
2401
|
+
height: 32px;
|
|
2402
|
+
gap: 0px;
|
|
2403
|
+
opacity: 0px;
|
|
2404
|
+
margin: auto;
|
|
2405
|
+
}
|
|
2406
|
+
#testimonials-section #testimonials .testimonial .tour {
|
|
2407
|
+
width: 100%;
|
|
2408
|
+
padding: 10px;
|
|
2409
|
+
gap: 10px;
|
|
2410
|
+
border-radius: 10px;
|
|
2411
|
+
opacity: 0px;
|
|
2412
|
+
background: linear-gradient(270deg, #F9E298 0%, #FFFDF5 117.76%);
|
|
2413
|
+
box-shadow: 0px 7px 16.7px 0px rgba(225, 182, 91, 0.5019607843);
|
|
2414
|
+
box-sizing: border-box;
|
|
2415
|
+
display: inline-flex;
|
|
2416
|
+
align-items: center;
|
|
2417
|
+
}
|
|
2418
|
+
#testimonials-section #testimonials .testimonial .tour img {
|
|
2419
|
+
width: 28.46px;
|
|
2420
|
+
height: 26.5px;
|
|
2421
|
+
}
|
|
2422
|
+
#testimonials-section #testimonials .testimonial .tour span {
|
|
2423
|
+
font-family: Poppins, san-serif;
|
|
2424
|
+
font-size: 12px;
|
|
2425
|
+
font-weight: 500;
|
|
2426
|
+
line-height: 18px;
|
|
2427
|
+
text-align: left;
|
|
2428
|
+
text-underline-position: from-font;
|
|
2429
|
+
text-decoration-skip-ink: none;
|
|
2430
|
+
color: #AA853E;
|
|
2431
|
+
width: 100%;
|
|
2432
|
+
display: block;
|
|
2433
|
+
}
|
|
2434
|
+
#testimonials-section #testimonials .testimonial .comment {
|
|
2435
|
+
white-space: break-spaces;
|
|
2436
|
+
}
|
|
2437
|
+
#testimonials-section #testimonials .testimonial .comment span {
|
|
2438
|
+
font-family: Poppins, san-serif;
|
|
2439
|
+
font-size: 14px;
|
|
2440
|
+
font-style: italic;
|
|
2441
|
+
font-weight: 200;
|
|
2442
|
+
line-height: 21px;
|
|
2443
|
+
text-align: center;
|
|
2444
|
+
text-underline-position: from-font;
|
|
2445
|
+
text-decoration-skip-ink: none;
|
|
2446
|
+
}
|
|
2447
|
+
#testimonials-section #testimonials .testimonial .author {
|
|
2448
|
+
display: inline-flex;
|
|
2449
|
+
align-items: center;
|
|
2450
|
+
justify-content: center;
|
|
2451
|
+
gap: 10px;
|
|
2452
|
+
}
|
|
2453
|
+
#testimonials-section #testimonials .testimonial .author .author-icon {
|
|
2454
|
+
color: rgba(0, 0, 0, 0.8);
|
|
2455
|
+
width: 20px;
|
|
2456
|
+
height: 20px;
|
|
2457
|
+
}
|
|
2458
|
+
#testimonials-section #testimonials .testimonial .author span {
|
|
2459
|
+
font-family: Poppins, san-serif;
|
|
2460
|
+
font-size: 20px;
|
|
2461
|
+
font-weight: 400;
|
|
2462
|
+
line-height: 30px;
|
|
2463
|
+
letter-spacing: 0.05em;
|
|
2464
|
+
text-align: left;
|
|
2465
|
+
text-underline-position: from-font;
|
|
2466
|
+
text-decoration-skip-ink: none;
|
|
2467
|
+
}
|
|
2468
|
+
#about-signature-tours > div {
|
|
2469
|
+
width: 70%;
|
|
2470
|
+
margin: auto;
|
|
2471
|
+
}
|
|
2472
|
+
#about-signature-tours h1 {
|
|
2473
|
+
font-size: 45px;
|
|
2474
|
+
font-weight: 200;
|
|
2475
|
+
line-height: 67.5px;
|
|
2476
|
+
letter-spacing: 0.06em;
|
|
2477
|
+
}
|
|
2478
|
+
#about-signature-tours p {
|
|
2479
|
+
font-size: 18px;
|
|
2480
|
+
font-weight: 200;
|
|
2481
|
+
line-height: 27px;
|
|
2482
|
+
letter-spacing: 0.05em;
|
|
2483
|
+
text-align: left;
|
|
2484
|
+
}
|
|
2485
|
+
#about-signature-tours picture {
|
|
2486
|
+
height: 100%;
|
|
2487
|
+
display: block;
|
|
2488
|
+
margin: 30px 0;
|
|
2489
|
+
}
|
|
2490
|
+
#listing-page_header > .ant-flex {
|
|
2491
|
+
flex-direction: row;
|
|
2492
|
+
justify-content: space-between;
|
|
2493
|
+
align-items: center;
|
|
2494
|
+
}
|
|
2495
|
+
#listing-page_header .location-filter.ant-select {
|
|
2496
|
+
line-height: 36px;
|
|
2497
|
+
width: 170px;
|
|
2498
|
+
}
|
|
2499
|
+
#listing-page_header .location-filter.ant-select .ant-select-selection-item {
|
|
2500
|
+
font-size: 20px;
|
|
2501
|
+
font-weight: 500;
|
|
2502
|
+
line-height: 30px;
|
|
2503
|
+
letter-spacing: 0.05em;
|
|
2504
|
+
}
|
|
2505
|
+
#listing-page #tours .tour {
|
|
2506
|
+
flex-direction: row;
|
|
2507
|
+
}
|
|
2508
|
+
#listing-page #tours .tour_image img {
|
|
2509
|
+
border-top-right-radius: 0;
|
|
2510
|
+
border-top-left-radius: 20px;
|
|
2511
|
+
border-bottom-left-radius: 20px;
|
|
2512
|
+
}
|
|
2513
|
+
#listing-page #tours .tour_details_dates .date-selector {
|
|
2514
|
+
justify-content: unset;
|
|
2515
|
+
}
|
|
2516
|
+
#listing-page #tours .tour_pricing {
|
|
2517
|
+
border-bottom-left-radius: 0;
|
|
2518
|
+
border-top-right-radius: 20px;
|
|
2519
|
+
border-bottom-right-radius: 20px;
|
|
2520
|
+
}
|
|
2521
|
+
#listing-page #tours .tour_pricing_details {
|
|
2522
|
+
flex-direction: column;
|
|
2523
|
+
align-items: stretch;
|
|
2524
|
+
}
|
|
2525
|
+
#listing-page #tours .tour_pricing .ant-space-item {
|
|
2526
|
+
width: auto;
|
|
2527
|
+
}
|
|
2528
|
+
#show-page_header h1 {
|
|
2529
|
+
font-size: 18px;
|
|
2530
|
+
line-height: 27px;
|
|
2531
|
+
letter-spacing: 0%;
|
|
2532
|
+
text-align: left;
|
|
2533
|
+
font-size: 30px;
|
|
2534
|
+
font-weight: 400;
|
|
2535
|
+
line-height: 45px;
|
|
2536
|
+
letter-spacing: 0.05em;
|
|
2537
|
+
}
|
|
2538
|
+
#show-page_body .toggle_contact-agent,
|
|
2539
|
+
#show-page_body .collapse-contact-agent {
|
|
2540
|
+
display: none;
|
|
2541
|
+
}
|
|
2542
|
+
#show-page_body .contact-agent-sider {
|
|
2543
|
+
position: relative;
|
|
2544
|
+
top: unset;
|
|
2545
|
+
}
|
|
2546
|
+
#show-page_body .contact-agent {
|
|
2547
|
+
border-bottom-right-radius: 20px;
|
|
2548
|
+
border-top-right-radius: 20px;
|
|
2549
|
+
display: block;
|
|
2550
|
+
}
|
|
2551
|
+
#show-page_body .details-container_content #things-to-know {
|
|
2552
|
+
grid-template-columns: repeat(5, 1fr);
|
|
2553
|
+
}
|
|
2554
|
+
#show-page_body .details-container_content .schedule {
|
|
2555
|
+
flex-direction: row;
|
|
2556
|
+
}
|
|
2557
|
+
#show-page_body .details-container_content .schedule .flight-date {
|
|
2558
|
+
width: auto;
|
|
2559
|
+
}
|
|
2560
|
+
#show-page_body .details-container_content #pricing-list {
|
|
2561
|
+
display: none;
|
|
2562
|
+
}
|
|
2563
|
+
#show-page_body .details-container_content #pricing-table {
|
|
2564
|
+
display: table;
|
|
2565
|
+
width: 100%;
|
|
2566
|
+
border-spacing: 5px 0;
|
|
2567
|
+
}
|
|
2568
|
+
#show-page_body .details-container_content #pricing-table .price-type {
|
|
2569
|
+
text-transform: capitalize;
|
|
2570
|
+
}
|
|
2571
|
+
#show-page_body .details-container_content #pricing-table th {
|
|
2572
|
+
border-top-left-radius: 10px;
|
|
2573
|
+
border-top-right-radius: 10px;
|
|
2574
|
+
font-family: Poppins, san-serif;
|
|
2575
|
+
font-size: 14px;
|
|
2576
|
+
font-weight: 700;
|
|
2577
|
+
line-height: 21px;
|
|
2578
|
+
letter-spacing: 0.05em;
|
|
2579
|
+
text-align: center;
|
|
2580
|
+
text-underline-position: from-font;
|
|
2581
|
+
text-decoration-skip-ink: none;
|
|
2582
|
+
color: rgb(131, 104, 72);
|
|
2583
|
+
padding: 10px 15px;
|
|
2584
|
+
}
|
|
2585
|
+
#show-page_body .details-container_content #pricing-table td {
|
|
2586
|
+
font-family: Poppins, san-serif;
|
|
2587
|
+
font-size: 14px;
|
|
2588
|
+
font-weight: 500;
|
|
2589
|
+
line-height: 21px;
|
|
2590
|
+
letter-spacing: 0.05em;
|
|
2591
|
+
text-align: center;
|
|
2592
|
+
text-underline-position: from-font;
|
|
2593
|
+
text-decoration-skip-ink: none;
|
|
2594
|
+
color: rgb(84, 80, 71);
|
|
2595
|
+
padding: 15px;
|
|
2596
|
+
white-space: nowrap;
|
|
2597
|
+
}
|
|
2598
|
+
#show-page_body .details-container_content #pricing-table td:first-child {
|
|
2599
|
+
text-align: left;
|
|
2600
|
+
font-weight: 400;
|
|
2601
|
+
}
|
|
2602
|
+
#show-page_body .details-container_content #pricing-table tr:last-child td {
|
|
2603
|
+
border-bottom-left-radius: 10px;
|
|
2604
|
+
border-bottom-right-radius: 10px;
|
|
2605
|
+
}
|
|
2606
|
+
.agent-full-contact-details {
|
|
2607
|
+
width: 650px !important;
|
|
2608
|
+
}
|
|
2609
|
+
#contact-agents-page_body #find-agents {
|
|
2610
|
+
width: 65%;
|
|
2611
|
+
margin: auto;
|
|
2612
|
+
}
|
|
2613
|
+
#contact-agents-page_body #find-agents_form {
|
|
2614
|
+
text-align: center;
|
|
2615
|
+
}
|
|
2616
|
+
#contact-agents-page_body #find-agents_form form {
|
|
2617
|
+
display: inline-flex;
|
|
2618
|
+
gap: 16px;
|
|
2619
|
+
}
|
|
2620
|
+
#contact-agents-page_body #find-agents_form .ant-form-item {
|
|
2621
|
+
margin-bottom: 0;
|
|
2622
|
+
text-align: left;
|
|
2623
|
+
}
|
|
2624
|
+
#contact-agents-page_body #find-agents_form .ant-form-item,
|
|
2625
|
+
#contact-agents-page_body #find-agents_form .find-button {
|
|
2626
|
+
width: 210px;
|
|
2627
|
+
}
|
|
2628
|
+
#contact-agents-page_body #agents-list .more-info-button {
|
|
2629
|
+
width: 100%;
|
|
2630
|
+
}
|
|
2631
|
+
.agent-full-details {
|
|
2632
|
+
width: 800px !important;
|
|
2633
|
+
}
|
|
2634
|
+
#about-us-page .section-header {
|
|
2635
|
+
width: 741px;
|
|
2636
|
+
margin: auto;
|
|
2637
|
+
}
|
|
2638
|
+
#about-us-page #quality-policy {
|
|
2639
|
+
padding: 0 170px 16px 170px;
|
|
2640
|
+
}
|
|
2641
|
+
#about-us-page #certificates {
|
|
2642
|
+
padding: 40px 160px 40px 160px;
|
|
2643
|
+
justify-content: flex-start;
|
|
2644
|
+
}
|
|
2645
|
+
}
|