universal 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +52 -0
  4. data/_includes/banner.html +15 -0
  5. data/_includes/carousel.html +81 -0
  6. data/_includes/contact.html +25 -0
  7. data/_includes/copyright.html +8 -0
  8. data/_includes/cta.questions.html +17 -0
  9. data/_includes/customers.html +21 -0
  10. data/_includes/footer.html +42 -0
  11. data/_includes/get.it.html +10 -0
  12. data/_includes/head.html +48 -0
  13. data/_includes/header.html +81 -0
  14. data/_includes/js.html +38 -0
  15. data/_includes/offer.html +75 -0
  16. data/_includes/team.html +31 -0
  17. data/_includes/testimonials.html +41 -0
  18. data/_layouts/.DS_Store +0 -0
  19. data/_layouts/default.html +19 -0
  20. data/assets/.DS_Store +0 -0
  21. data/assets/css/.DS_Store +0 -0
  22. data/assets/css/animate.css +3158 -0
  23. data/assets/css/custom.css +80 -0
  24. data/assets/css/owl.carousel.css +71 -0
  25. data/assets/css/owl.theme.css +69 -0
  26. data/assets/css/style-default.css +3571 -0
  27. data/assets/css/style.blue.css +3570 -0
  28. data/assets/css/style.default.css +3570 -0
  29. data/assets/css/style.green.css +3570 -0
  30. data/assets/css/style.marsala.css +3570 -0
  31. data/assets/css/style.pink.css +3570 -0
  32. data/assets/css/style.red.css +3570 -0
  33. data/assets/css/style.turquoise.css +3570 -0
  34. data/assets/css/style.violet.css +3570 -0
  35. data/assets/img/.DS_Store +0 -0
  36. data/assets/img/Chewbacca.jpg +0 -0
  37. data/assets/img/Georges.jpg +0 -0
  38. data/assets/img/Han Solo.jpg +0 -0
  39. data/assets/img/Jean.jpg +0 -0
  40. data/assets/img/Lionel.jpg +0 -0
  41. data/assets/img/Luke Skywalker.jpg +0 -0
  42. data/assets/img/Marie.jpg +0 -0
  43. data/assets/img/Princesse Leia.jpg +0 -0
  44. data/assets/img/apple-touch-icon-114x114.png +0 -0
  45. data/assets/img/apple-touch-icon-120x120.png +0 -0
  46. data/assets/img/apple-touch-icon-144x144.png +0 -0
  47. data/assets/img/apple-touch-icon-152x152.png +0 -0
  48. data/assets/img/apple-touch-icon-57x57.png +0 -0
  49. data/assets/img/apple-touch-icon-72x72.png +0 -0
  50. data/assets/img/apple-touch-icon-76x76.png +0 -0
  51. data/assets/img/apple-touch-icon.png +0 -0
  52. data/assets/img/customer-bidule.png +0 -0
  53. data/assets/img/customer-cslink.png +0 -0
  54. data/assets/img/customer-evian.png +0 -0
  55. data/assets/img/customer-kofola.png +0 -0
  56. data/assets/img/customer-mf.png +0 -0
  57. data/assets/img/customer-vanek.png +0 -0
  58. data/assets/img/favicon.ico +0 -0
  59. data/assets/img/fixed-background-1.jpg +0 -0
  60. data/assets/img/fixed-background-2.jpg +0 -0
  61. data/assets/img/logo-small.png +0 -0
  62. data/assets/img/logo.png +0 -0
  63. data/assets/img/photogrid.jpg +0 -0
  64. data/assets/img/template-easy-code.png +0 -0
  65. data/assets/img/template-easy-customize.png +0 -0
  66. data/assets/img/template-homepage.png +0 -0
  67. data/assets/img/template-mac.png +0 -0
  68. data/assets/img/texture-bw.png +0 -0
  69. data/assets/js/.DS_Store +0 -0
  70. data/assets/js/front.js +413 -0
  71. data/assets/js/jquery.cookie.js +117 -0
  72. data/assets/js/jquery.counterup.min.js +8 -0
  73. data/assets/js/jquery.parallax-1.1.3.js +69 -0
  74. data/assets/js/owl.carousel.min.js +1 -0
  75. data/assets/js/stripe.checkout.js +27 -0
  76. data/assets/js/stripe.form.js +48 -0
  77. data/assets/js/waypoints.min.js +8 -0
  78. metadata +163 -0
@@ -0,0 +1,80 @@
1
+ form {
2
+ margin-bottom: 20px;
3
+ }
4
+
5
+ .label {
6
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
7
+ font-weight: normal;
8
+ text-transform: uppercase;
9
+ letter-spacing: 0.08em;
10
+ }
11
+
12
+ label {
13
+ font-weight: normal;
14
+ }
15
+
16
+ label > span {
17
+ float: left;
18
+ }
19
+
20
+ .field {
21
+ -webkit-box-shadow: none;
22
+ box-shadow: none;
23
+ border-radius: 0;
24
+ }
25
+
26
+ .field:focus {
27
+ border-color: #467fbf;
28
+ outline: 0;
29
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 127, 191, 0.6);
30
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(70, 127, 191, 0.6);
31
+ }
32
+
33
+ .field.StripeElement--focus {
34
+ border-color: #F99A52;
35
+ }
36
+
37
+ button {
38
+ color: #467fbf;
39
+ background-color: #ffffff;
40
+ border-color: #467fbf;
41
+ }
42
+
43
+ button:focus {
44
+ }
45
+
46
+ button:active {
47
+ background: #467fbf;
48
+ color: #ffffff;
49
+ border-color: #467fbf;
50
+ }
51
+
52
+ .outcome {
53
+ float: left;
54
+ width: 100%;
55
+ padding-top: 8px;
56
+ min-height: 20px;
57
+ text-align: center;
58
+ }
59
+
60
+ .success, .error {
61
+ display: none;
62
+ font-size: 13px;
63
+ }
64
+
65
+ .success.visible, .error.visible {
66
+ display: inline;
67
+ }
68
+
69
+ .error {
70
+ color: #E4584C;
71
+ }
72
+
73
+ .success {
74
+ color: #F8B563;
75
+ }
76
+
77
+ .success .token {
78
+ font-weight: 500;
79
+ font-size: 13px;
80
+ }
@@ -0,0 +1,71 @@
1
+ /*
2
+ * Core Owl Carousel CSS File
3
+ * v1.3.2
4
+ */
5
+
6
+ /* clearfix */
7
+ .owl-carousel .owl-wrapper:after {
8
+ content: ".";
9
+ display: block;
10
+ clear: both;
11
+ visibility: hidden;
12
+ line-height: 0;
13
+ height: 0;
14
+ }
15
+ /* display none until init */
16
+ .owl-carousel{
17
+ display: none;
18
+ position: relative;
19
+ width: 100%;
20
+ -ms-touch-action: pan-y;
21
+ }
22
+ .owl-carousel .owl-wrapper{
23
+ display: none;
24
+ position: relative;
25
+ -webkit-transform: translate3d(0px, 0px, 0px);
26
+ }
27
+ .owl-carousel .owl-wrapper-outer{
28
+ overflow: hidden;
29
+ position: relative;
30
+ width: 100%;
31
+ }
32
+ .owl-carousel .owl-wrapper-outer.autoHeight{
33
+ -webkit-transition: height 500ms ease-in-out;
34
+ -moz-transition: height 500ms ease-in-out;
35
+ -ms-transition: height 500ms ease-in-out;
36
+ -o-transition: height 500ms ease-in-out;
37
+ transition: height 500ms ease-in-out;
38
+ }
39
+
40
+ .owl-carousel .owl-item{
41
+ float: left;
42
+ }
43
+ .owl-controls .owl-page,
44
+ .owl-controls .owl-buttons div{
45
+ cursor: pointer;
46
+ }
47
+ .owl-controls {
48
+ -webkit-user-select: none;
49
+ -khtml-user-select: none;
50
+ -moz-user-select: none;
51
+ -ms-user-select: none;
52
+ user-select: none;
53
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
54
+ }
55
+
56
+ /* mouse grab icon */
57
+ .grabbing {
58
+ cursor:url(grabbing.png) 8 8, move;
59
+ }
60
+
61
+ /* fix */
62
+ .owl-carousel .owl-wrapper,
63
+ .owl-carousel .owl-item{
64
+ -webkit-backface-visibility: hidden;
65
+ -moz-backface-visibility: hidden;
66
+ -ms-backface-visibility: hidden;
67
+ -webkit-transform: translate3d(0,0,0);
68
+ -moz-transform: translate3d(0,0,0);
69
+ -ms-transform: translate3d(0,0,0);
70
+ }
71
+
@@ -0,0 +1,69 @@
1
+ /*
2
+ * Owl Carousel Owl Demo Theme
3
+ * v1.3.2
4
+ */
5
+
6
+ .owl-theme .owl-controls{
7
+ margin-top: 10px;
8
+ text-align: center;
9
+ }
10
+
11
+ /* Styling Next and Prev buttons */
12
+
13
+ .owl-theme .owl-controls .owl-buttons div{
14
+ display: inline-block;
15
+ zoom: 1;
16
+ *display: inline;/*IE7 life-saver */
17
+ }
18
+ /* Clickable class fix problem with hover on touch devices */
19
+ /* Use it for non-touch hover action */
20
+ .owl-theme .owl-controls.clickable .owl-buttons div:hover{
21
+ filter: Alpha(Opacity=100);/*IE7 fix*/
22
+ opacity: 1;
23
+ text-decoration: none;
24
+ }
25
+
26
+ /* Styling Pagination*/
27
+
28
+ .owl-theme .owl-controls .owl-page{
29
+ display: inline-block;
30
+ zoom: 1;
31
+ *display: inline;/*IE7 life-saver */
32
+ }
33
+ .owl-theme .owl-controls .owl-page span{
34
+ display: block;
35
+ width: 12px;
36
+ height: 12px;
37
+ margin: 5px 7px;
38
+ filter: Alpha(Opacity=50);/*IE7 fix*/
39
+ opacity: 0.5;
40
+ -webkit-border-radius: 20px;
41
+ -moz-border-radius: 20px;
42
+ border-radius: 20px;
43
+ background: #869791;
44
+ }
45
+
46
+ .owl-theme .owl-controls .owl-page.active span,
47
+ .owl-theme .owl-controls.clickable .owl-page:hover span{
48
+ filter: Alpha(Opacity=100);/*IE7 fix*/
49
+ opacity: 1;
50
+ }
51
+
52
+ /* If PaginationNumbers is true */
53
+
54
+ .owl-theme .owl-controls .owl-page span.owl-numbers{
55
+ height: auto;
56
+ width: auto;
57
+ color: #FFF;
58
+ padding: 2px 10px;
59
+ font-size: 12px;
60
+ -webkit-border-radius: 30px;
61
+ -moz-border-radius: 30px;
62
+ border-radius: 30px;
63
+ }
64
+
65
+ /* preloading images */
66
+ .owl-item.loading{
67
+ min-height: 150px;
68
+ background: url(AjaxLoader.gif) no-repeat center center
69
+ }
@@ -0,0 +1,3571 @@
1
+ .clearfix:before,
2
+ .clearfix:after,
3
+ .navbar:before,
4
+ .navbar:after,
5
+ .navbar-header:before,
6
+ .navbar-header:after {
7
+ content: " ";
8
+ display: table;
9
+ }
10
+ .clearfix:after,
11
+ .navbar:after,
12
+ .navbar-header:after {
13
+ clear: both;
14
+ }
15
+ .center-block {
16
+ display: block;
17
+ margin-left: auto;
18
+ margin-right: auto;
19
+ }
20
+ .pull-right {
21
+ float: right !important;
22
+ }
23
+ .pull-left {
24
+ float: left !important;
25
+ }
26
+ .hide {
27
+ display: none !important;
28
+ }
29
+ .show {
30
+ display: block !important;
31
+ }
32
+ .invisible {
33
+ visibility: hidden;
34
+ }
35
+ .text-hide {
36
+ font: 0/0 a;
37
+ color: transparent;
38
+ text-shadow: none;
39
+ background-color: transparent;
40
+ border: 0;
41
+ }
42
+ .hidden {
43
+ display: none !important;
44
+ visibility: hidden !important;
45
+ }
46
+ .affix {
47
+ position: fixed;
48
+ -webkit-transform: translate3d(0, 0, 0);
49
+ transform: translate3d(0, 0, 0);
50
+ }
51
+ /* general styles */
52
+ a,
53
+ button {
54
+ -webkit-transition: all 0.2s ease-out;
55
+ -moz-transition: all 0.2s ease-out;
56
+ transition: all 0.2s ease-out;
57
+ }
58
+ a i.fa,
59
+ button i.fa {
60
+ margin: 0 5px;
61
+ }
62
+ .clickable {
63
+ cursor: pointer !important;
64
+ }
65
+ .required {
66
+ color: #38a7bb;
67
+ }
68
+ .accent {
69
+ color: #38a7bb;
70
+ }
71
+ .text-uppercase {
72
+ text-transform: uppercase;
73
+ letter-spacing: 0.08em;
74
+ }
75
+ @media (max-width: 991px) {
76
+ .text-center-sm {
77
+ text-align: center;
78
+ }
79
+ }
80
+ p.lead {
81
+ margin-bottom: 40px;
82
+ }
83
+ section,
84
+ div.section {
85
+ margin-bottom: 40px;
86
+ }
87
+ .no-mb {
88
+ margin-bottom: 0 !important;
89
+ }
90
+ .mb-small {
91
+ margin-bottom: 20px !important;
92
+ }
93
+ .heading {
94
+ margin-bottom: 40px;
95
+ }
96
+ .heading h1,
97
+ .heading h2,
98
+ .heading h3,
99
+ .heading h4,
100
+ .heading h5 {
101
+ display: inline-block;
102
+ border-bottom: solid 5px #38a7bb;
103
+ line-height: 1.1;
104
+ margin-bottom: 0;
105
+ padding-bottom: 10px;
106
+ vertical-align: middle;
107
+ text-transform: uppercase;
108
+ letter-spacing: 0.06em;
109
+ }
110
+ .heading h1 i.fa,
111
+ .heading h2 i.fa,
112
+ .heading h3 i.fa,
113
+ .heading h4 i.fa,
114
+ .heading h5 i.fa {
115
+ display: inline-block;
116
+ background: #38a7bb;
117
+ width: 30px;
118
+ height: 30px;
119
+ vertical-align: middle;
120
+ text-align: center;
121
+ color: #fff;
122
+ font-size: 12px;
123
+ line-height: 30px;
124
+ border-radius: 15px;
125
+ }
126
+ .icon {
127
+ display: inline-block;
128
+ width: 80px;
129
+ height: 80px;
130
+ color: #fff;
131
+ line-height: 80px;
132
+ border-radius: 40px;
133
+ border: solid 1px #fff;
134
+ font-size: 20px;
135
+ }
136
+ .icon.icon-lg {
137
+ font-size: 30px;
138
+ border-width: 2px;
139
+ }
140
+ .ul-icons {
141
+ padding-left: 10px;
142
+ }
143
+ .ul-icons li {
144
+ list-style-type: none;
145
+ line-height: 20px;
146
+ margin-bottom: 20px;
147
+ }
148
+ .ul-icons li i {
149
+ width: 20px;
150
+ height: 20px;
151
+ background: #38a7bb;
152
+ color: #fff;
153
+ text-align: center;
154
+ border-radius: 10px;
155
+ line-height: 20px;
156
+ margin-right: 10px;
157
+ }
158
+ ul.list-style-none {
159
+ list-style: none;
160
+ }
161
+ #text-page h1,
162
+ #text-page h2,
163
+ #text-page h3 {
164
+ font-weight: 700;
165
+ }
166
+ #error-page {
167
+ text-align: center;
168
+ margin-top: 40px;
169
+ margin-bottom: 100px;
170
+ }
171
+ #error-page h4 {
172
+ margin-bottom: 40px;
173
+ }
174
+ #error-page p.buttons {
175
+ margin-top: 40px;
176
+ }
177
+ .pages-listing .item {
178
+ text-align: center;
179
+ }
180
+ .pages-listing .item h3 {
181
+ font-size: 18px;
182
+ text-transform: uppercase;
183
+ margin-bottom: 20px;
184
+ letter-spacing: 0.08em;
185
+ }
186
+ .pages-listing .item h3 a {
187
+ color: #555555;
188
+ }
189
+ .pages-listing .item .text {
190
+ margin-bottom: 20px;
191
+ }
192
+ .pages-listing .item .text p {
193
+ color: #999999;
194
+ font-size: 12px;
195
+ margin-bottom: 20px;
196
+ }
197
+ .banner {
198
+ margin-bottom: 30px;
199
+ text-align: center;
200
+ }
201
+ .banner img {
202
+ margin: 0 auto;
203
+ }
204
+ .banner a:hover img {
205
+ opacity: 0.8;
206
+ filter: alpha(opacity=80);
207
+ -webkit-transition: all 0.2s ease-out;
208
+ -moz-transition: all 0.2s ease-out;
209
+ transition: all 0.2s ease-out;
210
+ }
211
+ .pages {
212
+ text-align: center;
213
+ }
214
+ .pages .loadMore {
215
+ text-align: center;
216
+ }
217
+ .pages .pagination {
218
+ text-align: center;
219
+ }
220
+ .features-buttons button {
221
+ margin-bottom: 20px;
222
+ }
223
+ @media (min-width: 1300px) {
224
+ body.boxed {
225
+ background: url(https://subtlepatterns.com/patterns/subtle_zebra_3d.png);
226
+ }
227
+ body.boxed #all {
228
+ position: relative;
229
+ background: #fff;
230
+ width: 1200px;
231
+ margin: 0 auto;
232
+ overflow: hidden;
233
+ -webkit-box-shadow: 0 0 5px #cccccc;
234
+ box-shadow: 0 0 5px #cccccc;
235
+ }
236
+ }
237
+ #top {
238
+ background: #555555;
239
+ color: #eeeeee;
240
+ padding: 10px 0;
241
+ }
242
+ #top p {
243
+ margin: 0;
244
+ font-size: 12px;
245
+ }
246
+ #top .social {
247
+ float: right;
248
+ text-align: right;
249
+ }
250
+ #top .social a {
251
+ color: #999999;
252
+ display: inline-block;
253
+ width: 24px;
254
+ height: 24px;
255
+ border-radius: 12px;
256
+ line-height: 20px;
257
+ font-size: 12px;
258
+ text-align: center;
259
+ vertical-align: bottom;
260
+ }
261
+ #top .social a:hover {
262
+ color: #fff;
263
+ }
264
+ #top .social a:hover.linkedin {
265
+ background-color: #0e76a8;
266
+ }
267
+ #top .social a:hover.facebook {
268
+ background-color: #4460ae;
269
+ }
270
+ #top .social a:hover.gplus {
271
+ background-color: #c21f25;
272
+ }
273
+ #top .social a:hover.twitter {
274
+ background-color: #3cf;
275
+ }
276
+ #top .social a:hover.instagram {
277
+ background-color: #cd4378;
278
+ }
279
+ #top .social a:hover.email {
280
+ background-color: #4a7f45;
281
+ }
282
+ #top .login {
283
+ float: right;
284
+ }
285
+ #top .login a {
286
+ font-size: 12px;
287
+ color: #eeeeee;
288
+ margin-right: 15px;
289
+ text-decoration: none;
290
+ text-transform: uppercase;
291
+ font-weight: 700;
292
+ letter-spacing: 0.10em;
293
+ }
294
+ @media (max-width: 767px) {
295
+ #top .login {
296
+ float: left;
297
+ }
298
+ }
299
+ #top.light {
300
+ background: #fff;
301
+ color: #999999;
302
+ border-bottom: solid 1px #eeeeee;
303
+ }
304
+ #top.light .login a {
305
+ color: #555555;
306
+ }
307
+ .navbar {
308
+ border: none;
309
+ }
310
+ .navbar ul.nav > li > a {
311
+ text-transform: uppercase;
312
+ text-decoration: underline;
313
+ font-weight: bold;
314
+ letter-spacing: 0.08em;
315
+ border-top: solid 5px transparent;
316
+ }
317
+ .navbar ul.nav > li > a:hover {
318
+ border-top: solid 5px #38a7bb;
319
+ }
320
+ .navbar ul.nav > li.active > a,
321
+ .navbar ul.nav > li.open > a {
322
+ text-decoration: none !important;
323
+ border-top: solid 5px #20616d;
324
+ }
325
+ @media (max-width: 768px) {
326
+ .navbar ul.nav > li.active > a,
327
+ .navbar ul.nav > li.open > a {
328
+ border-top-color: transparent;
329
+ }
330
+ .navbar ul.nav > li > a:hover {
331
+ border-top-color: transparent;
332
+ }
333
+ }
334
+ .navbar.navbar-light ul.nav > li.active > a {
335
+ border-top: solid 5px #20616d;
336
+ background: #fff !important;
337
+ color: #555555 !important;
338
+ }
339
+ .navbar.navbar-light ul.nav > li.active > a:hover {
340
+ border-top: solid 5px #20616d;
341
+ }
342
+ .navbar.navbar-light ul.nav > li > a:hover,
343
+ .navbar.navbar-light ul.nav > li.open > a:hover,
344
+ .navbar.navbar-light ul.nav > li > a:focus,
345
+ .navbar.navbar-light ul.nav > li.open > a:focus {
346
+ border-top: solid 5px #38a7bb;
347
+ background: #fff !important;
348
+ color: #555555 !important;
349
+ }
350
+ .navbar ul.dropdown-menu {
351
+ margin: 0;
352
+ padding: 0;
353
+ }
354
+ .navbar ul.dropdown-menu li {
355
+ list-style-type: none;
356
+ border-bottom: solid 1px #eeeeee;
357
+ text-transform: uppercase;
358
+ letter-spacing: 0.08em;
359
+ padding: 4px 0;
360
+ }
361
+ .navbar ul.dropdown-menu li a {
362
+ position: relative;
363
+ color: #999999;
364
+ font-size: 12px;
365
+ display: block;
366
+ -webkit-transition: all 0.2s ease-out;
367
+ -moz-transition: all 0.2s ease-out;
368
+ transition: all 0.2s ease-out;
369
+ left: 0;
370
+ }
371
+ .navbar ul.dropdown-menu li a:hover {
372
+ color: #38a7bb;
373
+ text-decoration: none;
374
+ background: none;
375
+ left: 2px;
376
+ -webkit-transition: all 0.2s ease-out;
377
+ -moz-transition: all 0.2s ease-out;
378
+ transition: all 0.2s ease-out;
379
+ }
380
+ @media (max-width: 767px) {
381
+ .navbar ul.dropdown-menu li a:hover {
382
+ left: 0;
383
+ }
384
+ }
385
+ .navbar .yamm-content h3 {
386
+ font-size: 18px;
387
+ text-transform: uppercase;
388
+ padding-bottom: 10px;
389
+ margin-top: 5px;
390
+ border-bottom: dotted 1px #555555;
391
+ letter-spacing: 0.08em;
392
+ }
393
+ @media (max-width: 767px) {
394
+ .navbar .yamm-content h3 {
395
+ font-size: 14px;
396
+ }
397
+ }
398
+ .navbar .yamm-content h5 {
399
+ text-transform: uppercase;
400
+ padding-bottom: 10px;
401
+ border-bottom: dotted 1px #555555;
402
+ letter-spacing: 0.08em;
403
+ }
404
+ .navbar .yamm-content ul {
405
+ margin: 0;
406
+ padding: 0;
407
+ }
408
+ .navbar .yamm-content ul li {
409
+ list-style-type: none;
410
+ border-bottom: solid 1px #eeeeee;
411
+ text-transform: uppercase;
412
+ padding: 4px 0;
413
+ }
414
+ .navbar .yamm-content ul li a {
415
+ position: relative;
416
+ color: #999999;
417
+ font-size: 12px;
418
+ display: block;
419
+ -webkit-transition: all 0.2s ease-out;
420
+ -moz-transition: all 0.2s ease-out;
421
+ transition: all 0.2s ease-out;
422
+ }
423
+ .navbar .yamm-content ul li a:hover {
424
+ color: #38a7bb;
425
+ text-decoration: none;
426
+ padding-left: 2px;
427
+ }
428
+ .navbar .yamm-content .banner {
429
+ margin-bottom: 10px;
430
+ }
431
+ .navbar .yamm-fw .dropdown-menu {
432
+ padding: 0;
433
+ }
434
+ .navbar .navbar-buttons {
435
+ float: right;
436
+ }
437
+ .navbar .navbar-buttons button,
438
+ .navbar .navbar-buttons a.btn,
439
+ .navbar .navbar-buttons .btn-default.navbar-toggle {
440
+ margin-top: 11px;
441
+ margin-bottom: 11px;
442
+ margin-left: 0;
443
+ margin-right: 5px;
444
+ }
445
+ .navbar .btn-default,
446
+ .navbar .btn-default.navbar-toggle {
447
+ color: #999999;
448
+ background-color: #fff;
449
+ margin-left: 7px;
450
+ margin-right: 0;
451
+ }
452
+ .navbar .btn-default:hover,
453
+ .navbar .btn-default.navbar-toggle:hover,
454
+ .navbar .btn-default:focus,
455
+ .navbar .btn-default.navbar-toggle:focus {
456
+ background-color: #fff;
457
+ border-color: #38a7bb;
458
+ color: #38a7bb;
459
+ }
460
+ .navbar #search {
461
+ clear: both;
462
+ border-top: solid 1px #38a7bb;
463
+ text-align: right;
464
+ }
465
+ .navbar #search form {
466
+ float: right;
467
+ }
468
+ .navbar #search form .input-group {
469
+ width: 500px;
470
+ }
471
+ @media (max-width: 768px) {
472
+ .navbar #search form .input-group {
473
+ width: 100%;
474
+ }
475
+ }
476
+ .navbar #basket-overview a {
477
+ margin-left: 7px;
478
+ }
479
+ .navbar-affixed-top {
480
+ top: -32px;
481
+ }
482
+ .navbar-affixed-top.affix-top {
483
+ -webkit-transition: all 0.5s ease-out;
484
+ -moz-transition: all 0.5s ease-out;
485
+ transition: all 0.5s ease-out;
486
+ }
487
+ .navbar-affixed-top.affix {
488
+ position: fixed;
489
+ width: 100%;
490
+ top: 0;
491
+ z-index: 1000;
492
+ -webkit-box-shadow: 0 0 5px #cccccc;
493
+ box-shadow: 0 0 5px #cccccc;
494
+ -webkit-transition: all 0.5s ease-out;
495
+ -moz-transition: all 0.5s ease-out;
496
+ transition: all 0.5s ease-out;
497
+ }
498
+ body.boxed .navbar-affixed-top.affix {
499
+ position: static;
500
+ }
501
+ #login-modal {
502
+ overflow: hidden;
503
+ }
504
+ #login-modal .modal-header h4 {
505
+ text-transform: uppercase;
506
+ }
507
+ #login-modal form {
508
+ margin-bottom: 20px;
509
+ }
510
+ #login-modal a {
511
+ color: #38a7bb;
512
+ }
513
+ #login-modal p {
514
+ font-weight: 300;
515
+ margin-bottom: 20px;
516
+ font-size: 13px;
517
+ }
518
+ /* buttons */
519
+ .btn {
520
+ font-weight: 700;
521
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
522
+ text-transform: uppercase;
523
+ letter-spacing: 0.08em;
524
+ padding: 6px 12px;
525
+ font-size: 13px;
526
+ line-height: 1.42857143;
527
+ border-radius: 0;
528
+ }
529
+ .input-group .btn {
530
+ font-size: 14px;
531
+ }
532
+ .btn-lg {
533
+ padding: 10px 16px;
534
+ font-size: 14px;
535
+ line-height: 1.33;
536
+ border-radius: 0;
537
+ }
538
+ .btn-sm {
539
+ padding: 5px 10px;
540
+ font-size: 12px;
541
+ line-height: 1.5;
542
+ border-radius: 0;
543
+ }
544
+ .btn-xs {
545
+ padding: 1px 5px;
546
+ font-size: 12px;
547
+ line-height: 1.5;
548
+ border-radius: 0;
549
+ }
550
+ .btn-template-main {
551
+ color: #38a7bb;
552
+ background-color: #ffffff;
553
+ border-color: #38a7bb;
554
+ }
555
+ .btn-template-main:hover,
556
+ .btn-template-main:focus,
557
+ .btn-template-main:active,
558
+ .btn-template-main.active,
559
+ .open > .dropdown-toggle.btn-template-main {
560
+ color: #38a7bb;
561
+ background-color: #e6e6e6;
562
+ border-color: #2a7d8c;
563
+ }
564
+ .btn-template-main:active,
565
+ .btn-template-main.active,
566
+ .open > .dropdown-toggle.btn-template-main {
567
+ background-image: none;
568
+ }
569
+ .btn-template-main.disabled,
570
+ .btn-template-main[disabled],
571
+ fieldset[disabled] .btn-template-main,
572
+ .btn-template-main.disabled:hover,
573
+ .btn-template-main[disabled]:hover,
574
+ fieldset[disabled] .btn-template-main:hover,
575
+ .btn-template-main.disabled:focus,
576
+ .btn-template-main[disabled]:focus,
577
+ fieldset[disabled] .btn-template-main:focus,
578
+ .btn-template-main.disabled:active,
579
+ .btn-template-main[disabled]:active,
580
+ fieldset[disabled] .btn-template-main:active,
581
+ .btn-template-main.disabled.active,
582
+ .btn-template-main[disabled].active,
583
+ fieldset[disabled] .btn-template-main.active {
584
+ background-color: #ffffff;
585
+ border-color: #38a7bb;
586
+ }
587
+ .btn-template-main .badge {
588
+ color: #ffffff;
589
+ background-color: #38a7bb;
590
+ }
591
+ .btn-template-main:hover,
592
+ .btn-template-main:focus,
593
+ .btn-template-main:active,
594
+ .btn-template-main.active {
595
+ background: #38a7bb;
596
+ color: #ffffff;
597
+ border-color: #38a7bb;
598
+ }
599
+ .btn-template-transparent-primary {
600
+ color: #ffffff;
601
+ background-color: transparent;
602
+ border-color: #ffffff;
603
+ }
604
+ .btn-template-transparent-primary:hover,
605
+ .btn-template-transparent-primary:focus,
606
+ .btn-template-transparent-primary:active,
607
+ .btn-template-transparent-primary.active,
608
+ .open > .dropdown-toggle.btn-template-transparent-primary {
609
+ color: #ffffff;
610
+ background-color: rgba(0, 0, 0, 0);
611
+ border-color: #e0e0e0;
612
+ }
613
+ .btn-template-transparent-primary:active,
614
+ .btn-template-transparent-primary.active,
615
+ .open > .dropdown-toggle.btn-template-transparent-primary {
616
+ background-image: none;
617
+ }
618
+ .btn-template-transparent-primary.disabled,
619
+ .btn-template-transparent-primary[disabled],
620
+ fieldset[disabled] .btn-template-transparent-primary,
621
+ .btn-template-transparent-primary.disabled:hover,
622
+ .btn-template-transparent-primary[disabled]:hover,
623
+ fieldset[disabled] .btn-template-transparent-primary:hover,
624
+ .btn-template-transparent-primary.disabled:focus,
625
+ .btn-template-transparent-primary[disabled]:focus,
626
+ fieldset[disabled] .btn-template-transparent-primary:focus,
627
+ .btn-template-transparent-primary.disabled:active,
628
+ .btn-template-transparent-primary[disabled]:active,
629
+ fieldset[disabled] .btn-template-transparent-primary:active,
630
+ .btn-template-transparent-primary.disabled.active,
631
+ .btn-template-transparent-primary[disabled].active,
632
+ fieldset[disabled] .btn-template-transparent-primary.active {
633
+ background-color: transparent;
634
+ border-color: #ffffff;
635
+ }
636
+ .btn-template-transparent-primary .badge {
637
+ color: transparent;
638
+ background-color: #ffffff;
639
+ }
640
+ .btn-template-transparent-primary:hover,
641
+ .btn-template-transparent-primary:focus,
642
+ .btn-template-transparent-primary:active,
643
+ .btn-template-transparent-primary.active {
644
+ background: #fff;
645
+ color: #38a7bb;
646
+ border-color: #fff;
647
+ }
648
+ .btn-template-transparent-black {
649
+ color: #ffffff;
650
+ background-color: transparent;
651
+ border-color: #ffffff;
652
+ }
653
+ .btn-template-transparent-black:hover,
654
+ .btn-template-transparent-black:focus,
655
+ .btn-template-transparent-black:active,
656
+ .btn-template-transparent-black.active,
657
+ .open > .dropdown-toggle.btn-template-transparent-black {
658
+ color: #ffffff;
659
+ background-color: rgba(0, 0, 0, 0);
660
+ border-color: #e0e0e0;
661
+ }
662
+ .btn-template-transparent-black:active,
663
+ .btn-template-transparent-black.active,
664
+ .open > .dropdown-toggle.btn-template-transparent-black {
665
+ background-image: none;
666
+ }
667
+ .btn-template-transparent-black.disabled,
668
+ .btn-template-transparent-black[disabled],
669
+ fieldset[disabled] .btn-template-transparent-black,
670
+ .btn-template-transparent-black.disabled:hover,
671
+ .btn-template-transparent-black[disabled]:hover,
672
+ fieldset[disabled] .btn-template-transparent-black:hover,
673
+ .btn-template-transparent-black.disabled:focus,
674
+ .btn-template-transparent-black[disabled]:focus,
675
+ fieldset[disabled] .btn-template-transparent-black:focus,
676
+ .btn-template-transparent-black.disabled:active,
677
+ .btn-template-transparent-black[disabled]:active,
678
+ fieldset[disabled] .btn-template-transparent-black:active,
679
+ .btn-template-transparent-black.disabled.active,
680
+ .btn-template-transparent-black[disabled].active,
681
+ fieldset[disabled] .btn-template-transparent-black.active {
682
+ background-color: transparent;
683
+ border-color: #ffffff;
684
+ }
685
+ .btn-template-transparent-black .badge {
686
+ color: transparent;
687
+ background-color: #ffffff;
688
+ }
689
+ .btn-template-transparent-black:hover,
690
+ .btn-template-transparent-black:focus,
691
+ .btn-template-transparent-black:active,
692
+ .btn-template-transparent-black.active {
693
+ background: #fff;
694
+ color: #000;
695
+ border-color: #fff;
696
+ }
697
+ .btn-template-primary {
698
+ color: #ffffff;
699
+ background-color: #38a7bb;
700
+ border-color: #38a7bb;
701
+ }
702
+ .btn-template-primary:hover,
703
+ .btn-template-primary:focus,
704
+ .btn-template-primary:active,
705
+ .btn-template-primary.active,
706
+ .open > .dropdown-toggle.btn-template-primary {
707
+ color: #ffffff;
708
+ background-color: #2c8494;
709
+ border-color: #2a7d8c;
710
+ }
711
+ .btn-template-primary:active,
712
+ .btn-template-primary.active,
713
+ .open > .dropdown-toggle.btn-template-primary {
714
+ background-image: none;
715
+ }
716
+ .btn-template-primary.disabled,
717
+ .btn-template-primary[disabled],
718
+ fieldset[disabled] .btn-template-primary,
719
+ .btn-template-primary.disabled:hover,
720
+ .btn-template-primary[disabled]:hover,
721
+ fieldset[disabled] .btn-template-primary:hover,
722
+ .btn-template-primary.disabled:focus,
723
+ .btn-template-primary[disabled]:focus,
724
+ fieldset[disabled] .btn-template-primary:focus,
725
+ .btn-template-primary.disabled:active,
726
+ .btn-template-primary[disabled]:active,
727
+ fieldset[disabled] .btn-template-primary:active,
728
+ .btn-template-primary.disabled.active,
729
+ .btn-template-primary[disabled].active,
730
+ fieldset[disabled] .btn-template-primary.active {
731
+ background-color: #38a7bb;
732
+ border-color: #38a7bb;
733
+ }
734
+ .btn-template-primary .badge {
735
+ color: #38a7bb;
736
+ background-color: #ffffff;
737
+ }
738
+ #intro {
739
+ background: url('../img/home.jpg') no-repeat center top;
740
+ -webkit-background-size: cover;
741
+ -moz-background-size: cover;
742
+ -o-background-size: cover;
743
+ background-size: cover;
744
+ }
745
+ #intro .item {
746
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
747
+ height: 100%;
748
+ }
749
+ #intro .item h1 {
750
+ text-transform: uppercase;
751
+ font-size: 50px;
752
+ color: #fff;
753
+ margin-bottom: 40px;
754
+ letter-spacing: 0.08em;
755
+ }
756
+ @media (max-width: 991px) {
757
+ #intro .item h1 {
758
+ font-size: 40px;
759
+ }
760
+ }
761
+ @media (max-width: 767px) {
762
+ #intro .item h1 {
763
+ font-size: 25px;
764
+ }
765
+ }
766
+ #intro .item h3 {
767
+ color: #fff;
768
+ margin-bottom: 40px;
769
+ }
770
+ @media (max-width: 767px) {
771
+ #intro .item h3 {
772
+ font-size: 15px;
773
+ margin-bottom: 20px;
774
+ }
775
+ }
776
+ #intro .item .btn {
777
+ text-transform: none;
778
+ }
779
+ @media (max-width: 991px) {
780
+ #intro .item .btn {
781
+ font-size: 14px;
782
+ }
783
+ }
784
+ @media (max-width: 991px) {
785
+ #intro .item .carousel-caption {
786
+ left: 10%;
787
+ right: 10%;
788
+ }
789
+ }
790
+ #intro .container,
791
+ #intro .row {
792
+ height: 100%;
793
+ position: relative;
794
+ }
795
+ .jumbotron {
796
+ padding: 30px;
797
+ margin-bottom: 0;
798
+ position: relative;
799
+ background: url('../img/photogrid.jpg') center center repeat;
800
+ background-size: cover;
801
+ -webkit-transition: all 0.2s ease-out;
802
+ -moz-transition: all 0.2s ease-out;
803
+ transition: all 0.2s ease-out;
804
+ }
805
+ .jumbotron .dark-mask {
806
+ position: absolute;
807
+ top: 0;
808
+ left: 0;
809
+ width: 100%;
810
+ height: 100%;
811
+ background: #38a7bb;
812
+ opacity: 0.9;
813
+ filter: alpha(opacity=90);
814
+ }
815
+ .jumbotron h1,
816
+ .jumbotron h2,
817
+ .jumbotron h3,
818
+ .jumbotron p,
819
+ .jumbotron ul {
820
+ color: #fff;
821
+ }
822
+ .jumbotron h1,
823
+ .jumbotron h2,
824
+ .jumbotron h3 {
825
+ color: #ffffff;
826
+ text-transform: uppercase;
827
+ letter-spacing: 0.08em;
828
+ }
829
+ .jumbotron p {
830
+ margin-bottom: 20px;
831
+ font-size: 21px;
832
+ font-weight: 400;
833
+ }
834
+ .jumbotron p.text-uppercase {
835
+ font-weight: 700;
836
+ }
837
+ .jumbotron > hr {
838
+ border-top-color: #d5d5d5;
839
+ }
840
+ .container .jumbotron {
841
+ border-radius: 0;
842
+ }
843
+ .jumbotron .container {
844
+ max-width: 100%;
845
+ z-index: 2;
846
+ }
847
+ @media screen and (min-width: 768px) {
848
+ .jumbotron {
849
+ padding-top: 48px;
850
+ padding-bottom: 48px;
851
+ }
852
+ .container .jumbotron {
853
+ padding-left: 60px;
854
+ padding-right: 60px;
855
+ }
856
+ .jumbotron h1,
857
+ .jumbotron .h1 {
858
+ font-size: 46px;
859
+ }
860
+ }
861
+ #categoryMenu h3 {
862
+ padding: 20px;
863
+ background: #f7f7f7;
864
+ margin: 0;
865
+ border-bottom: solid 1px #eeeeee;
866
+ text-transform: uppercase;
867
+ letter-spacing: 0.08em;
868
+ }
869
+ .panel.sidebar-menu h3 {
870
+ padding: 5px 0;
871
+ margin: 0;
872
+ }
873
+ .panel.sidebar-menu {
874
+ background: #fff;
875
+ margin: 0 0 20px;
876
+ -webkit-box-sizing: border-box;
877
+ -moz-box-sizing: border-box;
878
+ box-sizing: border-box;
879
+ }
880
+ .panel.sidebar-menu .panel-heading {
881
+ text-transform: uppercase;
882
+ margin-bottom: 10px;
883
+ background: none;
884
+ padding: 0;
885
+ letter-spacing: 0.08em;
886
+ border-bottom: none;
887
+ }
888
+ .panel.sidebar-menu .panel-heading h1,
889
+ .panel.sidebar-menu .panel-heading h2,
890
+ .panel.sidebar-menu .panel-heading h3,
891
+ .panel.sidebar-menu .panel-heading h4,
892
+ .panel.sidebar-menu .panel-heading h5 {
893
+ display: inline-block;
894
+ border-bottom: solid 5px #38a7bb;
895
+ line-height: 1.1;
896
+ margin-bottom: 0;
897
+ padding-bottom: 10px;
898
+ }
899
+ .panel.sidebar-menu .panel-heading .btn.btn-danger {
900
+ color: #fff;
901
+ margin-top: 5px;
902
+ }
903
+ .panel.sidebar-menu .panel-body {
904
+ padding: 0;
905
+ }
906
+ .panel.sidebar-menu .panel-body span.colour {
907
+ display: inline-block;
908
+ width: 15px;
909
+ height: 15px;
910
+ border: solid 1px #555555;
911
+ vertical-align: top;
912
+ margin-top: 2px;
913
+ margin-left: 5px;
914
+ }
915
+ .panel.sidebar-menu .panel-body span.colour.white {
916
+ background: #fff;
917
+ }
918
+ .panel.sidebar-menu .panel-body span.colour.red {
919
+ background: red;
920
+ }
921
+ .panel.sidebar-menu .panel-body span.colour.green {
922
+ background: green;
923
+ }
924
+ .panel.sidebar-menu .panel-body span.colour.blue {
925
+ background: blue;
926
+ }
927
+ .panel.sidebar-menu .panel-body span.colour.yellow {
928
+ background: yellow;
929
+ }
930
+ .panel.sidebar-menu .panel-body label {
931
+ color: #999999;
932
+ font-size: 12px;
933
+ }
934
+ .panel.sidebar-menu .panel-body label:hover {
935
+ color: #555555;
936
+ }
937
+ .panel.sidebar-menu ul.nav.category-menu {
938
+ margin-bottom: 20px;
939
+ text-transform: uppercase;
940
+ font-weight: 700;
941
+ letter-spacing: 0.08em;
942
+ }
943
+ .panel.sidebar-menu ul.nav.category-menu li a {
944
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
945
+ }
946
+ .panel.sidebar-menu ul.nav ul {
947
+ list-style: none;
948
+ padding-left: 0;
949
+ }
950
+ .panel.sidebar-menu ul.nav ul li {
951
+ display: block;
952
+ }
953
+ .panel.sidebar-menu ul.nav ul li a {
954
+ position: relative;
955
+ font-family: "Times New Roman", Times, serif;
956
+ font-weight: normal;
957
+ text-transform: none !important;
958
+ display: block;
959
+ padding: 10px 15px;
960
+ padding-left: 30px;
961
+ font-size: 12px;
962
+ color: #999999;
963
+ }
964
+ .panel.sidebar-menu ul.nav ul li a:hover,
965
+ .panel.sidebar-menu ul.nav ul li a:focus {
966
+ text-decoration: none;
967
+ background-color: #eeeeee;
968
+ }
969
+ .panel.sidebar-menu ul.tag-cloud {
970
+ list-style: none;
971
+ padding-left: 0;
972
+ }
973
+ .panel.sidebar-menu ul.tag-cloud li {
974
+ display: inline-block;
975
+ }
976
+ .panel.sidebar-menu ul.tag-cloud li a {
977
+ display: inline-block;
978
+ padding: 5px;
979
+ border: solid 1px #eeeeee;
980
+ border-radius: 0;
981
+ color: #38a7bb;
982
+ margin: 5px 5px 5px 0;
983
+ text-transform: uppercase;
984
+ letter-spacing: 0.08em;
985
+ font-weight: 700;
986
+ font-size: 12px;
987
+ }
988
+ .panel.sidebar-menu ul.tag-cloud li a:hover {
989
+ color: #38a7bb;
990
+ text-decoration: none;
991
+ border-color: #38a7bb;
992
+ }
993
+ .panel.sidebar-menu ul.popular,
994
+ .panel.sidebar-menu ul.recent {
995
+ list-style: none;
996
+ padding-left: 0;
997
+ padding: 20px 0;
998
+ }
999
+ .panel.sidebar-menu ul.popular li,
1000
+ .panel.sidebar-menu ul.recent li {
1001
+ margin-bottom: 10px;
1002
+ padding: 5px 0;
1003
+ border-bottom: dotted 1px #eeeeee;
1004
+ }
1005
+ .panel.sidebar-menu ul.popular li:before,
1006
+ .panel.sidebar-menu ul.recent li:before,
1007
+ .panel.sidebar-menu ul.popular li:after,
1008
+ .panel.sidebar-menu ul.recent li:after {
1009
+ content: " ";
1010
+ display: table;
1011
+ }
1012
+ .panel.sidebar-menu ul.popular li:after,
1013
+ .panel.sidebar-menu ul.recent li:after {
1014
+ clear: both;
1015
+ }
1016
+ .panel.sidebar-menu ul.popular li:before,
1017
+ .panel.sidebar-menu ul.recent li:before,
1018
+ .panel.sidebar-menu ul.popular li:after,
1019
+ .panel.sidebar-menu ul.recent li:after {
1020
+ content: " ";
1021
+ display: table;
1022
+ }
1023
+ .panel.sidebar-menu ul.popular li:after,
1024
+ .panel.sidebar-menu ul.recent li:after {
1025
+ clear: both;
1026
+ }
1027
+ .panel.sidebar-menu ul.popular li img,
1028
+ .panel.sidebar-menu ul.recent li img {
1029
+ width: 50px;
1030
+ margin-right: 10px;
1031
+ }
1032
+ .panel.sidebar-menu ul.popular li h5,
1033
+ .panel.sidebar-menu ul.recent li h5 {
1034
+ margin: 0 0 10px;
1035
+ }
1036
+ .panel.sidebar-menu ul.popular li h5 a,
1037
+ .panel.sidebar-menu ul.recent li h5 a {
1038
+ font-weight: normal;
1039
+ }
1040
+ .panel.sidebar-menu ul.popular li p.date,
1041
+ .panel.sidebar-menu ul.recent li p.date {
1042
+ float: right;
1043
+ font-size: 12px;
1044
+ color: #999999;
1045
+ }
1046
+ .panel.sidebar-menu ul.popular li:last-child,
1047
+ .panel.sidebar-menu ul.recent li:last-child {
1048
+ border-bottom: none;
1049
+ }
1050
+ .panel.sidebar-menu .text-widget {
1051
+ font-size: 12px;
1052
+ }
1053
+ .panel.sidebar-menu.with-icons ul.nav li a:after {
1054
+ font-family: 'FontAwesome';
1055
+ content: "\f105";
1056
+ position: relative;
1057
+ top: 0;
1058
+ float: right;
1059
+ }
1060
+ /* ribbons for product sales etc. */
1061
+ .ribbon {
1062
+ position: absolute;
1063
+ top: 50px;
1064
+ padding-left: 51px;
1065
+ font-weight: 700;
1066
+ letter-spacing: 0.08em;
1067
+ }
1068
+ .ribbon .ribbon-background {
1069
+ position: absolute;
1070
+ top: 0;
1071
+ right: 0;
1072
+ }
1073
+ .ribbon .theribbon {
1074
+ position: relative;
1075
+ width: 80px;
1076
+ padding: 6px 20px 6px 20px;
1077
+ margin: 30px 10px 10px -71px;
1078
+ color: #fff;
1079
+ background-color: #38a7bb;
1080
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
1081
+ }
1082
+ .ribbon .theribbon:before,
1083
+ .ribbon .theribbon:after {
1084
+ content: ' ';
1085
+ position: absolute;
1086
+ width: 0;
1087
+ height: 0;
1088
+ }
1089
+ .ribbon .theribbon:after {
1090
+ left: 0px;
1091
+ top: 100%;
1092
+ border-width: 5px 10px;
1093
+ border-style: solid;
1094
+ border-color: #000000 #000000 transparent transparent;
1095
+ }
1096
+ .ribbon.sale {
1097
+ top: 0;
1098
+ }
1099
+ .ribbon.new {
1100
+ top: 50px;
1101
+ }
1102
+ .ribbon.new .theribbon {
1103
+ background-color: #5bc0de;
1104
+ text-shadow: 0px 1px 2px #bbb;
1105
+ }
1106
+ .ribbon.new .theribbon:after {
1107
+ border-color: #2390b0 #2390b0 transparent transparent;
1108
+ }
1109
+ .ribbon.gift {
1110
+ top: 100px;
1111
+ }
1112
+ .ribbon.gift .theribbon {
1113
+ background-color: #5cb85c;
1114
+ text-shadow: 0px 1px 2px #bbb;
1115
+ }
1116
+ .ribbon.gift .theribbon:after {
1117
+ border-color: #357935 #357935 transparent transparent;
1118
+ }
1119
+ .owl-carousel .owl-controls .owl-page.active span,
1120
+ .owl-theme .owl-controls .owl-page.active span,
1121
+ .owl-carousel .owl-controls.clickable .owl-page:hover span,
1122
+ .owl-theme .owl-controls.clickable .owl-page:hover span {
1123
+ background: #38a7bb;
1124
+ }
1125
+ .owl-carousel .owl-controls .owl-buttons,
1126
+ .owl-theme .owl-controls .owl-buttons {
1127
+ position: absolute;
1128
+ top: 5px;
1129
+ right: 0;
1130
+ }
1131
+ .owl-carousel .owl-controls .owl-buttons div,
1132
+ .owl-theme .owl-controls .owl-buttons div {
1133
+ width: 26px;
1134
+ height: 26px;
1135
+ line-height: 25px;
1136
+ margin: 0 5px 0 0;
1137
+ font-size: 18px;
1138
+ color: #38a7bb;
1139
+ padding: 0;
1140
+ background: #fff;
1141
+ border-radius: 13px;
1142
+ vertical-align: middle;
1143
+ text-align: center;
1144
+ opacity: 1;
1145
+ filter: alpha(opacity=100);
1146
+ }
1147
+ .home-carousel {
1148
+ position: relative;
1149
+ background: url('../img/photogrid.jpg') center center repeat;
1150
+ background-size: cover;
1151
+ -webkit-transition: all 0.2s ease-out;
1152
+ -moz-transition: all 0.2s ease-out;
1153
+ transition: all 0.2s ease-out;
1154
+ }
1155
+ .home-carousel .dark-mask {
1156
+ position: absolute;
1157
+ top: 0;
1158
+ left: 0;
1159
+ width: 100%;
1160
+ height: 100%;
1161
+ background: #38a7bb;
1162
+ opacity: 0.9;
1163
+ filter: alpha(opacity=90);
1164
+ }
1165
+ .home-carousel .owl-carousel {
1166
+ padding-top: 60px;
1167
+ padding-bottom: 20px;
1168
+ }
1169
+ .home-carousel .owl-theme .owl-controls .owl-page span {
1170
+ background: #666;
1171
+ }
1172
+ .home-carousel .owl-theme .owl-controls .owl-page.active span {
1173
+ background: #fff;
1174
+ }
1175
+ .home-carousel .owl-theme .owl-controls .owl-page:hover span {
1176
+ background: #fff;
1177
+ }
1178
+ @media (max-width: 767px) {
1179
+ .home-carousel {
1180
+ text-align: center !important;
1181
+ }
1182
+ }
1183
+ @media (min-width: 992px) {
1184
+ .home-carousel .right {
1185
+ text-align: right;
1186
+ }
1187
+ }
1188
+ .home-carousel h1,
1189
+ .home-carousel h2,
1190
+ .home-carousel h3,
1191
+ .home-carousel p,
1192
+ .home-carousel ul {
1193
+ color: #fff;
1194
+ }
1195
+ .home-carousel h1 {
1196
+ font-weight: 700;
1197
+ text-transform: uppercase;
1198
+ font-size: 46px;
1199
+ letter-spacing: 0.08em;
1200
+ }
1201
+ @media (max-width: 991px) {
1202
+ .home-carousel h1 {
1203
+ font-size: 36px;
1204
+ }
1205
+ }
1206
+ .home-carousel h2 {
1207
+ font-weight: 700;
1208
+ text-transform: uppercase;
1209
+ font-size: 40px;
1210
+ letter-spacing: 0.08em;
1211
+ }
1212
+ .home-carousel ul,
1213
+ .home-carousel p {
1214
+ font-size: 18px;
1215
+ font-weight: 700;
1216
+ padding: 0;
1217
+ text-transform: uppercase;
1218
+ letter-spacing: 0.10em;
1219
+ }
1220
+ @media (max-width: 991px) {
1221
+ .home-carousel ul,
1222
+ .home-carousel p {
1223
+ font-size: 14px;
1224
+ }
1225
+ }
1226
+ .home-carousel ul li {
1227
+ margin-bottom: 10px;
1228
+ }
1229
+ .customers {
1230
+ padding: 0;
1231
+ margin-bottom: 40px;
1232
+ }
1233
+ .customers .item {
1234
+ list-style-type: none;
1235
+ text-align: center;
1236
+ margin: 0 20px;
1237
+ }
1238
+ .customers .item img {
1239
+ display: inline-block;
1240
+ filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
1241
+ /* Firefox 10+, Firefox on Android */
1242
+ filter: gray;
1243
+ /* IE6-9 */
1244
+ -webkit-filter: grayscale(100%);
1245
+ /* Chrome 19+, Safari 6+, Safari 6+ iOS */
1246
+ -webkit-transition: all 0.2s ease-out;
1247
+ -moz-transition: all 0.2s ease-out;
1248
+ transition: all 0.2s ease-out;
1249
+ }
1250
+ .customers .item img:hover {
1251
+ max-width: auto;
1252
+ filter: none;
1253
+ -webkit-filter: none;
1254
+ }
1255
+ .testimonials {
1256
+ padding: 0;
1257
+ margin-bottom: 40px;
1258
+ }
1259
+ .testimonials .item {
1260
+ list-style-type: none;
1261
+ margin: 0 5px;
1262
+ background: #fff;
1263
+ padding-bottom: 60px;
1264
+ -webkit-box-sizing: border-box;
1265
+ -moz-box-sizing: border-box;
1266
+ box-sizing: border-box;
1267
+ }
1268
+ .testimonials .item .testimonial {
1269
+ position: relative;
1270
+ padding: 20px;
1271
+ }
1272
+ .testimonials .item .testimonial:before,
1273
+ .testimonials .item .testimonial:after {
1274
+ content: " ";
1275
+ display: table;
1276
+ }
1277
+ .testimonials .item .testimonial:after {
1278
+ clear: both;
1279
+ }
1280
+ .testimonials .item .testimonial:before,
1281
+ .testimonials .item .testimonial:after {
1282
+ content: " ";
1283
+ display: table;
1284
+ }
1285
+ .testimonials .item .testimonial:after {
1286
+ clear: both;
1287
+ }
1288
+ .testimonials .item .testimonial .text {
1289
+ color: #999999;
1290
+ margin-bottom: 40px;
1291
+ }
1292
+ .testimonials .item .testimonial .bottom {
1293
+ position: absolute;
1294
+ left: 0;
1295
+ bottom: 0;
1296
+ width: 100%;
1297
+ -webkit-box-sizing: border-box;
1298
+ -moz-box-sizing: border-box;
1299
+ box-sizing: border-box;
1300
+ padding: 20px;
1301
+ height: 50px;
1302
+ }
1303
+ .testimonials .item .testimonial .bottom .icon {
1304
+ color: #38a7bb;
1305
+ font-size: 30px;
1306
+ float: left;
1307
+ width: 20%;
1308
+ }
1309
+ .testimonials .item .testimonial .name-picture {
1310
+ float: right;
1311
+ width: 80%;
1312
+ text-align: right;
1313
+ }
1314
+ .testimonials .item .testimonial .name-picture h5 {
1315
+ font-size: 14px;
1316
+ text-transform: uppercase;
1317
+ letter-spacing: 0.08em;
1318
+ }
1319
+ .testimonials .item .testimonial .name-picture p {
1320
+ color: #999999;
1321
+ margin: 0;
1322
+ font-size: 12px;
1323
+ }
1324
+ .testimonials .item .testimonial .name-picture img {
1325
+ float: right;
1326
+ width: 60px;
1327
+ border-radius: 30px;
1328
+ margin-left: 10px;
1329
+ }
1330
+ .team-member {
1331
+ text-align: center;
1332
+ margin-bottom: 40px;
1333
+ }
1334
+ .team-member h3 {
1335
+ font-size: 18px;
1336
+ text-transform: uppercase;
1337
+ margin-bottom: 5px;
1338
+ letter-spacing: 0.08em;
1339
+ }
1340
+ .team-member h3 a {
1341
+ color: #555555;
1342
+ }
1343
+ .team-member p.role {
1344
+ color: #999999;
1345
+ font-size: 12px;
1346
+ text-transform: uppercase;
1347
+ letter-spacing: 0.06em;
1348
+ }
1349
+ .team-member .social {
1350
+ margin-bottom: 20px;
1351
+ }
1352
+ .team-member .social a {
1353
+ margin: 0 10px 0 0;
1354
+ color: #fff;
1355
+ display: inline-block;
1356
+ width: 26px;
1357
+ height: 26px;
1358
+ border-radius: 13px;
1359
+ line-height: 26px;
1360
+ font-size: 15px;
1361
+ text-align: center;
1362
+ -webkit-transition: all 0.2s ease-out;
1363
+ -moz-transition: all 0.2s ease-out;
1364
+ transition: all 0.2s ease-out;
1365
+ vertical-align: bottom;
1366
+ }
1367
+ .team-member .social a i {
1368
+ vertical-align: bottom;
1369
+ line-height: 26px;
1370
+ }
1371
+ .team-member .social a.linkedin {
1372
+ background-color: #0e76a8;
1373
+ }
1374
+ .team-member .social a.facebook {
1375
+ background-color: #4460ae;
1376
+ }
1377
+ .team-member .social a.gplus {
1378
+ background-color: #c21f25;
1379
+ }
1380
+ .team-member .social a.twitter {
1381
+ background-color: #3cf;
1382
+ }
1383
+ .team-member .social a.instagram {
1384
+ background-color: #cd4378;
1385
+ }
1386
+ .team-member .social a.email {
1387
+ background-color: #4a7f45;
1388
+ }
1389
+ .team-member .text p {
1390
+ color: #999999;
1391
+ font-size: 12px;
1392
+ }
1393
+ .team-member .social,
1394
+ .team-member-detail .social {
1395
+ margin-bottom: 20px;
1396
+ }
1397
+ .team-member .social a,
1398
+ .team-member-detail .social a {
1399
+ margin: 0 10px 0 0;
1400
+ color: #fff;
1401
+ display: inline-block;
1402
+ width: 26px;
1403
+ height: 26px;
1404
+ border-radius: 13px;
1405
+ line-height: 26px;
1406
+ font-size: 15px;
1407
+ text-align: center;
1408
+ -webkit-transition: all 0.2s ease-out;
1409
+ -moz-transition: all 0.2s ease-out;
1410
+ transition: all 0.2s ease-out;
1411
+ vertical-align: bottom;
1412
+ }
1413
+ .team-member .social a i,
1414
+ .team-member-detail .social a i {
1415
+ vertical-align: bottom;
1416
+ line-height: 26px;
1417
+ }
1418
+
1419
+ .team-member .social a.linkedin,
1420
+ .team-member-detail .social a.linkedin {
1421
+ background-color: #0e76a8;
1422
+ }
1423
+ .team-member .social a.facebook,
1424
+ .team-member-detail .social a.facebook {
1425
+ background-color: #4460ae;
1426
+ }
1427
+ .team-member .social a.gplus,
1428
+ .team-member-detail .social a.gplus {
1429
+ background-color: #c21f25;
1430
+ }
1431
+ .team-member .social a.twitter,
1432
+ .team-member-detail .social a.twitter {
1433
+ background-color: #3cf;
1434
+ }
1435
+ .team-member .social a.instagram,
1436
+ .team-member-detail .social a.instagram {
1437
+ background-color: #cd4378;
1438
+ }
1439
+ .team-member .social a.email,
1440
+ .team-member-detail .social a.email {
1441
+ background-color: #4a7f45;
1442
+ }
1443
+ .box-simple {
1444
+ text-align: center;
1445
+ margin-bottom: 40px;
1446
+ }
1447
+ .box-simple .icon {
1448
+ color: #38a7bb;
1449
+ border-color: #38a7bb;
1450
+ -webkit-transition: all 0.2s ease-out;
1451
+ -moz-transition: all 0.2s ease-out;
1452
+ transition: all 0.2s ease-out;
1453
+ }
1454
+ .box-simple h3 {
1455
+ font-weight: normal;
1456
+ font-size: 18px;
1457
+ text-transform: uppercase;
1458
+ line-height: 1.5;
1459
+ color: #555555;
1460
+ font-weight: 800;
1461
+ letter-spacing: 0.08em;
1462
+ }
1463
+ .box-simple h3 a {
1464
+ color: #555555;
1465
+ }
1466
+ .box-simple p {
1467
+ color: #999999;
1468
+ }
1469
+ .box-simple:hover .icon {
1470
+ -webkit-transform: scale(1.1, 1.1);
1471
+ -ms-transform: scale(1.1, 1.1);
1472
+ -o-transform: scale(1.1, 1.1);
1473
+ transform: scale(1.1, 1.1);
1474
+ }
1475
+ .box-simple:hover .icon i {
1476
+ -webkit-transform: scale(1, 1);
1477
+ -ms-transform: scale(1, 1);
1478
+ -o-transform: scale(1, 1);
1479
+ transform: scale(1, 1);
1480
+ }
1481
+ .box-simple.box-white {
1482
+ padding: 20px;
1483
+ border: dotted 1px #999999;
1484
+ }
1485
+ .box-simple.box-white .icon {
1486
+ color: #555555;
1487
+ border-color: transparent;
1488
+ font-size: 70px;
1489
+ }
1490
+ .box-simple.box-dark {
1491
+ padding: 20px;
1492
+ border: dotted 1px #999999;
1493
+ background: #555555;
1494
+ color: #fff;
1495
+ }
1496
+ .box-simple.box-dark .icon {
1497
+ color: #f7f7f7;
1498
+ border-color: transparent;
1499
+ font-size: 70px;
1500
+ }
1501
+ .box-simple.box-dark h3 {
1502
+ color: #fff;
1503
+ }
1504
+ .box-simple.box-dark h3 a {
1505
+ color: #fff;
1506
+ }
1507
+ .box-simple.box-dark p {
1508
+ color: #fff;
1509
+ }
1510
+ .box-image {
1511
+ position: relative;
1512
+ overflow: hidden;
1513
+ text-align: center;
1514
+ margin: 15px 0;
1515
+ }
1516
+ .box-image .bg {
1517
+ position: absolute;
1518
+ top: auto;
1519
+ bottom: 0;
1520
+ width: 100%;
1521
+ height: 100%;
1522
+ opacity: 0;
1523
+ filter: alpha(opacity=0);
1524
+ background: #38a7bb;
1525
+ }
1526
+ .box-image .name {
1527
+ position: absolute;
1528
+ width: 100%;
1529
+ height: 50%;
1530
+ bottom: 0;
1531
+ -webkit-transform: translate(0, 100%);
1532
+ -ms-transform: translate(0, 100%);
1533
+ -o-transform: translate(0, 100%);
1534
+ transform: translate(0, 100%);
1535
+ -webkit-transition: all 0.2s ease-out;
1536
+ -moz-transition: all 0.2s ease-out;
1537
+ transition: all 0.2s ease-out;
1538
+ color: #fff;
1539
+ padding: 0 20px;
1540
+ }
1541
+ .box-image .name h3 {
1542
+ color: #fff;
1543
+ text-transform: uppercase;
1544
+ font-size: 18px;
1545
+ letter-spacing: 0.08em;
1546
+ }
1547
+ .box-image .name h3 a {
1548
+ color: #fff;
1549
+ text-decoration: none;
1550
+ }
1551
+ .box-image .text {
1552
+ position: absolute;
1553
+ width: 100%;
1554
+ height: 50%;
1555
+ top: 0;
1556
+ -webkit-transform: translate(0, -150%);
1557
+ -ms-transform: translate(0, -150%);
1558
+ -o-transform: translate(0, -150%);
1559
+ transform: translate(0, -150%);
1560
+ -webkit-transition: all 0.2s ease-out;
1561
+ -moz-transition: all 0.2s ease-out;
1562
+ transition: all 0.2s ease-out;
1563
+ color: #fff;
1564
+ padding: 0 20px;
1565
+ }
1566
+ .box-image:hover .bg {
1567
+ opacity: 0.7;
1568
+ filter: alpha(opacity=70);
1569
+ }
1570
+ .box-image:hover .name {
1571
+ position: absolute;
1572
+ -webkit-transform: translate(0, -75%);
1573
+ -ms-transform: translate(0, -75%);
1574
+ -o-transform: translate(0, -75%);
1575
+ transform: translate(0, -75%);
1576
+ }
1577
+ .box-image:hover .text {
1578
+ position: absolute;
1579
+ -webkit-transform: translate(0, 100%);
1580
+ -ms-transform: translate(0, 100%);
1581
+ -o-transform: translate(0, 100%);
1582
+ transform: translate(0, 100%);
1583
+ }
1584
+ .box-image-text {
1585
+ position: relative;
1586
+ overflow: hidden;
1587
+ text-align: center;
1588
+ margin: 15px 0;
1589
+ }
1590
+ .box-image-text .top {
1591
+ position: relative;
1592
+ margin-bottom: 10px;
1593
+ }
1594
+ .box-image-text .top .bg {
1595
+ position: absolute;
1596
+ top: auto;
1597
+ bottom: 0;
1598
+ width: 100%;
1599
+ height: 100%;
1600
+ opacity: 0;
1601
+ filter: alpha(opacity=0);
1602
+ background: #38a7bb;
1603
+ }
1604
+ .box-image-text .top .name {
1605
+ position: absolute;
1606
+ width: 100%;
1607
+ height: 50%;
1608
+ bottom: 0;
1609
+ -webkit-transform: translate(0, 100%);
1610
+ -ms-transform: translate(0, 100%);
1611
+ -o-transform: translate(0, 100%);
1612
+ transform: translate(0, 100%);
1613
+ -webkit-transition: all 0.2s ease-out;
1614
+ -moz-transition: all 0.2s ease-out;
1615
+ transition: all 0.2s ease-out;
1616
+ color: #fff;
1617
+ padding: 0 20px;
1618
+ }
1619
+ .box-image-text .top .name h3 {
1620
+ color: #fff;
1621
+ text-transform: uppercase;
1622
+ font-size: 18px;
1623
+ letter-spacing: 0.08em;
1624
+ }
1625
+ .box-image-text .top .name h3 a {
1626
+ color: #fff;
1627
+ text-decoration: none;
1628
+ }
1629
+ .box-image-text .top .text {
1630
+ position: absolute;
1631
+ width: 100%;
1632
+ height: 50%;
1633
+ top: 0;
1634
+ -webkit-transform: translate(0, -150%);
1635
+ -ms-transform: translate(0, -150%);
1636
+ -o-transform: translate(0, -150%);
1637
+ transform: translate(0, -150%);
1638
+ -webkit-transition: all 0.2s ease-out;
1639
+ -moz-transition: all 0.2s ease-out;
1640
+ transition: all 0.2s ease-out;
1641
+ color: #fff;
1642
+ padding: 0 20px;
1643
+ }
1644
+ .box-image-text .content h3,
1645
+ .box-image-text .content h4 {
1646
+ text-transform: uppercase;
1647
+ line-height: 1.5;
1648
+ color: #555555;
1649
+ font-weight: 800;
1650
+ letter-spacing: 0.08em;
1651
+ }
1652
+ .box-image-text .content p {
1653
+ color: #999999;
1654
+ }
1655
+ .box-image-text:hover .bg {
1656
+ opacity: 0.7;
1657
+ filter: alpha(opacity=70);
1658
+ }
1659
+ .box-image-text:hover .name {
1660
+ position: absolute;
1661
+ -webkit-transform: translate(0, -75%);
1662
+ -ms-transform: translate(0, -75%);
1663
+ -o-transform: translate(0, -75%);
1664
+ transform: translate(0, -75%);
1665
+ }
1666
+ .box-image-text:hover .text {
1667
+ position: absolute;
1668
+ -webkit-transform: translate(0, 100%);
1669
+ -ms-transform: translate(0, 100%);
1670
+ -o-transform: translate(0, 100%);
1671
+ transform: translate(0, 100%);
1672
+ }
1673
+ /* universal box */
1674
+ .box {
1675
+ background: #fff;
1676
+ margin: 0 0 30px;
1677
+ border: solid 1px #ccc;
1678
+ -webkit-box-sizing: border-box;
1679
+ -moz-box-sizing: border-box;
1680
+ box-sizing: border-box;
1681
+ padding: 20px 0;
1682
+ border-left: none;
1683
+ border-right: none;
1684
+ }
1685
+ .box .box-header {
1686
+ background: #f7f7f7;
1687
+ margin: -20px 0 20px;
1688
+ padding: 20px;
1689
+ border-bottom: solid 1px #eeeeee;
1690
+ text-transform: uppercase;
1691
+ letter-spacing: 0.08em;
1692
+ }
1693
+ .box .box-header:before,
1694
+ .box .box-header:after {
1695
+ content: " ";
1696
+ display: table;
1697
+ }
1698
+ .box .box-header:after {
1699
+ clear: both;
1700
+ }
1701
+ .box .box-header:before,
1702
+ .box .box-header:after {
1703
+ content: " ";
1704
+ display: table;
1705
+ }
1706
+ .box .box-header:after {
1707
+ clear: both;
1708
+ }
1709
+ .box .box-footer {
1710
+ background: #f7f7f7;
1711
+ margin: 30px 0 -20px;
1712
+ padding: 20px;
1713
+ border-top: solid 1px #eeeeee;
1714
+ }
1715
+ .box .box-footer:before,
1716
+ .box .box-footer:after {
1717
+ content: " ";
1718
+ display: table;
1719
+ }
1720
+ .box .box-footer:after {
1721
+ clear: both;
1722
+ }
1723
+ .box .box-footer:before,
1724
+ .box .box-footer:after {
1725
+ content: " ";
1726
+ display: table;
1727
+ }
1728
+ .box .box-footer:after {
1729
+ clear: both;
1730
+ }
1731
+ @media (max-width: 991px) {
1732
+ .box .box-footer .btn {
1733
+ margin-bottom: 20px;
1734
+ }
1735
+ }
1736
+ .box.no-border {
1737
+ border: none;
1738
+ }
1739
+ #heading-breadcrumbs {
1740
+ background: url('../img/texture-bw.png') center center repeat;
1741
+ padding: 20px 0;
1742
+ margin-bottom: 40px;
1743
+ }
1744
+ #heading-breadcrumbs.no-mb {
1745
+ margin-bottom: 0;
1746
+ }
1747
+ #heading-breadcrumbs h1 {
1748
+ color: #333333;
1749
+ text-transform: uppercase;
1750
+ font-size: 30px;
1751
+ font-weight: 700;
1752
+ letter-spacing: 0.08em;
1753
+ }
1754
+ @media (max-width: 991px) {
1755
+ #heading-breadcrumbs h1 {
1756
+ text-align: center;
1757
+ }
1758
+ }
1759
+ #heading-breadcrumbs ul.breadcrumb {
1760
+ margin-top: 5px;
1761
+ margin-bottom: 0;
1762
+ }
1763
+ .bar {
1764
+ position: relative;
1765
+ background: #38a7bb;
1766
+ padding: 60px 0;
1767
+ }
1768
+ .bar.background-pentagon {
1769
+ background: url('../img/texture-bw.png') center center repeat;
1770
+ border-top: solid 1px #999999;
1771
+ border-bottom: solid 1px #999999;
1772
+ }
1773
+ .bar.background-gray {
1774
+ background: #eeeeee;
1775
+ }
1776
+ .bar.background-gray-dark {
1777
+ background: #555555;
1778
+ }
1779
+ .bar.background-white {
1780
+ background: #fff;
1781
+ }
1782
+ .bar.background-image-fixed-1 {
1783
+ background: url('../img/fixed-background-1.jpg') center top no-repeat;
1784
+ background-attachment: fixed;
1785
+ background-size: cover;
1786
+ }
1787
+ .bar.background-image-fixed-2 {
1788
+ background: url('../img/fixed-background-2.jpg') center top no-repeat;
1789
+ background-attachment: fixed;
1790
+ background-size: cover;
1791
+ }
1792
+ .bar.color-white h1,
1793
+ .bar.color-white h2,
1794
+ .bar.color-white h3,
1795
+ .bar.color-white h4,
1796
+ .bar.color-white h5,
1797
+ .bar.color-white h6,
1798
+ .bar.color-white p {
1799
+ color: #fff;
1800
+ }
1801
+ .bar.padding-big {
1802
+ padding: 50px 0;
1803
+ }
1804
+ .bar.padding-horizontal {
1805
+ padding-left: 30px;
1806
+ padding-right: 30px;
1807
+ }
1808
+ .bar.margin-vertical {
1809
+ margin-top: 20px;
1810
+ margin-bottom: 20px;
1811
+ }
1812
+ .bar .dark-mask {
1813
+ position: absolute;
1814
+ top: 0;
1815
+ left: 0;
1816
+ width: 100%;
1817
+ height: 100%;
1818
+ background: #000;
1819
+ opacity: 0.3;
1820
+ filter: alpha(opacity=30);
1821
+ }
1822
+ .portfolio.no-space {
1823
+ padding: 0 15px;
1824
+ }
1825
+ .portfolio.no-space .box-image {
1826
+ margin: 0 -15px;
1827
+ }
1828
+ .portfolio-project .project-more h4 {
1829
+ color: #555555;
1830
+ text-transform: uppercase;
1831
+ margin-bottom: 0;
1832
+ text-align: left;
1833
+ font-size: 14px;
1834
+ letter-spacing: 0.08em;
1835
+ }
1836
+ .portfolio-project .project-more p {
1837
+ color: #999999;
1838
+ padding: 10px 0;
1839
+ margin-bottom: 20px;
1840
+ text-align: left;
1841
+ }
1842
+ .portfolio-showcase {
1843
+ margin: 15px 0 60px;
1844
+ }
1845
+ .portfolio-showcase h3 a {
1846
+ text-transform: uppercase;
1847
+ line-height: 1.5;
1848
+ letter-spacing: 0.08em;
1849
+ }
1850
+ .portfolio-showcase p.lead {
1851
+ color: #555555;
1852
+ margin-bottom: 20px;
1853
+ }
1854
+ .portfolio-showcase p {
1855
+ color: #999999;
1856
+ }
1857
+ .portfolio-showcase p.buttons {
1858
+ margin-top: 40px;
1859
+ }
1860
+ .see-more {
1861
+ text-align: center;
1862
+ margin-top: 20px;
1863
+ padding-top: 20px;
1864
+ }
1865
+ .see-more p {
1866
+ font-size: 28px;
1867
+ font-weight: 100;
1868
+ margin-bottom: 20px;
1869
+ }
1870
+ .showcase .item {
1871
+ text-align: center;
1872
+ }
1873
+ .showcase .item .icon {
1874
+ display: inline-block;
1875
+ width: 50px;
1876
+ height: 50px;
1877
+ color: #555555;
1878
+ line-height: 50px;
1879
+ border-radius: 25px;
1880
+ border: solid 1px #555555;
1881
+ }
1882
+ .showcase .item h4 {
1883
+ color: #555555;
1884
+ text-transform: uppercase;
1885
+ letter-spacing: 0.08em;
1886
+ line-height: 1.5;
1887
+ font-size: 16px;
1888
+ }
1889
+ .showcase .item h4 span {
1890
+ font-weight: bold;
1891
+ font-size: 51px;
1892
+ }
1893
+ .packages .package {
1894
+ background: #fff;
1895
+ margin-top: 25px;
1896
+ margin-bottom: 20px;
1897
+ padding-bottom: 15px;
1898
+ text-align: center;
1899
+ border: solid 1px #38a7bb;
1900
+ overflow: hidden;
1901
+ }
1902
+ .packages .package .package-header {
1903
+ height: 57px;
1904
+ color: #fff;
1905
+ line-height: 57px;
1906
+ background: #38a7bb;
1907
+ }
1908
+ .packages .package .package-header h5 {
1909
+ color: #fff;
1910
+ text-transform: uppercase;
1911
+ font-weight: bold;
1912
+ line-height: 57px;
1913
+ margin: 0;
1914
+ letter-spacing: 0.08em;
1915
+ }
1916
+ .packages .package .package-header.light-gray {
1917
+ background: #eeeeee;
1918
+ }
1919
+ .packages .package .package-header.light-gray h5 {
1920
+ color: #555555;
1921
+ }
1922
+ .packages .package .price {
1923
+ line-height: 120px;
1924
+ height: 100px;
1925
+ color: #fff;
1926
+ font-weight: 400;
1927
+ }
1928
+ .packages .package .price h4 {
1929
+ display: inline;
1930
+ font-size: 50px;
1931
+ line-height: normal;
1932
+ margin-bottom: 0;
1933
+ }
1934
+ .packages .package .price .period {
1935
+ line-height: normal;
1936
+ color: #999999;
1937
+ }
1938
+ .packages .package ul {
1939
+ padding: 0;
1940
+ }
1941
+ .packages .package ul li {
1942
+ list-style-type: none;
1943
+ padding-top: 10px;
1944
+ padding-bottom: 10px;
1945
+ width: 80%;
1946
+ margin: auto;
1947
+ border-bottom: 1px dotted #ccc;
1948
+ }
1949
+ .packages .package ul li:last-child {
1950
+ border-bottom: 0;
1951
+ }
1952
+ .packages .package ul li i {
1953
+ font-size: 13px;
1954
+ margin-right: 5px;
1955
+ }
1956
+ .packages .best-value .package {
1957
+ margin-top: 0;
1958
+ padding-bottom: 40px;
1959
+ }
1960
+ .packages .best-value .package .package-header {
1961
+ height: 72px;
1962
+ padding-top: 17px;
1963
+ height: 82px !important;
1964
+ }
1965
+ .packages .best-value .package .package-header h5 {
1966
+ font-weight: bold;
1967
+ line-height: 29px;
1968
+ text-transform: uppercase;
1969
+ letter-spacing: 0.08em;
1970
+ }
1971
+ .packages .best-value .package .package-header .meta-text {
1972
+ font-size: 13px;
1973
+ line-height: 15px;
1974
+ }
1975
+ #map {
1976
+ height: 300px;
1977
+ }
1978
+ #map.with-border {
1979
+ border-top: solid 1px #38a7bb;
1980
+ border-bottom: solid 1px #38a7bb;
1981
+ }
1982
+ #blog-listing-big .post,
1983
+ #blog-homepage .post {
1984
+ margin-bottom: 60px;
1985
+ }
1986
+ #blog-listing-big .post h2,
1987
+ #blog-homepage .post h2,
1988
+ #blog-listing-big .post h4,
1989
+ #blog-homepage .post h4 {
1990
+ text-transform: uppercase;
1991
+ letter-spacing: 0.08em;
1992
+ }
1993
+ #blog-listing-big .post h2 a,
1994
+ #blog-homepage .post h2 a,
1995
+ #blog-listing-big .post h4 a,
1996
+ #blog-homepage .post h4 a {
1997
+ color: #555555;
1998
+ }
1999
+ #blog-listing-big .post h2 a:hover,
2000
+ #blog-homepage .post h2 a:hover,
2001
+ #blog-listing-big .post h4 a:hover,
2002
+ #blog-homepage .post h4 a:hover {
2003
+ color: #38a7bb;
2004
+ }
2005
+ #blog-listing-big .post .author-category,
2006
+ #blog-homepage .post .author-category {
2007
+ color: #999999;
2008
+ text-transform: uppercase;
2009
+ font-weight: 300;
2010
+ letter-spacing: 0.08em;
2011
+ }
2012
+ #blog-listing-big .post .author-category a,
2013
+ #blog-homepage .post .author-category a {
2014
+ font-weight: 500;
2015
+ }
2016
+ #blog-listing-big .post .date-comments a,
2017
+ #blog-homepage .post .date-comments a {
2018
+ color: #999999;
2019
+ margin-right: 20px;
2020
+ }
2021
+ #blog-listing-big .post .date-comments a:hover,
2022
+ #blog-homepage .post .date-comments a:hover {
2023
+ color: #38a7bb;
2024
+ }
2025
+ @media (min-width: 768px) {
2026
+ #blog-listing-big .post .date-comments,
2027
+ #blog-homepage .post .date-comments {
2028
+ text-align: right;
2029
+ }
2030
+ }
2031
+ #blog-listing-big .post .intro,
2032
+ #blog-homepage .post .intro {
2033
+ text-align: left;
2034
+ }
2035
+ #blog-listing-big .post .image,
2036
+ #blog-homepage .post .image {
2037
+ margin-bottom: 10px;
2038
+ overflow: hidden;
2039
+ }
2040
+ #blog-listing-big .post .image img,
2041
+ #blog-homepage .post .image img {
2042
+ -webkit-transition: all 0.2s ease-out;
2043
+ -moz-transition: all 0.2s ease-out;
2044
+ transition: all 0.2s ease-out;
2045
+ }
2046
+ @media (max-width: 767px) {
2047
+ #blog-listing-big .post .image img.img-responsive,
2048
+ #blog-homepage .post .image img.img-responsive {
2049
+ min-width: 100%;
2050
+ }
2051
+ }
2052
+ #blog-listing-big .post .video,
2053
+ #blog-homepage .post .video {
2054
+ margin-bottom: 10px;
2055
+ }
2056
+ #blog-listing-big .post .read-more,
2057
+ #blog-homepage .post .read-more {
2058
+ text-align: right;
2059
+ }
2060
+ #blog-listing-medium .post {
2061
+ margin-bottom: 60px;
2062
+ }
2063
+ #blog-listing-medium .post h2 {
2064
+ text-transform: uppercase;
2065
+ margin: 0 0 10px;
2066
+ font-size: 24px;
2067
+ letter-spacing: 0.08em;
2068
+ }
2069
+ #blog-listing-medium .post h2 a {
2070
+ color: #555555;
2071
+ }
2072
+ #blog-listing-medium .post h2 a:hover {
2073
+ color: #38a7bb;
2074
+ }
2075
+ #blog-listing-medium .post .author-category {
2076
+ float: left;
2077
+ color: #999999;
2078
+ text-transform: uppercase;
2079
+ font-weight: 300;
2080
+ font-size: 12px;
2081
+ letter-spacing: 0.08em;
2082
+ }
2083
+ #blog-listing-medium .post .author-category a {
2084
+ font-weight: 500;
2085
+ }
2086
+ #blog-listing-medium .post .date-comments {
2087
+ float: right;
2088
+ font-size: 12px;
2089
+ }
2090
+ #blog-listing-medium .post .date-comments a {
2091
+ color: #999999;
2092
+ margin-right: 20px;
2093
+ }
2094
+ #blog-listing-medium .post .date-comments a:hover {
2095
+ color: #38a7bb;
2096
+ }
2097
+ @media (min-width: 768px) {
2098
+ #blog-listing-medium .post .date-comments {
2099
+ text-align: right;
2100
+ }
2101
+ }
2102
+ #blog-listing-medium .post .intro {
2103
+ text-align: left;
2104
+ }
2105
+ #blog-listing-medium .post .clearfix:before,
2106
+ #blog-listing-medium .post .clearfix:after,
2107
+ #blog-listing-medium .post .navbar:before,
2108
+ #blog-listing-medium .post .navbar:after,
2109
+ #blog-listing-medium .post .navbar-header:before,
2110
+ #blog-listing-medium .post .navbar-header:after {
2111
+ content: " ";
2112
+ display: table;
2113
+ }
2114
+ #blog-listing-medium .post .clearfix:after,
2115
+ #blog-listing-medium .post .navbar:after,
2116
+ #blog-listing-medium .post .navbar-header:after {
2117
+ clear: both;
2118
+ }
2119
+ #blog-listing-medium .post .clearfix:before,
2120
+ #blog-listing-medium .post .clearfix:after,
2121
+ #blog-listing-medium .post .navbar:before,
2122
+ #blog-listing-medium .post .navbar:after,
2123
+ #blog-listing-medium .post .navbar-header:before,
2124
+ #blog-listing-medium .post .navbar-header:after {
2125
+ content: " ";
2126
+ display: table;
2127
+ }
2128
+ #blog-listing-medium .post .clearfix:after,
2129
+ #blog-listing-medium .post .navbar:after,
2130
+ #blog-listing-medium .post .navbar-header:after {
2131
+ clear: both;
2132
+ }
2133
+ #blog-listing-medium .post .image {
2134
+ margin-bottom: 10px;
2135
+ overflow: hidden;
2136
+ }
2137
+ #blog-listing-medium .post .image img {
2138
+ -webkit-transition: all 0.2s ease-out;
2139
+ -moz-transition: all 0.2s ease-out;
2140
+ transition: all 0.2s ease-out;
2141
+ }
2142
+ @media (max-width: 767px) {
2143
+ #blog-listing-medium .post .image img.img-responsive {
2144
+ min-width: 100%;
2145
+ }
2146
+ }
2147
+ #blog-listing-medium .post .video {
2148
+ margin-bottom: 10px;
2149
+ }
2150
+ #blog-listing-medium .post .read-more {
2151
+ text-align: right;
2152
+ }
2153
+ .box-image-text.blog .author-category {
2154
+ color: #999999;
2155
+ text-transform: uppercase;
2156
+ letter-spacing: 0.08em;
2157
+ font-weight: 300;
2158
+ font-size: 12px;
2159
+ }
2160
+ .box-image-text.blog .author-category a {
2161
+ font-weight: 500;
2162
+ }
2163
+ .box-image-text.blog .intro {
2164
+ text-align: left;
2165
+ margin-bottom: 20px;
2166
+ }
2167
+ #blog-homepage .post {
2168
+ margin-bottom: 30px;
2169
+ }
2170
+ #blog-homepage .post h2,
2171
+ #blog-homepage .post h4,
2172
+ #blog-homepage .post .author-category,
2173
+ #blog-homepage .post .read-more {
2174
+ text-align: center;
2175
+ }
2176
+ #blog-homepage .post .read-more {
2177
+ margin-top: 20px;
2178
+ }
2179
+ #blog-post #post-content {
2180
+ margin-bottom: 20px;
2181
+ }
2182
+ #blog-post .comment {
2183
+ margin-bottom: 25px;
2184
+ }
2185
+ #blog-post .comment:before,
2186
+ #blog-post .comment:after {
2187
+ content: " ";
2188
+ display: table;
2189
+ }
2190
+ #blog-post .comment:after {
2191
+ clear: both;
2192
+ }
2193
+ #blog-post .comment:before,
2194
+ #blog-post .comment:after {
2195
+ content: " ";
2196
+ display: table;
2197
+ }
2198
+ #blog-post .comment:after {
2199
+ clear: both;
2200
+ }
2201
+ #blog-post .comment .posted {
2202
+ color: #999999;
2203
+ font-size: 12px;
2204
+ }
2205
+ #blog-post .comment .reply {
2206
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
2207
+ }
2208
+ #blog-post .comment.last {
2209
+ margin-bottom: 0;
2210
+ }
2211
+ #blog-post #comments,
2212
+ #blog-post #comment-form {
2213
+ padding: 20px 0;
2214
+ margin-top: 20px;
2215
+ border-top: solid 1px #eeeeee;
2216
+ }
2217
+ #blog-post #comments:before,
2218
+ #blog-post #comment-form:before,
2219
+ #blog-post #comments:after,
2220
+ #blog-post #comment-form:after {
2221
+ content: " ";
2222
+ display: table;
2223
+ }
2224
+ #blog-post #comments:after,
2225
+ #blog-post #comment-form:after {
2226
+ clear: both;
2227
+ }
2228
+ #blog-post #comments:before,
2229
+ #blog-post #comment-form:before,
2230
+ #blog-post #comments:after,
2231
+ #blog-post #comment-form:after {
2232
+ content: " ";
2233
+ display: table;
2234
+ }
2235
+ #blog-post #comments:after,
2236
+ #blog-post #comment-form:after {
2237
+ clear: both;
2238
+ }
2239
+ #blog-post #comments h4,
2240
+ #blog-post #comment-form h4 {
2241
+ margin-bottom: 20px;
2242
+ }
2243
+ #blog-post #comment-form {
2244
+ margin-bottom: 20px;
2245
+ }
2246
+ .product {
2247
+ background: #fff;
2248
+ border-bottom: solid 1px #e6e6e6;
2249
+ -webkit-box-sizing: border-box;
2250
+ -moz-box-sizing: border-box;
2251
+ box-sizing: border-box;
2252
+ margin-bottom: 60px;
2253
+ overflow: hidden;
2254
+ text-align: center;
2255
+ }
2256
+ .product .image {
2257
+ overflow: hidden;
2258
+ }
2259
+ .product .image img {
2260
+ -webkit-transition: all 0.2s ease-out;
2261
+ -moz-transition: all 0.2s ease-out;
2262
+ transition: all 0.2s ease-out;
2263
+ }
2264
+ @media (max-width: 767px) {
2265
+ .product .image img.img-responsive {
2266
+ min-width: 100%;
2267
+ }
2268
+ }
2269
+ .product .text {
2270
+ padding: 10px;
2271
+ }
2272
+ .product .text h3 {
2273
+ font-size: 14px;
2274
+ font-weight: 700;
2275
+ height: 39.6px;
2276
+ text-transform: uppercase;
2277
+ letter-spacing: 0.08em;
2278
+ }
2279
+ .product .text h3 a {
2280
+ color: #555555;
2281
+ }
2282
+ .product .text h3 a:hover {
2283
+ text-decoration: none;
2284
+ }
2285
+ .product .text p.price {
2286
+ font-size: 18px;
2287
+ }
2288
+ .product .text p.price del {
2289
+ color: #999999;
2290
+ }
2291
+ .product .buttons {
2292
+ clear: both;
2293
+ position: absolute;
2294
+ display: none;
2295
+ bottom: 0;
2296
+ -webkit-box-sizing: border-box;
2297
+ -moz-box-sizing: border-box;
2298
+ box-sizing: border-box;
2299
+ width: 100%;
2300
+ border: solid 1px transparent;
2301
+ padding: 20px;
2302
+ background: rgba(255, 255, 255, 0.9);
2303
+ -webkit-transition: all 0.2s ease-out;
2304
+ -moz-transition: all 0.2s ease-out;
2305
+ transition: all 0.2s ease-out;
2306
+ text-align: center;
2307
+ }
2308
+ .product .buttons .btn {
2309
+ margin-bottom: 20px;
2310
+ }
2311
+ .product:hover {
2312
+ border-bottom: solid 1px #808080;
2313
+ top: 0;
2314
+ }
2315
+ .product:hover .buttons {
2316
+ clear: both;
2317
+ position: absolute;
2318
+ top: 0;
2319
+ background: rgba(255, 255, 255, 0.5);
2320
+ }
2321
+ .product:hover .image img {
2322
+ -webkit-transform: scale(1.1, 1.1);
2323
+ -ms-transform: scale(1.1, 1.1);
2324
+ -o-transform: scale(1.1, 1.1);
2325
+ transform: scale(1.1, 1.1);
2326
+ }
2327
+ .goToDescription {
2328
+ font-size: 12px;
2329
+ text-align: center;
2330
+ margin-bottom: 40px;
2331
+ }
2332
+ .goToDescription a {
2333
+ color: #999999;
2334
+ text-decoration: underline;
2335
+ }
2336
+ #productMain {
2337
+ margin-bottom: 30px;
2338
+ }
2339
+ #productMain .sizes {
2340
+ text-align: center;
2341
+ }
2342
+ #productMain .sizes h3 {
2343
+ font-weight: 700;
2344
+ letter-spacing: 0.08em;
2345
+ text-transform: uppercase;
2346
+ margin-bottom: 40px;
2347
+ }
2348
+ #productMain .sizes a {
2349
+ display: inline-block;
2350
+ width: 40px;
2351
+ height: 40px;
2352
+ border-radius: 40px;
2353
+ background: #ccc;
2354
+ line-height: 40px;
2355
+ color: #555555;
2356
+ text-align: center;
2357
+ text-decoration: none;
2358
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
2359
+ }
2360
+ #productMain .sizes a.active,
2361
+ #productMain .sizes a:hover {
2362
+ background: #38a7bb;
2363
+ color: #fff;
2364
+ }
2365
+ #productMain .sizes input {
2366
+ display: none;
2367
+ }
2368
+ #productMain .price {
2369
+ font-size: 40px;
2370
+ text-align: center;
2371
+ margin-top: 40px;
2372
+ margin-bottom: 40px;
2373
+ }
2374
+ #thumbs a {
2375
+ display: block;
2376
+ border: solid 1px transparent;
2377
+ }
2378
+ #thumbs a.active {
2379
+ border-color: #38a7bb;
2380
+ }
2381
+ #product-social {
2382
+ text-align: center;
2383
+ }
2384
+ #product-social h4 {
2385
+ font-weight: 300;
2386
+ margin-bottom: 10px;
2387
+ }
2388
+ #product-social p {
2389
+ line-height: 26px;
2390
+ }
2391
+ #product-social p a {
2392
+ margin: 0 10px 0 0;
2393
+ color: #fff;
2394
+ display: inline-block;
2395
+ width: 26px;
2396
+ height: 26px;
2397
+ border-radius: 13px;
2398
+ line-height: 26px;
2399
+ font-size: 15px;
2400
+ text-align: center;
2401
+ -webkit-transition: all 0.2s ease-out;
2402
+ -moz-transition: all 0.2s ease-out;
2403
+ transition: all 0.2s ease-out;
2404
+ vertical-align: bottom;
2405
+ }
2406
+ #product-social p a i {
2407
+ vertical-align: bottom;
2408
+ line-height: 26px;
2409
+ }
2410
+ #product-social p a.linkedin {
2411
+ background-color: #0e76a8;
2412
+ }
2413
+ #product-social p a.facebook {
2414
+ background-color: #4460ae;
2415
+ }
2416
+ #product-social p a.gplus {
2417
+ background-color: #c21f25;
2418
+ }
2419
+ #product-social p a.twitter {
2420
+ background-color: #3cf;
2421
+ }
2422
+ #product-social p a.instagram {
2423
+ background-color: #cd4378;
2424
+ }
2425
+ #product-social p a.email {
2426
+ background-color: #4a7f45;
2427
+ }
2428
+ @media (max-width: 991px) {
2429
+ #product-social {
2430
+ text-align: center;
2431
+ }
2432
+ }
2433
+ #checkout .nav {
2434
+ margin-bottom: 20px;
2435
+ border-bottom: solid 1px #38a7bb;
2436
+ }
2437
+ #checkout .nav li {
2438
+ height: 100%;
2439
+ }
2440
+ #checkout .nav li a {
2441
+ display: block;
2442
+ height: 100%;
2443
+ }
2444
+ #order-summary table {
2445
+ margin-top: 20px;
2446
+ }
2447
+ #order-summary table td {
2448
+ color: #999999;
2449
+ }
2450
+ #order-summary table tr.total td,
2451
+ #order-summary table tr.total th {
2452
+ font-size: 18px;
2453
+ color: #555555;
2454
+ font-weight: 700;
2455
+ }
2456
+ #checkout .table tbody tr td,
2457
+ #basket .table tbody tr td,
2458
+ #customer-order .table tbody tr td {
2459
+ vertical-align: middle;
2460
+ }
2461
+ #checkout .table tbody tr td input,
2462
+ #basket .table tbody tr td input,
2463
+ #customer-order .table tbody tr td input {
2464
+ width: 50px;
2465
+ text-align: right;
2466
+ }
2467
+ #checkout .table tbody tr td img,
2468
+ #basket .table tbody tr td img,
2469
+ #customer-order .table tbody tr td img {
2470
+ width: 50px;
2471
+ }
2472
+ #checkout .table tfoot,
2473
+ #basket .table tfoot,
2474
+ #customer-order .table tfoot {
2475
+ font-size: 18px;
2476
+ }
2477
+ .shipping-method h4,
2478
+ .payment-method h4 {
2479
+ text-transform: uppercase;
2480
+ letter-spacing: 0.08em;
2481
+ }
2482
+ #customer-orders table tr th,
2483
+ #customer-orders table tr td {
2484
+ vertical-align: baseline;
2485
+ }
2486
+ #customer-order .table tfoot th {
2487
+ font-size: 18px;
2488
+ font-weight: 300;
2489
+ }
2490
+ #customer-order .addresses {
2491
+ text-align: right;
2492
+ margin-bottom: 30px;
2493
+ }
2494
+ #customer-order .addresses p {
2495
+ font-size: 18px;
2496
+ font-weight: 300;
2497
+ }
2498
+ #customer-account {
2499
+ margin-bottom: 30px;
2500
+ }
2501
+ #get-it {
2502
+ background: #38a7bb;
2503
+ padding: 50px 0 30px;
2504
+ color: #fff;
2505
+ text-align: center;
2506
+ }
2507
+ #get-it h1,
2508
+ #get-it h2,
2509
+ #get-it h3,
2510
+ #get-it h4,
2511
+ #get-it h5,
2512
+ #get-it h6 {
2513
+ color: #fff;
2514
+ text-transform: uppercase;
2515
+ letter-spacing: 0.08em;
2516
+ margin: 0 0 20px;
2517
+ }
2518
+ #get-it p {
2519
+ margin: 0 0 20px;
2520
+ }
2521
+ #footer {
2522
+ background: #555555;
2523
+ padding: 50px 0;
2524
+ color: #999999;
2525
+ }
2526
+ #footer h1,
2527
+ #footer h2,
2528
+ #footer h3,
2529
+ #footer h4,
2530
+ #footer h5,
2531
+ #footer h6 {
2532
+ color: #eeeeee;
2533
+ }
2534
+ #footer h4 {
2535
+ font-size: 14px;
2536
+ font-weight: 800;
2537
+ text-transform: uppercase;
2538
+ letter-spacing: 0.08em;
2539
+ }
2540
+ #footer ul {
2541
+ padding-left: 0;
2542
+ list-style: none;
2543
+ }
2544
+ #footer ul a {
2545
+ color: #999999;
2546
+ }
2547
+ #footer ul a:hover {
2548
+ color: #38a7bb;
2549
+ text-decoration: none;
2550
+ }
2551
+ #footer .photostream div {
2552
+ float: left;
2553
+ display: block;
2554
+ -webkit-box-sizing: border-box;
2555
+ -moz-box-sizing: border-box;
2556
+ box-sizing: border-box;
2557
+ width: 33%;
2558
+ padding: 7.5px;
2559
+ overflow: hidden;
2560
+ }
2561
+ #footer .photostream div a {
2562
+ border: solid 1 px #eeeeee;
2563
+ }
2564
+ #footer .photostream div img {
2565
+ -webkit-transition: all 0.2s ease-out;
2566
+ -moz-transition: all 0.2s ease-out;
2567
+ transition: all 0.2s ease-out;
2568
+ }
2569
+ #footer .photostream div:hover img {
2570
+ -webkit-transform: scale(1.1, 1.1);
2571
+ -ms-transform: scale(1.1, 1.1);
2572
+ -o-transform: scale(1.1, 1.1);
2573
+ transform: scale(1.1, 1.1);
2574
+ }
2575
+ #footer .blog-entries .item {
2576
+ clear: both;
2577
+ padding: 5px 0;
2578
+ margin-bottom: 10px;
2579
+ border-bottom: solid 1px #555555;
2580
+ }
2581
+ #footer .blog-entries .item .image {
2582
+ float: left;
2583
+ width: 15%;
2584
+ margin-right: 10px;
2585
+ }
2586
+ #footer .blog-entries .item .name {
2587
+ width: 75%;
2588
+ margin-left: 10px;
2589
+ display: table-cell;
2590
+ vertical-align: middle;
2591
+ }
2592
+ #footer .blog-entries .item .name h5 {
2593
+ margin: 0;
2594
+ text-transform: uppercase;
2595
+ letter-spacing: 0.08em;
2596
+ font-size: 12px;
2597
+ }
2598
+ #footer .blog-entries .item .name h5 a {
2599
+ color: #eeeeee;
2600
+ }
2601
+ #footer .blog-entries .item .text {
2602
+ width: 100%;
2603
+ clear: both;
2604
+ }
2605
+ #footer .blog-entries .item:last-child {
2606
+ border-bottom: none;
2607
+ margin-bottom: 0;
2608
+ }
2609
+ #footer .social a {
2610
+ color: #555555;
2611
+ font-size: 25px;
2612
+ margin: 0 10px 0 0;
2613
+ }
2614
+ #footer .social a:hover {
2615
+ color: #38a7bb;
2616
+ }
2617
+ #copyright {
2618
+ background: #333;
2619
+ color: #ccc;
2620
+ padding: 50px 0;
2621
+ font-size: 12px;
2622
+ line-height: 28px;
2623
+ }
2624
+ #copyright p {
2625
+ margin: 0;
2626
+ }
2627
+ @media (max-width: 991px) {
2628
+ #copyright p {
2629
+ float: none !important;
2630
+ text-align: center;
2631
+ margin-bottom: 10px;
2632
+ }
2633
+ }
2634
+ [data-animate] {
2635
+ opacity: 0;
2636
+ filter: alpha(opacity=0);
2637
+ }
2638
+ #style-switch-button {
2639
+ position: fixed;
2640
+ top: 100px;
2641
+ left: 0px;
2642
+ border-radius: 0;
2643
+ }
2644
+ #style-switch {
2645
+ -webkit-box-sizing: border-box;
2646
+ -moz-box-sizing: border-box;
2647
+ box-sizing: border-box;
2648
+ width: 300px;
2649
+ padding: 20px;
2650
+ position: fixed;
2651
+ top: 140px;
2652
+ left: 0;
2653
+ background: #fff;
2654
+ border: solid 1px #eeeeee;
2655
+ }
2656
+ @media (max-width: 991px) {
2657
+ #style-switch-button {
2658
+ display: none;
2659
+ }
2660
+ #style-switch {
2661
+ display: none;
2662
+ }
2663
+ }
2664
+ /* Original Boostrap template overwrite */
2665
+ /* breadcrumbs */
2666
+ .breadcrumb {
2667
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
2668
+ text-transform: uppercase;
2669
+ background-color: none;
2670
+ letter-spacing: 0.08em;
2671
+ }
2672
+ /* nav */
2673
+ .nav > li > a {
2674
+ padding: 10px 15px;
2675
+ }
2676
+ .nav > li > a:hover,
2677
+ .nav > li > a:focus {
2678
+ background-color: #eeeeee;
2679
+ }
2680
+ .nav > li.disabled > a {
2681
+ color: #999999;
2682
+ }
2683
+ .nav > li.disabled > a:hover,
2684
+ .nav > li.disabled > a:focus {
2685
+ color: #999999;
2686
+ }
2687
+ .nav .open > a,
2688
+ .nav .open > a:hover,
2689
+ .nav .open > a:focus {
2690
+ background-color: #eeeeee;
2691
+ border-color: #38a7bb;
2692
+ }
2693
+ .nav-tabs {
2694
+ border-bottom: 1px solid #38a7bb;
2695
+ }
2696
+ .nav-tabs > li {
2697
+ float: left;
2698
+ margin-bottom: -1px;
2699
+ }
2700
+ .nav-tabs > li > a {
2701
+ margin-right: 2px;
2702
+ line-height: 1.42857143;
2703
+ border: 1px solid transparent;
2704
+ border-radius: 0 0 0 0;
2705
+ }
2706
+ .nav-tabs > li > a:hover {
2707
+ border-color: #eeeeee #eeeeee #38a7bb;
2708
+ }
2709
+ .nav-tabs > li.active > a,
2710
+ .nav-tabs > li.active > a:hover,
2711
+ .nav-tabs > li.active > a:focus {
2712
+ color: #555555;
2713
+ background-color: #ffffff;
2714
+ border: 1px solid #38a7bb;
2715
+ border-bottom-color: transparent;
2716
+ cursor: default;
2717
+ }
2718
+ .nav-tabs.nav-justified {
2719
+ width: 100%;
2720
+ border-bottom: solid 1px #38a7bb;
2721
+ border-bottom: 0;
2722
+ }
2723
+ .nav-tabs.nav-justified > li {
2724
+ float: none;
2725
+ }
2726
+ .nav-tabs.nav-justified > li > a {
2727
+ text-align: center;
2728
+ /*margin-bottom: 5px;*/
2729
+ }
2730
+ .nav-tabs.nav-justified > .dropdown .dropdown-menu {
2731
+ top: auto;
2732
+ left: auto;
2733
+ }
2734
+ .nav-tabs.nav-justified > li > a {
2735
+ margin-right: 0;
2736
+ border-radius: 0;
2737
+ }
2738
+ .nav-tabs.nav-justified > .active > a,
2739
+ .nav-tabs.nav-justified > .active > a:hover,
2740
+ .nav-tabs.nav-justified > .active > a:focus {
2741
+ border: 1px solid #38a7bb;
2742
+ }
2743
+ @media (min-width: 768px) {
2744
+ .nav-tabs.nav-justified > li > a {
2745
+ border-bottom: 1px solid #38a7bb;
2746
+ border-radius: 0 0 0 0;
2747
+ }
2748
+ .nav-tabs.nav-justified > .active > a,
2749
+ .nav-tabs.nav-justified > .active > a:hover,
2750
+ .nav-tabs.nav-justified > .active > a:focus {
2751
+ border-bottom-color: #ffffff;
2752
+ }
2753
+ }
2754
+ .nav-pills > li {
2755
+ float: left;
2756
+ }
2757
+ .nav-pills > li > a {
2758
+ border-radius: 0;
2759
+ }
2760
+ .nav-pills > li + li {
2761
+ margin-left: 2px;
2762
+ }
2763
+ .nav-pills > li.active > a,
2764
+ .nav-pills > li.active > a:hover,
2765
+ .nav-pills > li.active > a:focus {
2766
+ color: #ffffff;
2767
+ background-color: #38a7bb;
2768
+ }
2769
+ .nav-stacked > li {
2770
+ float: none;
2771
+ }
2772
+ .nav-stacked > li + li {
2773
+ margin-top: 2px;
2774
+ margin-left: 0;
2775
+ }
2776
+ .nav-justified {
2777
+ width: 100%;
2778
+ border-bottom: solid 1px #38a7bb;
2779
+ }
2780
+ .nav-justified > li {
2781
+ float: none;
2782
+ }
2783
+ .nav-justified > li > a {
2784
+ text-align: center;
2785
+ /*margin-bottom: 5px;*/
2786
+ }
2787
+ .nav-justified > .dropdown .dropdown-menu {
2788
+ top: auto;
2789
+ left: auto;
2790
+ }
2791
+ .nav-tabs-justified {
2792
+ border-bottom: 0;
2793
+ }
2794
+ .nav-tabs-justified > li > a {
2795
+ margin-right: 0;
2796
+ border-radius: 0;
2797
+ }
2798
+ .nav-tabs-justified > .active > a,
2799
+ .nav-tabs-justified > .active > a:hover,
2800
+ .nav-tabs-justified > .active > a:focus {
2801
+ border: 1px solid #38a7bb;
2802
+ }
2803
+ @media (min-width: 768px) {
2804
+ .nav-tabs-justified > li > a {
2805
+ border-bottom: 1px solid #38a7bb;
2806
+ border-radius: 0 0 0 0;
2807
+ }
2808
+ .nav-tabs-justified > .active > a,
2809
+ .nav-tabs-justified > .active > a:hover,
2810
+ .nav-tabs-justified > .active > a:focus {
2811
+ border-bottom-color: #ffffff;
2812
+ }
2813
+ }
2814
+ .tab-content {
2815
+ padding: 15px;
2816
+ border: solid 1px #ddd;
2817
+ border-top: none;
2818
+ }
2819
+ /* navbar */
2820
+ .navbar {
2821
+ position: relative;
2822
+ min-height: 62px;
2823
+ margin-bottom: 0;
2824
+ border-bottom: 1px solid transparent;
2825
+ }
2826
+ @media (min-width: 768px) {
2827
+ .navbar {
2828
+ border-radius: 0px;
2829
+ }
2830
+ }
2831
+ @media (min-width: 768px) {
2832
+ .navbar-header {
2833
+ float: left;
2834
+ }
2835
+ }
2836
+ .navbar-collapse {
2837
+ overflow-x: visible;
2838
+ padding-right: 15px;
2839
+ padding-left: 15px;
2840
+ }
2841
+ .navbar-collapse.in {
2842
+ overflow-y: auto;
2843
+ }
2844
+ @media (min-width: 768px) {
2845
+ .navbar-collapse {
2846
+ width: auto;
2847
+ border-top: 0;
2848
+ box-shadow: none;
2849
+ }
2850
+ .navbar-collapse.collapse {
2851
+ display: block !important;
2852
+ height: auto !important;
2853
+ padding-bottom: 0;
2854
+ overflow: visible !important;
2855
+ }
2856
+ .navbar-collapse.in {
2857
+ overflow-y: visible;
2858
+ }
2859
+ .navbar-fixed-top .navbar-collapse,
2860
+ .navbar-static-top .navbar-collapse,
2861
+ .navbar-fixed-bottom .navbar-collapse {
2862
+ padding-left: 0;
2863
+ padding-right: 0;
2864
+ }
2865
+ }
2866
+ .navbar-fixed-top .navbar-collapse,
2867
+ .navbar-affixed-top .navbar-collapse,
2868
+ .navbar-fixed-bottom .navbar-collapse {
2869
+ max-height: 340px;
2870
+ }
2871
+ @media (max-width: 480px) and (orientation: landscape) {
2872
+ .navbar-fixed-top .navbar-collapse,
2873
+ .navbar-affixed-top .navbar-collapse,
2874
+ .navbar-fixed-bottom .navbar-collapse {
2875
+ max-height: 200px;
2876
+ }
2877
+ }
2878
+ .container > .navbar-header,
2879
+ .container-fluid > .navbar-header,
2880
+ .container > .navbar-collapse,
2881
+ .container-fluid > .navbar-collapse {
2882
+ margin-right: -15px;
2883
+ margin-left: -15px;
2884
+ }
2885
+ @media (min-width: 768px) {
2886
+ .container > .navbar-header,
2887
+ .container-fluid > .navbar-header,
2888
+ .container > .navbar-collapse,
2889
+ .container-fluid > .navbar-collapse {
2890
+ margin-right: 0;
2891
+ margin-left: 0;
2892
+ }
2893
+ }
2894
+ .navbar-static-top {
2895
+ z-index: 1000;
2896
+ border-width: 0 0 1px;
2897
+ }
2898
+ @media (min-width: 768px) {
2899
+ .navbar-static-top {
2900
+ border-radius: 0;
2901
+ }
2902
+ }
2903
+ .navbar-fixed-top,
2904
+ .navbar-fixed-bottom {
2905
+ position: fixed;
2906
+ right: 0;
2907
+ left: 0;
2908
+ z-index: 1030;
2909
+ -webkit-transform: translate3d(0, 0, 0);
2910
+ transform: translate3d(0, 0, 0);
2911
+ }
2912
+ @media (min-width: 768px) {
2913
+ .navbar-fixed-top,
2914
+ .navbar-fixed-bottom {
2915
+ border-radius: 0;
2916
+ }
2917
+ }
2918
+ .navbar-fixed-top {
2919
+ top: 0;
2920
+ border-width: 0 0 1px;
2921
+ }
2922
+ .navbar-fixed-bottom {
2923
+ bottom: 0;
2924
+ margin-bottom: 0;
2925
+ border-width: 1px 0 0;
2926
+ }
2927
+ .navbar-brand {
2928
+ float: left;
2929
+ padding: 10px 15px;
2930
+ font-size: 18px;
2931
+ line-height: 20px;
2932
+ height: 62px;
2933
+ }
2934
+ .navbar-brand:hover,
2935
+ .navbar-brand:focus {
2936
+ text-decoration: none;
2937
+ }
2938
+ @media (min-width: 768px) {
2939
+ .navbar > .container .navbar-brand,
2940
+ .navbar > .container-fluid .navbar-brand {
2941
+ margin-left: -15px;
2942
+ }
2943
+ }
2944
+ .navbar-toggle {
2945
+ position: relative;
2946
+ float: right;
2947
+ margin-right: 15px;
2948
+ padding: 9px 10px;
2949
+ margin-top: 14px;
2950
+ margin-bottom: 14px;
2951
+ background-color: transparent;
2952
+ background-image: none;
2953
+ border: 1px solid transparent;
2954
+ border-radius: 0;
2955
+ }
2956
+ .navbar-toggle:focus {
2957
+ outline: 0;
2958
+ }
2959
+ .navbar-nav {
2960
+ margin: 10.5px -15px;
2961
+ }
2962
+ .navbar-nav > li > a {
2963
+ padding-top: 10px;
2964
+ padding-bottom: 10px;
2965
+ line-height: 20px;
2966
+ }
2967
+ @media (max-width: 767px) {
2968
+ .navbar-nav .open .dropdown-menu > li > a,
2969
+ .navbar-nav .open .dropdown-menu .dropdown-header {
2970
+ padding: 5px 15px 5px 25px;
2971
+ }
2972
+ .navbar-nav .open .dropdown-menu > li > a {
2973
+ line-height: 20px;
2974
+ }
2975
+ .navbar-nav .open .dropdown-menu > li > a:hover,
2976
+ .navbar-nav .open .dropdown-menu > li > a:focus {
2977
+ background-image: none;
2978
+ }
2979
+ }
2980
+ @media (min-width: 768px) {
2981
+ .navbar-nav {
2982
+ float: left;
2983
+ margin: 0;
2984
+ }
2985
+ .navbar-nav > li {
2986
+ float: left;
2987
+ }
2988
+ .navbar-nav > li > a {
2989
+ padding-top: 21px;
2990
+ padding-bottom: 21px;
2991
+ }
2992
+ .navbar-nav.navbar-right:last-child {
2993
+ margin-right: -15px;
2994
+ }
2995
+ }
2996
+ @media (min-width: 768px) {
2997
+ .navbar-left {
2998
+ float: left !important;
2999
+ }
3000
+ .navbar-right {
3001
+ float: right !important;
3002
+ }
3003
+ }
3004
+ .navbar-form {
3005
+ margin-left: -15px;
3006
+ margin-right: -15px;
3007
+ padding: 10px 15px;
3008
+ border-top: 1px solid transparent;
3009
+ border-bottom: 1px solid transparent;
3010
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3011
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3012
+ margin-top: 14px;
3013
+ margin-bottom: 14px;
3014
+ }
3015
+ @media (max-width: 767px) {
3016
+ .navbar-form .form-group {
3017
+ margin-bottom: 5px;
3018
+ }
3019
+ }
3020
+ @media (min-width: 768px) {
3021
+ .navbar-form {
3022
+ width: auto;
3023
+ border: 0;
3024
+ margin-left: 0;
3025
+ margin-right: 0;
3026
+ padding-top: 0;
3027
+ padding-bottom: 0;
3028
+ -webkit-box-shadow: none;
3029
+ box-shadow: none;
3030
+ }
3031
+ .navbar-form.navbar-right:last-child {
3032
+ margin-right: -15px;
3033
+ }
3034
+ }
3035
+ .navbar-nav > li > .dropdown-menu {
3036
+ margin-top: 0;
3037
+ border-top-right-radius: 0;
3038
+ border-top-left-radius: 0;
3039
+ }
3040
+ .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
3041
+ border-bottom-right-radius: 0;
3042
+ border-bottom-left-radius: 0;
3043
+ }
3044
+ .navbar-btn {
3045
+ margin-top: 14px;
3046
+ margin-bottom: 14px;
3047
+ }
3048
+ .navbar-btn.btn-sm {
3049
+ margin-top: 16px;
3050
+ margin-bottom: 16px;
3051
+ }
3052
+ .navbar-btn.btn-xs {
3053
+ margin-top: 20px;
3054
+ margin-bottom: 20px;
3055
+ }
3056
+ .navbar-text {
3057
+ margin-top: 21px;
3058
+ margin-bottom: 21px;
3059
+ }
3060
+ @media (min-width: 768px) {
3061
+ .navbar-text {
3062
+ float: left;
3063
+ margin-left: 15px;
3064
+ margin-right: 15px;
3065
+ }
3066
+ .navbar-text.navbar-right:last-child {
3067
+ margin-right: 0;
3068
+ }
3069
+ }
3070
+ .navbar-default {
3071
+ background-color: #ffffff;
3072
+ border-color: #cccccc;
3073
+ border-bottom: none;
3074
+ }
3075
+ .navbar-default .navbar-brand {
3076
+ color: #555555;
3077
+ }
3078
+ .navbar-default .navbar-brand:hover,
3079
+ .navbar-default .navbar-brand:focus {
3080
+ color: #3b3b3b;
3081
+ background-color: transparent;
3082
+ }
3083
+ .navbar-default .navbar-text {
3084
+ color: #777777;
3085
+ }
3086
+ .navbar-default .navbar-nav > li > a {
3087
+ color: #555555;
3088
+ }
3089
+ .navbar-default .navbar-nav > li > a:hover,
3090
+ .navbar-default .navbar-nav > li > a:focus {
3091
+ color: #555555;
3092
+ background-color: #80cbd9;
3093
+ }
3094
+ .navbar-default .navbar-nav > .active > a,
3095
+ .navbar-default .navbar-nav > .active > a:hover,
3096
+ .navbar-default .navbar-nav > .active > a:focus {
3097
+ color: #ffffff;
3098
+ background-color: #38a7bb;
3099
+ }
3100
+ .navbar-default .navbar-nav > .disabled > a,
3101
+ .navbar-default .navbar-nav > .disabled > a:hover,
3102
+ .navbar-default .navbar-nav > .disabled > a:focus {
3103
+ color: #cccccc;
3104
+ background-color: transparent;
3105
+ }
3106
+ .navbar-default .navbar-toggle {
3107
+ border-color: #dddddd;
3108
+ }
3109
+ .navbar-default .navbar-toggle:hover,
3110
+ .navbar-default .navbar-toggle:focus {
3111
+ background-color: #38a7bb;
3112
+ }
3113
+ .navbar-default .navbar-toggle .icon-bar {
3114
+ background-color: #888888;
3115
+ }
3116
+ .navbar-default .navbar-collapse,
3117
+ .navbar-default .navbar-form {
3118
+ border-color: #cccccc;
3119
+ }
3120
+ .navbar-default .navbar-nav > .open > a,
3121
+ .navbar-default .navbar-nav > .open > a:hover,
3122
+ .navbar-default .navbar-nav > .open > a:focus {
3123
+ background-color: #38a7bb;
3124
+ color: #ffffff;
3125
+ }
3126
+ @media (max-width: 767px) {
3127
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a {
3128
+ color: #555555;
3129
+ }
3130
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
3131
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
3132
+ color: #38a7bb;
3133
+ }
3134
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
3135
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
3136
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
3137
+ color: #ffffff;
3138
+ background-color: #38a7bb;
3139
+ }
3140
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
3141
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
3142
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
3143
+ color: #cccccc;
3144
+ background-color: transparent;
3145
+ }
3146
+ }
3147
+ .navbar-default .navbar-link {
3148
+ color: #555555;
3149
+ }
3150
+ .navbar-default .navbar-link:hover {
3151
+ color: #555555;
3152
+ }
3153
+ .navbar-default .btn-link {
3154
+ color: #555555;
3155
+ }
3156
+ .navbar-default .btn-link:hover,
3157
+ .navbar-default .btn-link:focus {
3158
+ color: #555555;
3159
+ }
3160
+ .navbar-default .btn-link[disabled]:hover,
3161
+ fieldset[disabled] .navbar-default .btn-link:hover,
3162
+ .navbar-default .btn-link[disabled]:focus,
3163
+ fieldset[disabled] .navbar-default .btn-link:focus {
3164
+ color: #cccccc;
3165
+ }
3166
+ /* scaffolding */
3167
+ body {
3168
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
3169
+ font-size: 14px;
3170
+ line-height: 1.42857143;
3171
+ color: #555555;
3172
+ }
3173
+ a {
3174
+ color: #38a7bb;
3175
+ text-decoration: none;
3176
+ }
3177
+ a:hover,
3178
+ a:focus {
3179
+ color: #267280;
3180
+ text-decoration: underline;
3181
+ }
3182
+ a:focus {
3183
+ outline: thin dotted;
3184
+ outline: 5px auto -webkit-focus-ring-color;
3185
+ outline-offset: -2px;
3186
+ }
3187
+ .img-rounded {
3188
+ border-radius: 0;
3189
+ }
3190
+ hr {
3191
+ margin-top: 20px;
3192
+ margin-bottom: 20px;
3193
+ border: 0;
3194
+ border-top: 1px solid #eeeeee;
3195
+ }
3196
+ /* breadcrumbs */
3197
+ .breadcrumb {
3198
+ padding: 20px 0;
3199
+ margin-bottom: 20px;
3200
+ background-color: transparent;
3201
+ border-radius: 0;
3202
+ text-align: right;
3203
+ }
3204
+ .breadcrumb > li + li:before {
3205
+ content: ">\00a0";
3206
+ color: #555555;
3207
+ }
3208
+ .breadcrumb > .active {
3209
+ color: #999999;
3210
+ }
3211
+ @media (max-width: 991px) {
3212
+ .breadcrumb {
3213
+ padding: 20px 0;
3214
+ text-align: center;
3215
+ }
3216
+ }
3217
+ /* dropdowns */
3218
+ .dropdown-menu {
3219
+ z-index: 1000;
3220
+ font-size: 14px;
3221
+ background-color: #ffffff;
3222
+ border: 1px solid #cccccc;
3223
+ border: 1px solid rgba(0, 0, 0, 0.15);
3224
+ border-radius: 0;
3225
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3226
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3227
+ }
3228
+ .dropdown-menu.pull-right {
3229
+ right: 0;
3230
+ left: auto;
3231
+ }
3232
+ .dropdown-menu .divider {
3233
+ height: 1px;
3234
+ margin: 9px 0;
3235
+ overflow: hidden;
3236
+ background-color: #e5e5e5;
3237
+ }
3238
+ .dropdown-menu > li > a {
3239
+ padding: 5px 20px;
3240
+ line-height: 1.42857143;
3241
+ color: #333333;
3242
+ white-space: nowrap;
3243
+ }
3244
+ /* labels */
3245
+ .label {
3246
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
3247
+ font-weight: normal;
3248
+ text-transform: uppercase;
3249
+ letter-spacing: 0.08em;
3250
+ }
3251
+ /* forms.less */
3252
+ label {
3253
+ font-weight: normal;
3254
+ }
3255
+ .form-control {
3256
+ -webkit-box-shadow: none;
3257
+ box-shadow: none;
3258
+ border-radius: 0;
3259
+ }
3260
+ .form-control:focus {
3261
+ border-color: #38a7bb;
3262
+ outline: 0;
3263
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(56, 167, 187, 0.6);
3264
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(56, 167, 187, 0.6);
3265
+ }
3266
+ .form-group {
3267
+ margin-bottom: 20px;
3268
+ }
3269
+ /* pager*/
3270
+ .pager {
3271
+ margin: 20px 0;
3272
+ border-top: solid 1px #eeeeee;
3273
+ padding-top: 20px;
3274
+ text-transform: uppercase;
3275
+ letter-spacing: 0.08em;
3276
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
3277
+ }
3278
+ .pager li {
3279
+ display: inline;
3280
+ }
3281
+ .pager li > a,
3282
+ .pager li > span {
3283
+ background-color: #ffffff;
3284
+ border: 1px solid #38a7bb;
3285
+ border-radius: 0;
3286
+ }
3287
+ .pager li > a:hover,
3288
+ .pager li > a:focus {
3289
+ text-decoration: none;
3290
+ color: #fff;
3291
+ background-color: #38a7bb;
3292
+ }
3293
+ .pager .disabled > a,
3294
+ .pager .disabled > a:hover,
3295
+ .pager .disabled > a:focus,
3296
+ .pager .disabled > span {
3297
+ color: #999999;
3298
+ background-color: #ffffff;
3299
+ border-color: #ddd;
3300
+ }
3301
+ /* pagination */
3302
+ .pagination {
3303
+ margin: 20px 0;
3304
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
3305
+ border-radius: 0;
3306
+ }
3307
+ .pagination > li > a,
3308
+ .pagination > li > span {
3309
+ padding: 6px 12px;
3310
+ line-height: 1.42857143;
3311
+ text-decoration: none;
3312
+ color: #38a7bb;
3313
+ background-color: #ffffff;
3314
+ border: 1px solid #dddddd;
3315
+ }
3316
+ .pagination > li > a:hover,
3317
+ .pagination > li > span:hover,
3318
+ .pagination > li > a:focus,
3319
+ .pagination > li > span:focus {
3320
+ color: #38a7bb;
3321
+ background-color: #a7dbe5;
3322
+ border-color: #dddddd;
3323
+ }
3324
+ .pagination > .active > a,
3325
+ .pagination > .active > span,
3326
+ .pagination > .active > a:hover,
3327
+ .pagination > .active > span:hover,
3328
+ .pagination > .active > a:focus,
3329
+ .pagination > .active > span:focus {
3330
+ z-index: 2;
3331
+ color: #ffffff;
3332
+ background-color: #38a7bb;
3333
+ border-color: #38a7bb;
3334
+ }
3335
+ .pagination > .disabled > span,
3336
+ .pagination > .disabled > span:hover,
3337
+ .pagination > .disabled > span:focus,
3338
+ .pagination > .disabled > a,
3339
+ .pagination > .disabled > a:hover,
3340
+ .pagination > .disabled > a:focus {
3341
+ color: #999999;
3342
+ background-color: #ffffff;
3343
+ border-color: #dddddd;
3344
+ }
3345
+ /* responsive utilities */
3346
+ @media (max-width: 767px) {
3347
+ .text-center-xs {
3348
+ text-align: center !important;
3349
+ }
3350
+ .text-center-xs img {
3351
+ display: block;
3352
+ margin-left: auto;
3353
+ margin-right: auto;
3354
+ }
3355
+ }
3356
+ @media (min-width: 768px) and (max-width: 991px) {
3357
+ .text-center-sm {
3358
+ text-align: center !important;
3359
+ }
3360
+ .text-center-sm img {
3361
+ display: block;
3362
+ margin-left: auto;
3363
+ margin-right: auto;
3364
+ }
3365
+ }
3366
+ /* type */
3367
+ h1,
3368
+ h2,
3369
+ h3,
3370
+ h4,
3371
+ h5,
3372
+ h6,
3373
+ .h1,
3374
+ .h2,
3375
+ .h3,
3376
+ .h4,
3377
+ .h5,
3378
+ .h6 {
3379
+ font-family: "Roboto", Helvetica, Arial, sans-serif;
3380
+ font-weight: 900;
3381
+ line-height: 1.1;
3382
+ color: #333333;
3383
+ }
3384
+ h1,
3385
+ .h1,
3386
+ h2,
3387
+ .h2,
3388
+ h3,
3389
+ .h3 {
3390
+ margin-top: 20px;
3391
+ margin-bottom: 20px;
3392
+ }
3393
+ p {
3394
+ margin: 0 0 10px;
3395
+ }
3396
+ .lead {
3397
+ margin-bottom: 20px;
3398
+ font-size: 18px;
3399
+ }
3400
+ @media (min-width: 768px) {
3401
+ .lead {
3402
+ font-size: 21px;
3403
+ }
3404
+ }
3405
+ .text-small {
3406
+ font-size: 12px;
3407
+ }
3408
+ .text-large {
3409
+ font-size: 18px;
3410
+ }
3411
+ .text-italic {
3412
+ font-style: italic;
3413
+ }
3414
+ .text-primary {
3415
+ color: #38a7bb;
3416
+ }
3417
+ a.text-primary:hover {
3418
+ color: #2c8494;
3419
+ }
3420
+ .bg-primary {
3421
+ color: #fff;
3422
+ background-color: #38a7bb;
3423
+ }
3424
+ a.bg-primary:hover {
3425
+ background-color: #2c8494;
3426
+ }
3427
+ abbr[title],
3428
+ abbr[data-original-title] {
3429
+ border-bottom: 1px dotted #999999;
3430
+ }
3431
+ blockquote {
3432
+ padding: 10px 20px;
3433
+ margin: 0 0 20px;
3434
+ font-size: 14px;
3435
+ border-left: 5px solid #38a7bb;
3436
+ }
3437
+ blockquote footer,
3438
+ blockquote small,
3439
+ blockquote .small {
3440
+ display: block;
3441
+ font-size: 80%;
3442
+ line-height: 1.42857143;
3443
+ color: #999999;
3444
+ }
3445
+ blockquote footer:before,
3446
+ blockquote small:before,
3447
+ blockquote .small:before {
3448
+ content: '\2014 \00A0';
3449
+ }
3450
+ .blockquote-reverse,
3451
+ blockquote.pull-right {
3452
+ border-right: 5px solid #38a7bb;
3453
+ }
3454
+ address {
3455
+ margin-bottom: 20px;
3456
+ line-height: 1.42857143;
3457
+ }
3458
+ .panel {
3459
+ margin-bottom: 20px;
3460
+ background-color: #ffffff;
3461
+ border: 1px solid transparent;
3462
+ border-radius: 0;
3463
+ -webkit-box-shadow: 0 0 0;
3464
+ box-shadow: 0 0 0;
3465
+ }
3466
+ .panel-heading {
3467
+ border-top-right-radius: 0;
3468
+ border-top-left-radius: 0;
3469
+ text-transform: uppercase;
3470
+ letter-spacing: 0.08em;
3471
+ padding: 15px 15px;
3472
+ }
3473
+ .progress {
3474
+ overflow: hidden;
3475
+ height: 20px;
3476
+ margin-bottom: 20px;
3477
+ background-color: #f5f5f5;
3478
+ border-radius: 0;
3479
+ -webkit-box-shadow: none;
3480
+ box-shadow: none;
3481
+ }
3482
+ .panel-group {
3483
+ margin-bottom: 20px;
3484
+ }
3485
+ .panel-group .panel {
3486
+ margin-bottom: 0;
3487
+ border-radius: 0;
3488
+ overflow: hidden;
3489
+ }
3490
+ .panel-group .panel + .panel {
3491
+ margin-top: 5px;
3492
+ }
3493
+ .panel-group.accordion .panel {
3494
+ border-color: #ccc;
3495
+ }
3496
+ .panel-primary {
3497
+ border-color: #38a7bb;
3498
+ }
3499
+ .panel-primary > .panel-heading {
3500
+ color: #ffffff;
3501
+ background-color: #38a7bb;
3502
+ border-color: #38a7bb;
3503
+ }
3504
+ .panel-primary > .panel-heading + .panel-collapse > .panel-body {
3505
+ border-top-color: #38a7bb;
3506
+ }
3507
+ .panel-primary > .panel-heading .badge {
3508
+ color: #38a7bb;
3509
+ background-color: #ffffff;
3510
+ }
3511
+ .panel-primary > .panel-footer + .panel-collapse > .panel-body {
3512
+ border-bottom-color: #38a7bb;
3513
+ }
3514
+ .panel-primary .panel-title {
3515
+ font-weight: 300;
3516
+ }
3517
+ .panel-primary .panel-title a:hover {
3518
+ color: #fff;
3519
+ text-decoration: none;
3520
+ }
3521
+ a.badge:hover,
3522
+ a.badge:focus {
3523
+ color: #ffffff;
3524
+ text-decoration: none;
3525
+ cursor: pointer;
3526
+ }
3527
+ a.list-group-item.active > .badge,
3528
+ .nav-pills > .active > a > .badge {
3529
+ color: #38a7bb;
3530
+ background-color: #ffffff;
3531
+ }
3532
+ .nav-pills > li > a > .badge {
3533
+ margin-left: 3px;
3534
+ }
3535
+ .progress-bar-primary {
3536
+ background-color: #38a7bb;
3537
+ }
3538
+ .progress-striped .progress-bar-primary {
3539
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3540
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3541
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
3542
+ }
3543
+ /*!
3544
+ * Yamm!3 - Yet another megamenu for Bootstrap 3
3545
+ * http://geedmo.github.com/yamm3
3546
+ *
3547
+ * @geedmo - Licensed under the MIT license
3548
+ */
3549
+ .yamm .nav,
3550
+ .yamm .collapse,
3551
+ .yamm .dropup.use-yamm,
3552
+ .yamm .dropdown.use-yamm {
3553
+ position: static;
3554
+ }
3555
+ .yamm .container {
3556
+ position: relative;
3557
+ }
3558
+ .yamm .dropdown-menu {
3559
+ left: auto;
3560
+ }
3561
+ .yamm .nav.navbar-right .dropdown-menu {
3562
+ left: auto;
3563
+ right: 0;
3564
+ }
3565
+ .yamm .yamm-content {
3566
+ padding: 20px 30px;
3567
+ }
3568
+ .yamm .dropdown.yamm-fw .dropdown-menu {
3569
+ left: 15px;
3570
+ right: 15px;
3571
+ }