', { 'class': 'nivo-lightbox-content' });
328 | var nav = $('
PreviousNext');
329 | var close = $('
');
330 | var title = $('
', { 'class': 'nivo-lightbox-title-wrap' });
331 |
332 | var isMSIE = /*@cc_on!@*/0;
333 | if(isMSIE) overlay.addClass('nivo-lightbox-ie');
334 |
335 | wrap.append(content);
336 | wrap.append(title);
337 | overlay.append(wrap);
338 | overlay.append(nav);
339 | overlay.append(close);
340 | $('body').append(overlay);
341 |
342 | var $this = this;
343 | if($this.options.clickOverlayToClose){
344 | overlay.on('click', function(e){
345 | if(e.target === this || $(e.target).hasClass('nivo-lightbox-content') || $(e.target).hasClass('nivo-lightbox-image')){
346 | $this.destructLightbox();
347 | }
348 | });
349 | }
350 | if($this.options.clickImgToClose){
351 | overlay.on('click', function(e){
352 | if(e.target === this || $(e.target).hasClass('nivo-lightbox-image-display')){
353 | $this.destructLightbox();
354 | }
355 | });
356 | }
357 |
358 | close.on('click', function(e){
359 | e.preventDefault();
360 | $this.destructLightbox();
361 | });
362 |
363 | return overlay;
364 | },
365 |
366 | destructLightbox: function(){
367 | var $this = this;
368 | this.options.beforeHideLightbox.call(this);
369 |
370 | $('.nivo-lightbox-overlay').removeClass('nivo-lightbox-open');
371 | $('.nivo-lightbox-nav').hide();
372 | $('body').removeClass('nivo-lightbox-body-effect-'+ $this.options.effect);
373 |
374 | // For IE
375 | var isMSIE = /*@cc_on!@*/0;
376 | if(isMSIE){
377 | $('.nivo-lightbox-overlay iframe').attr("src", " ");
378 | $('.nivo-lightbox-overlay iframe').remove();
379 | }
380 |
381 | // Remove click handlers
382 | $('.nivo-lightbox-prev').off('click');
383 | $('.nivo-lightbox-next').off('click');
384 |
385 | // Empty content (for videos)
386 | $('.nivo-lightbox-content').empty();
387 |
388 | this.options.afterHideLightbox.call(this);
389 | },
390 |
391 | isHidpi: function(){
392 | var mediaQuery = "(-webkit-min-device-pixel-ratio: 1.5),\
393 | (min--moz-device-pixel-ratio: 1.5),\
394 | (-o-min-device-pixel-ratio: 3/2),\
395 | (min-resolution: 1.5dppx)";
396 | if(window.devicePixelRatio > 1) return true;
397 | if(window.matchMedia && window.matchMedia(mediaQuery).matches) return true;
398 | return false;
399 | }
400 |
401 | };
402 |
403 | $.fn[pluginName] = function(options){
404 | return this.each(function(){
405 | if(!$.data(this, pluginName)){
406 | $.data(this, pluginName, new NivoLightbox(this, options));
407 | }
408 | });
409 | };
410 |
411 | })(jQuery, window, document);
412 |
--------------------------------------------------------------------------------
/assets/fonts/simple-line-icons.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'Simple-Line-Icons';
3 | src:url('../fonts/line-icons/Simple-Line-Icons.eot');
4 | src:url('../fonts/line-icons/Simple-Line-Icons.eot?#iefix') format('embedded-opentype'),
5 | url('../fonts/line-icons/Simple-Line-Icons.woff') format('woff'),
6 | url('../fonts/line-icons/Simple-Line-Icons.ttf') format('truetype'),
7 | url('../fonts/line-icons/Simple-Line-Icons.svg#Simple-Line-Icons') format('svg');
8 | font-weight: normal;
9 | font-style: normal;
10 | }
11 | /*
12 | Use the following CSS code if you want to have a class per icon.
13 | Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower:
14 | */
15 | .icon-user,
16 | .icon-people,
17 | .icon-user-female,
18 | .icon-user-follow,
19 | .icon-user-following,
20 | .icon-user-unfollow,
21 | .icon-login,
22 | .icon-logout,
23 | .icon-emotsmile,
24 | .icon-phone,
25 | .icon-call-end,
26 | .icon-call-in,
27 | .icon-call-out,
28 | .icon-map,
29 | .icon-location-pin,
30 | .icon-direction,
31 | .icon-directions,
32 | .icon-compass,
33 | .icon-layers,
34 | .icon-menu,
35 | .icon-list,
36 | .icon-options-vertical,
37 | .icon-options,
38 | .icon-arrow-down,
39 | .icon-arrow-left,
40 | .icon-arrow-right,
41 | .icon-arrow-up,
42 | .icon-arrow-up-circle,
43 | .icon-arrow-left-circle,
44 | .icon-arrow-right-circle,
45 | .icon-arrow-down-circle,
46 | .icon-check,
47 | .icon-clock,
48 | .icon-plus,
49 | .icon-minus,
50 | .icon-close,
51 | .icon-event,
52 | .icon-exclamation,
53 | .icon-organization,
54 | .icon-trophy,
55 | .icon-screen-smartphone,
56 | .icon-screen-desktop,
57 | .icon-plane,
58 | .icon-notebook,
59 | .icon-mustache,
60 | .icon-mouse,
61 | .icon-magnet,
62 | .icon-energy,
63 | .icon-disc,
64 | .icon-cursor,
65 | .icon-cursor-move,
66 | .icon-crop,
67 | .icon-chemistry,
68 | .icon-speedometer,
69 | .icon-shield,
70 | .icon-screen-tablet,
71 | .icon-magic-wand,
72 | .icon-hourglass,
73 | .icon-graduation,
74 | .icon-ghost,
75 | .icon-game-controller,
76 | .icon-fire,
77 | .icon-eyeglass,
78 | .icon-envelope-open,
79 | .icon-envelope-letter,
80 | .icon-bell,
81 | .icon-badge,
82 | .icon-anchor,
83 | .icon-wallet,
84 | .icon-vector,
85 | .icon-speech,
86 | .icon-puzzle,
87 | .icon-printer,
88 | .icon-present,
89 | .icon-playlist,
90 | .icon-pin,
91 | .icon-picture,
92 | .icon-handbag,
93 | .icon-globe-alt,
94 | .icon-globe,
95 | .icon-folder-alt,
96 | .icon-folder,
97 | .icon-film,
98 | .icon-feed,
99 | .icon-drop,
100 | .icon-drawer,
101 | .icon-docs,
102 | .icon-doc,
103 | .icon-diamond,
104 | .icon-cup,
105 | .icon-calculator,
106 | .icon-bubbles,
107 | .icon-briefcase,
108 | .icon-book-open,
109 | .icon-basket-loaded,
110 | .icon-basket,
111 | .icon-bag,
112 | .icon-action-undo,
113 | .icon-action-redo,
114 | .icon-wrench,
115 | .icon-umbrella,
116 | .icon-trash,
117 | .icon-tag,
118 | .icon-support,
119 | .icon-frame,
120 | .icon-size-fullscreen,
121 | .icon-size-actual,
122 | .icon-shuffle,
123 | .icon-share-alt,
124 | .icon-share,
125 | .icon-rocket,
126 | .icon-question,
127 | .icon-pie-chart,
128 | .icon-pencil,
129 | .icon-note,
130 | .icon-loop,
131 | .icon-home,
132 | .icon-grid,
133 | .icon-graph,
134 | .icon-microphone,
135 | .icon-music-tone-alt,
136 | .icon-music-tone,
137 | .icon-earphones-alt,
138 | .icon-earphones,
139 | .icon-equalizer,
140 | .icon-like,
141 | .icon-dislike,
142 | .icon-control-start,
143 | .icon-control-rewind,
144 | .icon-control-play,
145 | .icon-control-pause,
146 | .icon-control-forward,
147 | .icon-control-end,
148 | .icon-volume-1,
149 | .icon-volume-2,
150 | .icon-volume-off,
151 | .icon-calendar,
152 | .icon-bulb,
153 | .icon-chart,
154 | .icon-ban,
155 | .icon-bubble,
156 | .icon-camrecorder,
157 | .icon-camera,
158 | .icon-cloud-download,
159 | .icon-cloud-upload,
160 | .icon-envelope,
161 | .icon-eye,
162 | .icon-flag,
163 | .icon-heart,
164 | .icon-info,
165 | .icon-key,
166 | .icon-link,
167 | .icon-lock,
168 | .icon-lock-open,
169 | .icon-magnifier,
170 | .icon-magnifier-add,
171 | .icon-magnifier-remove,
172 | .icon-paper-clip,
173 | .icon-paper-plane,
174 | .icon-power,
175 | .icon-refresh,
176 | .icon-reload,
177 | .icon-settings,
178 | .icon-star,
179 | .icon-symbol-female,
180 | .icon-symbol-male,
181 | .icon-target,
182 | .icon-credit-card,
183 | .icon-paypal,
184 | .icon-social-tumblr,
185 | .icon-social-twitter,
186 | .icon-social-facebook,
187 | .icon-social-instagram,
188 | .icon-social-linkedin,
189 | .icon-social-pinterest,
190 | .icon-social-github,
191 | .icon-social-google,
192 | .icon-social-reddit,
193 | .icon-social-skype,
194 | .icon-social-dribbble,
195 | .icon-social-behance,
196 | .icon-social-foursqare,
197 | .icon-social-soundcloud,
198 | .icon-social-spotify,
199 | .icon-social-stumbleupon,
200 | .icon-social-youtube,
201 | .icon-social-dropbox,
202 | .icon-social-vkontakte,
203 | .icon-social-steam {
204 | font-family: 'simple-line-icons';
205 | speak: none;
206 | font-style: normal;
207 | font-weight: normal;
208 | font-variant: normal;
209 | text-transform: none;
210 | line-height: 1;
211 | /* Better Font Rendering =========== */
212 | -webkit-font-smoothing: antialiased;
213 | -moz-osx-font-smoothing: grayscale;
214 | }
215 | .icon-user:before {
216 | content: "\e005";
217 | }
218 | .icon-people:before {
219 | content: "\e001";
220 | }
221 | .icon-user-female:before {
222 | content: "\e000";
223 | }
224 | .icon-user-follow:before {
225 | content: "\e002";
226 | }
227 | .icon-user-following:before {
228 | content: "\e003";
229 | }
230 | .icon-user-unfollow:before {
231 | content: "\e004";
232 | }
233 | .icon-login:before {
234 | content: "\e066";
235 | }
236 | .icon-logout:before {
237 | content: "\e065";
238 | }
239 | .icon-emotsmile:before {
240 | content: "\e021";
241 | }
242 | .icon-phone:before {
243 | content: "\e600";
244 | }
245 | .icon-call-end:before {
246 | content: "\e048";
247 | }
248 | .icon-call-in:before {
249 | content: "\e047";
250 | }
251 | .icon-call-out:before {
252 | content: "\e046";
253 | }
254 | .icon-map:before {
255 | content: "\e033";
256 | }
257 | .icon-location-pin:before {
258 | content: "\e096";
259 | }
260 | .icon-direction:before {
261 | content: "\e042";
262 | }
263 | .icon-directions:before {
264 | content: "\e041";
265 | }
266 | .icon-compass:before {
267 | content: "\e045";
268 | }
269 | .icon-layers:before {
270 | content: "\e034";
271 | }
272 | .icon-menu:before {
273 | content: "\e601";
274 | }
275 | .icon-list:before {
276 | content: "\e067";
277 | }
278 | .icon-options-vertical:before {
279 | content: "\e602";
280 | }
281 | .icon-options:before {
282 | content: "\e603";
283 | }
284 | .icon-arrow-down:before {
285 | content: "\e604";
286 | }
287 | .icon-arrow-left:before {
288 | content: "\e605";
289 | }
290 | .icon-arrow-right:before {
291 | content: "\e606";
292 | }
293 | .icon-arrow-up:before {
294 | content: "\e607";
295 | }
296 | .icon-arrow-up-circle:before {
297 | content: "\e078";
298 | }
299 | .icon-arrow-left-circle:before {
300 | content: "\e07a";
301 | }
302 | .icon-arrow-right-circle:before {
303 | content: "\e079";
304 | }
305 | .icon-arrow-down-circle:before {
306 | content: "\e07b";
307 | }
308 | .icon-check:before {
309 | content: "\e080";
310 | }
311 | .icon-clock:before {
312 | content: "\e081";
313 | }
314 | .icon-plus:before {
315 | content: "\e095";
316 | }
317 | .icon-minus:before {
318 | content: "\e615";
319 | }
320 | .icon-close:before {
321 | content: "\e082";
322 | }
323 | .icon-event:before {
324 | content: "\e619";
325 | }
326 | .icon-exclamation:before {
327 | content: "\e617";
328 | }
329 | .icon-organization:before {
330 | content: "\e616";
331 | }
332 | .icon-trophy:before {
333 | content: "\e006";
334 | }
335 | .icon-screen-smartphone:before {
336 | content: "\e010";
337 | }
338 | .icon-screen-desktop:before {
339 | content: "\e011";
340 | }
341 | .icon-plane:before {
342 | content: "\e012";
343 | }
344 | .icon-notebook:before {
345 | content: "\e013";
346 | }
347 | .icon-mustache:before {
348 | content: "\e014";
349 | }
350 | .icon-mouse:before {
351 | content: "\e015";
352 | }
353 | .icon-magnet:before {
354 | content: "\e016";
355 | }
356 | .icon-energy:before {
357 | content: "\e020";
358 | }
359 | .icon-disc:before {
360 | content: "\e022";
361 | }
362 | .icon-cursor:before {
363 | content: "\e06e";
364 | }
365 | .icon-cursor-move:before {
366 | content: "\e023";
367 | }
368 | .icon-crop:before {
369 | content: "\e024";
370 | }
371 | .icon-chemistry:before {
372 | content: "\e026";
373 | }
374 | .icon-speedometer:before {
375 | content: "\e007";
376 | }
377 | .icon-shield:before {
378 | content: "\e00e";
379 | }
380 | .icon-screen-tablet:before {
381 | content: "\e00f";
382 | }
383 | .icon-magic-wand:before {
384 | content: "\e017";
385 | }
386 | .icon-hourglass:before {
387 | content: "\e018";
388 | }
389 | .icon-graduation:before {
390 | content: "\e019";
391 | }
392 | .icon-ghost:before {
393 | content: "\e01a";
394 | }
395 | .icon-game-controller:before {
396 | content: "\e01b";
397 | }
398 | .icon-fire:before {
399 | content: "\e01c";
400 | }
401 | .icon-eyeglass:before {
402 | content: "\e01d";
403 | }
404 | .icon-envelope-open:before {
405 | content: "\e01e";
406 | }
407 | .icon-envelope-letter:before {
408 | content: "\e01f";
409 | }
410 | .icon-bell:before {
411 | content: "\e027";
412 | }
413 | .icon-badge:before {
414 | content: "\e028";
415 | }
416 | .icon-anchor:before {
417 | content: "\e029";
418 | }
419 | .icon-wallet:before {
420 | content: "\e02a";
421 | }
422 | .icon-vector:before {
423 | content: "\e02b";
424 | }
425 | .icon-speech:before {
426 | content: "\e02c";
427 | }
428 | .icon-puzzle:before {
429 | content: "\e02d";
430 | }
431 | .icon-printer:before {
432 | content: "\e02e";
433 | }
434 | .icon-present:before {
435 | content: "\e02f";
436 | }
437 | .icon-playlist:before {
438 | content: "\e030";
439 | }
440 | .icon-pin:before {
441 | content: "\e031";
442 | }
443 | .icon-picture:before {
444 | content: "\e032";
445 | }
446 | .icon-handbag:before {
447 | content: "\e035";
448 | }
449 | .icon-globe-alt:before {
450 | content: "\e036";
451 | }
452 | .icon-globe:before {
453 | content: "\e037";
454 | }
455 | .icon-folder-alt:before {
456 | content: "\e039";
457 | }
458 | .icon-folder:before {
459 | content: "\e089";
460 | }
461 | .icon-film:before {
462 | content: "\e03a";
463 | }
464 | .icon-feed:before {
465 | content: "\e03b";
466 | }
467 | .icon-drop:before {
468 | content: "\e03e";
469 | }
470 | .icon-drawer:before {
471 | content: "\e03f";
472 | }
473 | .icon-docs:before {
474 | content: "\e040";
475 | }
476 | .icon-doc:before {
477 | content: "\e085";
478 | }
479 | .icon-diamond:before {
480 | content: "\e043";
481 | }
482 | .icon-cup:before {
483 | content: "\e044";
484 | }
485 | .icon-calculator:before {
486 | content: "\e049";
487 | }
488 | .icon-bubbles:before {
489 | content: "\e04a";
490 | }
491 | .icon-briefcase:before {
492 | content: "\e04b";
493 | }
494 | .icon-book-open:before {
495 | content: "\e04c";
496 | }
497 | .icon-basket-loaded:before {
498 | content: "\e04d";
499 | }
500 | .icon-basket:before {
501 | content: "\e04e";
502 | }
503 | .icon-bag:before {
504 | content: "\e04f";
505 | }
506 | .icon-action-undo:before {
507 | content: "\e050";
508 | }
509 | .icon-action-redo:before {
510 | content: "\e051";
511 | }
512 | .icon-wrench:before {
513 | content: "\e052";
514 | }
515 | .icon-umbrella:before {
516 | content: "\e053";
517 | }
518 | .icon-trash:before {
519 | content: "\e054";
520 | }
521 | .icon-tag:before {
522 | content: "\e055";
523 | }
524 | .icon-support:before {
525 | content: "\e056";
526 | }
527 | .icon-frame:before {
528 | content: "\e038";
529 | }
530 | .icon-size-fullscreen:before {
531 | content: "\e057";
532 | }
533 | .icon-size-actual:before {
534 | content: "\e058";
535 | }
536 | .icon-shuffle:before {
537 | content: "\e059";
538 | }
539 | .icon-share-alt:before {
540 | content: "\e05a";
541 | }
542 | .icon-share:before {
543 | content: "\e05b";
544 | }
545 | .icon-rocket:before {
546 | content: "\e05c";
547 | }
548 | .icon-question:before {
549 | content: "\e05d";
550 | }
551 | .icon-pie-chart:before {
552 | content: "\e05e";
553 | }
554 | .icon-pencil:before {
555 | content: "\e05f";
556 | }
557 | .icon-note:before {
558 | content: "\e060";
559 | }
560 | .icon-loop:before {
561 | content: "\e064";
562 | }
563 | .icon-home:before {
564 | content: "\e069";
565 | }
566 | .icon-grid:before {
567 | content: "\e06a";
568 | }
569 | .icon-graph:before {
570 | content: "\e06b";
571 | }
572 | .icon-microphone:before {
573 | content: "\e063";
574 | }
575 | .icon-music-tone-alt:before {
576 | content: "\e061";
577 | }
578 | .icon-music-tone:before {
579 | content: "\e062";
580 | }
581 | .icon-earphones-alt:before {
582 | content: "\e03c";
583 | }
584 | .icon-earphones:before {
585 | content: "\e03d";
586 | }
587 | .icon-equalizer:before {
588 | content: "\e06c";
589 | }
590 | .icon-like:before {
591 | content: "\e068";
592 | }
593 | .icon-dislike:before {
594 | content: "\e06d";
595 | }
596 | .icon-control-start:before {
597 | content: "\e06f";
598 | }
599 | .icon-control-rewind:before {
600 | content: "\e070";
601 | }
602 | .icon-control-play:before {
603 | content: "\e071";
604 | }
605 | .icon-control-pause:before {
606 | content: "\e072";
607 | }
608 | .icon-control-forward:before {
609 | content: "\e073";
610 | }
611 | .icon-control-end:before {
612 | content: "\e074";
613 | }
614 | .icon-volume-1:before {
615 | content: "\e09f";
616 | }
617 | .icon-volume-2:before {
618 | content: "\e0a0";
619 | }
620 | .icon-volume-off:before {
621 | content: "\e0a1";
622 | }
623 | .icon-calendar:before {
624 | content: "\e075";
625 | }
626 | .icon-bulb:before {
627 | content: "\e076";
628 | }
629 | .icon-chart:before {
630 | content: "\e077";
631 | }
632 | .icon-ban:before {
633 | content: "\e07c";
634 | }
635 | .icon-bubble:before {
636 | content: "\e07d";
637 | }
638 | .icon-camrecorder:before {
639 | content: "\e07e";
640 | }
641 | .icon-camera:before {
642 | content: "\e07f";
643 | }
644 | .icon-cloud-download:before {
645 | content: "\e083";
646 | }
647 | .icon-cloud-upload:before {
648 | content: "\e084";
649 | }
650 | .icon-envelope:before {
651 | content: "\e086";
652 | }
653 | .icon-eye:before {
654 | content: "\e087";
655 | }
656 | .icon-flag:before {
657 | content: "\e088";
658 | }
659 | .icon-heart:before {
660 | content: "\e08a";
661 | }
662 | .icon-info:before {
663 | content: "\e08b";
664 | }
665 | .icon-key:before {
666 | content: "\e08c";
667 | }
668 | .icon-link:before {
669 | content: "\e08d";
670 | }
671 | .icon-lock:before {
672 | content: "\e08e";
673 | }
674 | .icon-lock-open:before {
675 | content: "\e08f";
676 | }
677 | .icon-magnifier:before {
678 | content: "\e090";
679 | }
680 | .icon-magnifier-add:before {
681 | content: "\e091";
682 | }
683 | .icon-magnifier-remove:before {
684 | content: "\e092";
685 | }
686 | .icon-paper-clip:before {
687 | content: "\e093";
688 | }
689 | .icon-paper-plane:before {
690 | content: "\e094";
691 | }
692 | .icon-power:before {
693 | content: "\e097";
694 | }
695 | .icon-refresh:before {
696 | content: "\e098";
697 | }
698 | .icon-reload:before {
699 | content: "\e099";
700 | }
701 | .icon-settings:before {
702 | content: "\e09a";
703 | }
704 | .icon-star:before {
705 | content: "\e09b";
706 | }
707 | .icon-symbol-female:before {
708 | content: "\e09c";
709 | }
710 | .icon-symbol-male:before {
711 | content: "\e09d";
712 | }
713 | .icon-target:before {
714 | content: "\e09e";
715 | }
716 | .icon-credit-card:before {
717 | content: "\e025";
718 | }
719 | .icon-paypal:before {
720 | content: "\e608";
721 | }
722 | .icon-social-tumblr:before {
723 | content: "\e00a";
724 | }
725 | .icon-social-twitter:before {
726 | content: "\e009";
727 | }
728 | .icon-social-facebook:before {
729 | content: "\e00b";
730 | }
731 | .icon-social-instagram:before {
732 | content: "\e609";
733 | }
734 | .icon-social-linkedin:before {
735 | content: "\e60a";
736 | }
737 | .icon-social-pinterest:before {
738 | content: "\e60b";
739 | }
740 | .icon-social-github:before {
741 | content: "\e60c";
742 | }
743 | .icon-social-google:before {
744 | content: "\e60d";
745 | }
746 | .icon-social-reddit:before {
747 | content: "\e60e";
748 | }
749 | .icon-social-skype:before {
750 | content: "\e60f";
751 | }
752 | .icon-social-dribbble:before {
753 | content: "\e00d";
754 | }
755 | .icon-social-behance:before {
756 | content: "\e610";
757 | }
758 | .icon-social-foursqare:before {
759 | content: "\e611";
760 | }
761 | .icon-social-soundcloud:before {
762 | content: "\e612";
763 | }
764 | .icon-social-spotify:before {
765 | content: "\e613";
766 | }
767 | .icon-social-stumbleupon:before {
768 | content: "\e614";
769 | }
770 | .icon-social-youtube:before {
771 | content: "\e008";
772 | }
773 | .icon-social-dropbox:before {
774 | content: "\e00c";
775 | }
776 | .icon-social-vkontakte:before {
777 | content: "\e618";
778 | }
779 | .icon-social-steam:before {
780 | content: "\e620";
781 | }
782 |
--------------------------------------------------------------------------------
/assets/js/popper.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (C) Federico Zivolo 2018
3 | Distributed under the MIT License (license terms are at http://opensource.org/licenses/MIT).
4 | */(function(e,t){'object'==typeof exports&&'undefined'!=typeof module?module.exports=t():'function'==typeof define&&define.amd?define(t):e.Popper=t()})(this,function(){'use strict';function e(e){return e&&'[object Function]'==={}.toString.call(e)}function t(e,t){if(1!==e.nodeType)return[];var o=window.getComputedStyle(e,null);return t?o[t]:o}function o(e){return'HTML'===e.nodeName?e:e.parentNode||e.host}function n(e){if(!e||-1!==['HTML','BODY','#document'].indexOf(e.nodeName))return window.document.body;var i=t(e),r=i.overflow,p=i.overflowX,s=i.overflowY;return /(auto|scroll)/.test(r+s+p)?e:n(o(e))}function r(e){var o=e&&e.offsetParent,i=o&&o.nodeName;return i&&'BODY'!==i&&'HTML'!==i?-1!==['TD','TABLE'].indexOf(o.nodeName)&&'static'===t(o,'position')?r(o):o:window.document.documentElement}function p(e){var t=e.nodeName;return'BODY'!==t&&('HTML'===t||r(e.firstElementChild)===e)}function s(e){return null===e.parentNode?e:s(e.parentNode)}function d(e,t){if(!e||!e.nodeType||!t||!t.nodeType)return window.document.documentElement;var o=e.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_FOLLOWING,i=o?e:t,n=o?t:e,a=document.createRange();a.setStart(i,0),a.setEnd(n,0);var f=a.commonAncestorContainer;if(e!==f&&t!==f||i.contains(n))return p(f)?f:r(f);var l=s(e);return l.host?d(l.host,t):d(e,s(t).host)}function a(e){var t=1
=o.clientWidth&&i>=o.clientHeight}),f=0i[e]&&!t.escapeWithReference&&(n=z(p[o],i[e]-('right'===e?p.width:p.height))),pe({},o,n)}};return n.forEach(function(e){var t=-1===['left','top'].indexOf(e)?'secondary':'primary';p=se({},p,s[t](e))}),e.offsets.popper=p,e},priority:['left','right','top','bottom'],padding:5,boundariesElement:'scrollParent'},keepTogether:{order:400,enabled:!0,fn:function(e){var t=e.offsets,o=t.popper,i=t.reference,n=e.placement.split('-')[0],r=V,p=-1!==['top','bottom'].indexOf(n),s=p?'right':'bottom',d=p?'left':'top',a=p?'width':'height';return o[s]r(i[s])&&(e.offsets.popper[d]=r(i[s])),e}},arrow:{order:500,enabled:!0,fn:function(e,t){if(!F(e.instance.modifiers,'arrow','keepTogether'))return e;var o=t.element;if('string'==typeof o){if(o=e.instance.popper.querySelector(o),!o)return e;}else if(!e.instance.popper.contains(o))return console.warn('WARNING: `arrow.element` must be child of its popper element!'),e;var i=e.placement.split('-')[0],n=e.offsets,r=n.popper,p=n.reference,s=-1!==['left','right'].indexOf(i),d=s?'height':'width',a=s?'top':'left',f=s?'left':'top',l=s?'bottom':'right',m=O(o)[d];p[l]-mr[l]&&(e.offsets.popper[a]+=p[a]+m-r[l]);var h=p[a]+p[d]/2-m/2,g=h-c(e.offsets.popper)[a];return g=_(z(r[d]-m,g),0),e.arrowElement=o,e.offsets.arrow={},e.offsets.arrow[a]=Math.round(g),e.offsets.arrow[f]='',e},element:'[x-arrow]'},flip:{order:600,enabled:!0,fn:function(e,t){if(W(e.instance.modifiers,'inner'))return e;if(e.flipped&&e.placement===e.originalPlacement)return e;var o=w(e.instance.popper,e.instance.reference,t.padding,t.boundariesElement),i=e.placement.split('-')[0],n=L(i),r=e.placement.split('-')[1]||'',p=[];switch(t.behavior){case fe.FLIP:p=[i,n];break;case fe.CLOCKWISE:p=K(i);break;case fe.COUNTERCLOCKWISE:p=K(i,!0);break;default:p=t.behavior;}return p.forEach(function(s,d){if(i!==s||p.length===d+1)return e;i=e.placement.split('-')[0],n=L(i);var a=e.offsets.popper,f=e.offsets.reference,l=V,m='left'===i&&l(a.right)>l(f.left)||'right'===i&&l(a.left)l(f.top)||'bottom'===i&&l(a.top)l(o.right),g=l(a.top)l(o.bottom),b='left'===i&&h||'right'===i&&c||'top'===i&&g||'bottom'===i&&u,y=-1!==['top','bottom'].indexOf(i),w=!!t.flipVariations&&(y&&'start'===r&&h||y&&'end'===r&&c||!y&&'start'===r&&g||!y&&'end'===r&&u);(m||b||w)&&(e.flipped=!0,(m||b)&&(i=p[d+1]),w&&(r=j(r)),e.placement=i+(r?'-'+r:''),e.offsets.popper=se({},e.offsets.popper,S(e.instance.popper,e.offsets.reference,e.placement)),e=N(e.instance.modifiers,e,'flip'))}),e},behavior:'flip',padding:5,boundariesElement:'viewport'},inner:{order:700,enabled:!1,fn:function(e){var t=e.placement,o=t.split('-')[0],i=e.offsets,n=i.popper,r=i.reference,p=-1!==['left','right'].indexOf(o),s=-1===['top','left'].indexOf(o);return n[p?'left':'top']=r[t]-(s?n[p?'width':'height']:0),e.placement=L(t),e.offsets.popper=c(n),e}},hide:{order:800,enabled:!0,fn:function(e){if(!F(e.instance.modifiers,'hide','preventOverflow'))return e;var t=e.offsets.reference,o=T(e.instance.modifiers,function(e){return'preventOverflow'===e.name}).boundaries;if(t.bottomo.right||t.top>o.bottom||t.right');
97 | if (settings.brand !== '') {
98 | var brand = $('
'+settings.brand+'
');
99 | $(menuBar).append(brand);
100 | }
101 | $this.btn = $(
102 | ['<' + settings.parentTag + ' aria-haspopup="true" tabindex="0" class="' + prefix + '_btn ' + prefix + '_collapsed">',
103 | '',
104 | '
',
105 | '',
106 | '',
107 | '',
108 | '',
109 | '' + settings.parentTag + '>'
110 | ].join('')
111 | );
112 | $(menuBar).append($this.btn);
113 | $(settings.prependTo).prepend(menuBar);
114 | menuBar.append($this.mobileNav);
115 |
116 | // iterate over structure adding additional structure
117 | var items = $this.mobileNav.find('li');
118 | $(items).each(function () {
119 | var item = $(this),
120 | data = {};
121 | data.children = item.children('ul').attr('role', 'menu');
122 | item.data('menu', data);
123 |
124 | // if a list item has a nested menu
125 | if (data.children.length > 0) {
126 |
127 | // select all text before the child menu
128 | // check for anchors
129 |
130 | var a = item.contents(),
131 | containsAnchor = false,
132 | nodes = [];
133 |
134 | $(a).each(function () {
135 | if (!$(this).is('ul')) {
136 | nodes.push(this);
137 | } else {
138 | return false;
139 | }
140 |
141 | if($(this).is("a")) {
142 | containsAnchor = true;
143 | }
144 | });
145 |
146 | var wrapElement = $(
147 | '<' + settings.parentTag + ' role="menuitem" aria-haspopup="true" tabindex="-1" class="' + prefix + '_item"/>'
148 | );
149 |
150 | // wrap item text with tag and add classes unless we are separating parent links
151 | if ((!settings.allowParentLinks || settings.nestedParentLinks) || !containsAnchor) {
152 | var $wrap = $(nodes).wrapAll(wrapElement).parent();
153 | $wrap.addClass(prefix+'_row');
154 | } else
155 | $(nodes).wrapAll('
').parent();
156 |
157 | if (!settings.showChildren) {
158 | item.addClass(prefix+'_collapsed');
159 | } else {
160 | item.addClass(prefix+'_open');
161 | }
162 |
163 | item.addClass(prefix+'_parent');
164 |
165 | // create parent arrow. wrap with link if parent links and separating
166 | var arrowElement = $('
'+(settings.showChildren?settings.openedSymbol:settings.closedSymbol)+'');
167 |
168 | if (settings.allowParentLinks && !settings.nestedParentLinks && containsAnchor)
169 | arrowElement = arrowElement.wrap(wrapElement).parent();
170 |
171 | //append arrow
172 | $(nodes).last().after(arrowElement);
173 |
174 |
175 | } else if ( item.children().length === 0) {
176 | item.addClass(prefix+'_txtnode');
177 | }
178 |
179 | // accessibility for links
180 | item.children('a').attr('role', 'menuitem').click(function(event){
181 | //Ensure that it's not a parent
182 | if (settings.closeOnClick && !$(event.target).parent().closest('li').hasClass(prefix+'_parent')) {
183 | //Emulate menu close if set
184 | $($this.btn).click();
185 | }
186 | });
187 |
188 | //also close on click if parent links are set
189 | if (settings.closeOnClick && settings.allowParentLinks) {
190 | item.children('a').children('a').click(function (event) {
191 | //Emulate menu close
192 | $($this.btn).click();
193 | });
194 |
195 | item.find('.'+prefix+'_parent-link a:not(.'+prefix+'_item)').click(function(event){
196 | //Emulate menu close
197 | $($this.btn).click();
198 | });
199 | }
200 | });
201 |
202 | // structure is in place, now hide appropriate items
203 | $(items).each(function () {
204 | var data = $(this).data('menu');
205 | if (!settings.showChildren){
206 | $this._visibilityToggle(data.children, null, false, null, true);
207 | }
208 | });
209 |
210 | // finally toggle entire menu
211 | $this._visibilityToggle($this.mobileNav, null, false, 'init', true);
212 |
213 | // accessibility for menu button
214 | $this.mobileNav.attr('role','menu');
215 |
216 | // outline prevention when using mouse
217 | $(document).mousedown(function(){
218 | $this._outlines(false);
219 | });
220 |
221 | $(document).keyup(function(){
222 | $this._outlines(true);
223 | });
224 |
225 | // menu button click
226 | $($this.btn).click(function (e) {
227 | e.preventDefault();
228 | $this._menuToggle();
229 | });
230 |
231 | // click on menu parent
232 | $this.mobileNav.on('click', '.' + prefix + '_item', function (e) {
233 | e.preventDefault();
234 | $this._itemClick($(this));
235 | });
236 |
237 | // check for enter key on menu button and menu parents
238 | $($this.btn).keydown(function (e) {
239 | var ev = e || event;
240 | if(ev.keyCode == 13) {
241 | e.preventDefault();
242 | $this._menuToggle();
243 | }
244 | });
245 |
246 | $this.mobileNav.on('keydown', '.'+prefix+'_item', function(e) {
247 | var ev = e || event;
248 | if(ev.keyCode == 13) {
249 | e.preventDefault();
250 | $this._itemClick($(e.target));
251 | }
252 | });
253 |
254 | // allow links clickable within parent tags if set
255 | if (settings.allowParentLinks && settings.nestedParentLinks) {
256 | $('.'+prefix+'_item a').click(function(e){
257 | e.stopImmediatePropagation();
258 | });
259 | }
260 | };
261 |
262 | //toggle menu
263 | Plugin.prototype._menuToggle = function (el) {
264 | var $this = this;
265 | var btn = $this.btn;
266 | var mobileNav = $this.mobileNav;
267 |
268 | if (btn.hasClass(prefix+'_collapsed')) {
269 | btn.removeClass(prefix+'_collapsed');
270 | btn.addClass(prefix+'_open');
271 | } else {
272 | btn.removeClass(prefix+'_open');
273 | btn.addClass(prefix+'_collapsed');
274 | }
275 | btn.addClass(prefix+'_animating');
276 | $this._visibilityToggle(mobileNav, btn.parent(), true, btn);
277 | };
278 |
279 | // toggle clicked items
280 | Plugin.prototype._itemClick = function (el) {
281 | var $this = this;
282 | var settings = $this.settings;
283 | var data = el.data('menu');
284 | if (!data) {
285 | data = {};
286 | data.arrow = el.children('.'+prefix+'_arrow');
287 | data.ul = el.next('ul');
288 | data.parent = el.parent();
289 | //Separated parent link structure
290 | if (data.parent.hasClass(prefix+'_parent-link')) {
291 | data.parent = el.parent().parent();
292 | data.ul = el.parent().next('ul');
293 | }
294 | el.data('menu', data);
295 | }
296 | if (data.parent.hasClass(prefix+'_collapsed')) {
297 | data.arrow.html(settings.openedSymbol);
298 | data.parent.removeClass(prefix+'_collapsed');
299 | data.parent.addClass(prefix+'_open');
300 | data.parent.addClass(prefix+'_animating');
301 | $this._visibilityToggle(data.ul, data.parent, true, el);
302 | } else {
303 | data.arrow.html(settings.closedSymbol);
304 | data.parent.addClass(prefix+'_collapsed');
305 | data.parent.removeClass(prefix+'_open');
306 | data.parent.addClass(prefix+'_animating');
307 | $this._visibilityToggle(data.ul, data.parent, true, el);
308 | }
309 | };
310 |
311 | // toggle actual visibility and accessibility tags
312 | Plugin.prototype._visibilityToggle = function(el, parent, animate, trigger, init) {
313 | var $this = this;
314 | var settings = $this.settings;
315 | var items = $this._getActionItems(el);
316 | var duration = 0;
317 | if (animate) {
318 | duration = settings.duration;
319 | }
320 |
321 | if (el.hasClass(prefix+'_hidden')) {
322 | el.removeClass(prefix+'_hidden');
323 | //Fire beforeOpen callback
324 | if (!init) {
325 | settings.beforeOpen(trigger);
326 | }
327 | el.slideDown(duration, settings.easingOpen, function(){
328 |
329 | $(trigger).removeClass(prefix+'_animating');
330 | $(parent).removeClass(prefix+'_animating');
331 |
332 | //Fire afterOpen callback
333 | if (!init) {
334 | settings.afterOpen(trigger);
335 | }
336 | });
337 | el.attr('aria-hidden','false');
338 | items.attr('tabindex', '0');
339 | $this._setVisAttr(el, false);
340 | } else {
341 | el.addClass(prefix+'_hidden');
342 |
343 | //Fire init or beforeClose callback
344 | if (!init){
345 | settings.beforeClose(trigger);
346 | }
347 |
348 | el.slideUp(duration, this.settings.easingClose, function() {
349 | el.attr('aria-hidden','true');
350 | items.attr('tabindex', '-1');
351 | $this._setVisAttr(el, true);
352 | el.hide(); //jQuery 1.7 bug fix
353 |
354 | $(trigger).removeClass(prefix+'_animating');
355 | $(parent).removeClass(prefix+'_animating');
356 |
357 | //Fire init or afterClose callback
358 | if (!init){
359 | settings.afterClose(trigger);
360 | } else if (trigger == 'init'){
361 | settings.init();
362 | }
363 | });
364 | }
365 | };
366 |
367 | // set attributes of element and children based on visibility
368 | Plugin.prototype._setVisAttr = function(el, hidden) {
369 | var $this = this;
370 |
371 | // select all parents that aren't hidden
372 | var nonHidden = el.children('li').children('ul').not('.'+prefix+'_hidden');
373 |
374 | // iterate over all items setting appropriate tags
375 | if (!hidden) {
376 | nonHidden.each(function(){
377 | var ul = $(this);
378 | ul.attr('aria-hidden','false');
379 | var items = $this._getActionItems(ul);
380 | items.attr('tabindex', '0');
381 | $this._setVisAttr(ul, hidden);
382 | });
383 | } else {
384 | nonHidden.each(function(){
385 | var ul = $(this);
386 | ul.attr('aria-hidden','true');
387 | var items = $this._getActionItems(ul);
388 | items.attr('tabindex', '-1');
389 | $this._setVisAttr(ul, hidden);
390 | });
391 | }
392 | };
393 |
394 | // get all 1st level items that are clickable
395 | Plugin.prototype._getActionItems = function(el) {
396 | var data = el.data("menu");
397 | if (!data) {
398 | data = {};
399 | var items = el.children('li');
400 | var anchors = items.find('a');
401 | data.links = anchors.add(items.find('.'+prefix+'_item'));
402 | el.data('menu', data);
403 | }
404 | return data.links;
405 | };
406 |
407 | Plugin.prototype._outlines = function(state) {
408 | if (!state) {
409 | $('.'+prefix+'_item, .'+prefix+'_btn').css('outline','none');
410 | } else {
411 | $('.'+prefix+'_item, .'+prefix+'_btn').css('outline','');
412 | }
413 | };
414 |
415 | Plugin.prototype.toggle = function(){
416 | var $this = this;
417 | $this._menuToggle();
418 | };
419 |
420 | Plugin.prototype.open = function(){
421 | var $this = this;
422 | if ($this.btn.hasClass(prefix+'_collapsed')) {
423 | $this._menuToggle();
424 | }
425 | };
426 |
427 | Plugin.prototype.close = function(){
428 | var $this = this;
429 | if ($this.btn.hasClass(prefix+'_open')) {
430 | $this._menuToggle();
431 | }
432 | };
433 |
434 | $.fn[mobileMenu] = function ( options ) {
435 | var args = arguments;
436 |
437 | // Is the first parameter an object (options), or was omitted, instantiate a new instance
438 | if (options === undefined || typeof options === 'object') {
439 | return this.each(function () {
440 |
441 | // Only allow the plugin to be instantiated once due to methods
442 | if (!$.data(this, 'plugin_' + mobileMenu)) {
443 |
444 | // if it has no instance, create a new one, pass options to our plugin constructor,
445 | // and store the plugin instance in the elements jQuery data object.
446 | $.data(this, 'plugin_' + mobileMenu, new Plugin( this, options ));
447 | }
448 | });
449 |
450 | // If is a string and doesn't start with an underscore or 'init' function, treat this as a call to a public method.
451 | } else if (typeof options === 'string' && options[0] !== '_' && options !== 'init') {
452 |
453 | // Cache the method call to make it possible to return a value
454 | var returns;
455 |
456 | this.each(function () {
457 | var instance = $.data(this, 'plugin_' + mobileMenu);
458 |
459 | // Tests that there's already a plugin-instance and checks that the requested public method exists
460 | if (instance instanceof Plugin && typeof instance[options] === 'function') {
461 |
462 | // Call the method of our plugin instance, and pass it the supplied arguments.
463 | returns = instance[options].apply( instance, Array.prototype.slice.call( args, 1 ) );
464 | }
465 | });
466 |
467 | // If the earlier cached method gives a value back return the value, otherwise return this to preserve chainability.
468 | return returns !== undefined ? returns : this;
469 | }
470 | };
471 | }(jQuery, document, window));
472 |
--------------------------------------------------------------------------------
/assets/css/main.css:
--------------------------------------------------------------------------------
1 | @import url("https://fonts.googleapis.com/css?family=Shadows+Into+Light|Source+Sans+Pro:400,700");
2 | html {
3 | overflow-x: hidden;
4 | }
5 |
6 | body {
7 | background: #fff;
8 | font-size: 14px;
9 | font-weight: 400;
10 | font-family: "Source Sans Pro", sans-serif;
11 | -webkit-box-sizing: border-box;
12 | -moz-box-sizing: border-box;
13 | box-sizing: border-box;
14 | -webkit-font-smoothing: subpixel-antialiased;
15 | color: #666;
16 | line-height: 25px;
17 | -webkit-backface-visibility: hidden;
18 | backface-visibility: hidden;
19 | overflow-x: hidden;
20 | }
21 |
22 | h1,
23 | h2,
24 | h3,
25 | h4 {
26 | font-size: 38px;
27 | font-weight: 700;
28 | font-family: "Source Sans Pro", sans-serif;
29 | }
30 |
31 | .script-font {
32 | font-family: 'Shadows Into Light', cursive;
33 | }
34 |
35 | a {
36 | -webkit-transition: all 0.2s linear;
37 | -moz-transition: all 0.2s linear;
38 | -o-transition: all 0.2s linear;
39 | transition: all 0.2s linear;
40 | }
41 |
42 | a:hover {
43 | text-decoration: none;
44 | }
45 |
46 | a a:focus {
47 | outline: none;
48 | }
49 |
50 | p {
51 | font-weight: 400;
52 | font-family: "Source Sans Pro", sans-serif;
53 | margin: 0px;
54 | font-size: 14px;
55 | }
56 |
57 | ul,
58 | ol {
59 | list-style: outside none none;
60 | margin: 0;
61 | padding: 0;
62 | }
63 |
64 | ul li,
65 | ol li {
66 | list-style: none;
67 | }
68 |
69 | .hero-heading {
70 | font-size: 48px;
71 | font-weight: 700;
72 | color: #fff;
73 | text-transform: capitalize;
74 | line-height: 70px;
75 | letter-spacing: 0.1rem;
76 | }
77 |
78 | .hero-sub-heading {
79 | font-size: 20px;
80 | font-weight: 400;
81 | color: #e6e6e6;
82 | line-height: 45px;
83 | letter-spacing: 0.1rem;
84 | }
85 |
86 | .section-titile-bg {
87 | display: inline;
88 | font-size: 115px;
89 | font-weight: 700;
90 | height: 100%;
91 | left: -173px;
92 | opacity: 0.1;
93 | position: absolute;
94 | top: -14px;
95 | width: 100%;
96 | text-align: center;
97 | }
98 |
99 | .section-title-header p {
100 | text: center;
101 | font-weight: 400;
102 | line-height: 26px;
103 | padding-bottom: 36px;
104 | }
105 |
106 | .section-title {
107 | color: #252525;
108 | font-size: 38px;
109 | text-align: center;
110 | letter-spacing: 1px;
111 | line-height: 1;
112 | margin-bottom: 48px;
113 | padding: 0 10px;
114 | position: relative;
115 | }
116 |
117 | .btn {
118 | font-size: 14px;
119 | padding: 10px 30px;
120 | border-radius: 0px;
121 | cursor: pointer;
122 | font-weight: 400;
123 | color: #fff;
124 | border-radius: 4px;
125 | text-transform: uppercase;
126 | -webkit-transition: all 0.2s linear;
127 | -moz-transition: all 0.2s linear;
128 | -o-transition: all 0.2s linear;
129 | transition: all 0.2s linear;
130 | display: inline-block;
131 | }
132 |
133 | .btn:focus,
134 | .btn:active {
135 | box-shadow: none;
136 | outline: none;
137 | color: #fff;
138 | }
139 |
140 | .btn-common {
141 | background-color: #00b4d9;
142 | position: relative;
143 | z-index: 1;
144 | }
145 |
146 | .btn-common:hover {
147 | color: #fff;
148 | background-color: #21cff3;
149 | box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
150 | transition: all .2s ease-in-out;
151 | -moz-transition: all .2s ease-in-out;
152 | -webkit-transition: all .2s ease-in-out;
153 | }
154 |
155 | .btn-danger:hover {
156 | background-color: #f55262;
157 | border-color: #f55262;
158 | box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
159 | transition: all .2s ease-in-out;
160 | -moz-transition: all .2s ease-in-out;
161 | -webkit-transition: all .2s ease-in-out;
162 | }
163 |
164 | .btn-border {
165 | color: #fff;
166 | background-color: transparent;
167 | border: 1px solid #fff;
168 | }
169 |
170 | .btn-border:hover {
171 | border: 1px solid #fff;
172 | color: #fff;
173 | background-color: rgba(255, 255, 255, 0.2);
174 | }
175 |
176 | .btn-lg {
177 | padding: 14px 33px;
178 | text-transform: uppercase;
179 | font-size: 16px;
180 | }
181 |
182 | .btn-rm {
183 | padding: 7px 10px;
184 | text-transform: capitalize;
185 | }
186 |
187 | button:focus {
188 | outline: none !important;
189 | }
190 |
191 | .icon-close,
192 | .icon-check {
193 | color: #00b4d9;
194 | }
195 |
196 | .social-icon li {
197 | display: inline-block;
198 | }
199 |
200 | .social-icon li a {
201 | color: #000;
202 | background: #fff;
203 | width: 35px;
204 | height: 35px;
205 | line-height: 38px;
206 | display: block;
207 | text-align: center;
208 | border-radius: 100%;
209 | font-size: 16px;
210 | margin: 15px 6px 12px 6px;
211 | transition: all 0.3s ease-in-out 0s;
212 | -moz-transition: all 0.3s ease-in-out 0s;
213 | -webkit-transition: all 0.3s ease-in-out 0s;
214 | -o-transition: all 0.3s ease-in-out 0s;
215 | }
216 |
217 | .social-icon li a:hover {
218 | color: #fff;
219 | }
220 |
221 | .social-icon li .facebook:hover {
222 | background: #3b5999;
223 | }
224 |
225 | .social-icon li .twitter:hover {
226 | background: #4A9CEC;
227 | }
228 |
229 | .social-icon li .instagram:hover {
230 | background: #D6274D;
231 | }
232 |
233 | .social-icon li .linkedin:hover {
234 | background: #1260A2;
235 | }
236 |
237 | .social-icon li .google:hover {
238 | background: #CE332A;
239 | }
240 |
241 |
242 | /* ScrollToTop */
243 |
244 | a.back-to-top {
245 | display: none;
246 | position: fixed;
247 | bottom: 18px;
248 | right: 15px;
249 | text-decoration: none;
250 | }
251 |
252 | a.back-to-top i {
253 | display: block;
254 | font-size: 22px;
255 | width: 40px;
256 | height: 40px;
257 | line-height: 40px;
258 | color: #fff;
259 | background: #00b4d9;
260 | border-radius: 2px;
261 | text-align: center;
262 | transition: all 0.2s ease-in-out;
263 | -moz-transition: all 0.2s ease-in-out;
264 | -webkit-transition: all 0.2s ease-in-out;
265 | -o-transition: all 0.2s ease-in-out;
266 | box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
267 | }
268 |
269 | a.back-to-top:hover,
270 | a.back-to-top:focus {
271 | text-decoration: none;
272 | }
273 |
274 | #loader {
275 | position: fixed;
276 | background: #fff;
277 | top: 0;
278 | left: 0;
279 | width: 100%;
280 | height: 100%;
281 | z-index: 9999999999;
282 | }
283 |
284 | .square-spin {
285 | position: absolute;
286 | top: 50%;
287 | left: 50%;
288 | margin-left: -40px;
289 | margin-top: -40px;
290 | }
291 |
292 | .square-spin img {
293 | max-width: 64px;
294 | }
295 |
296 | .section-padding {
297 | padding: 60px 0;
298 | }
299 |
300 | #about .img-thumb img {
301 | border: 8px solid #fff;
302 | box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
303 | }
304 |
305 | .profile-wrapper {
306 | padding: 45px 0;
307 | }
308 |
309 | .profile-wrapper .btn {
310 | margin: 10px 10px 0px 0px;
311 | }
312 |
313 | .profile-wrapper .btn i {
314 | vertical-align: middle;
315 | margin-right: 5px;
316 | }
317 |
318 | .about-profile {
319 | position: relative;
320 | margin: 20px 0 20px 0;
321 | }
322 |
323 | .about-profile .pro-title {
324 | font-weight: 700;
325 | color: #040404;
326 | position: relative;
327 | width: 120px;
328 | display: inline-block;
329 | margin-bottom: 5px;
330 | }
331 |
332 | .about-profile .pro-title:after {
333 | position: absolute;
334 | content: ':';
335 | color: #040404;
336 | font-size: 14px;
337 | left: 77px;
338 | }
339 |
340 | .about-profile .admin-sign {
341 | position: absolute;
342 | right: 45px;
343 | bottom: 10px;
344 | }
345 |
346 | .counter-section {
347 | background: url(../img/background/bg-1.jpg);
348 | overflow: hidden;
349 | position: relative;
350 | }
351 |
352 | .counter-section:before {
353 | content: '';
354 | position: absolute;
355 | top: 0;
356 | bottom: 0;
357 | width: 100%;
358 | height: 100%;
359 | background: rgba(0, 0, 0, 0.5);
360 | }
361 |
362 | .counter-section .counter {
363 | padding: 30px 0;
364 | }
365 |
366 | .counter-section .counter .icon {
367 | margin-bottom: 30px;
368 | }
369 |
370 | .counter-section .counter .icon i {
371 | font-size: 48px;
372 | color: #00b4d9;
373 | }
374 |
375 | .counter-section .counter p {
376 | font-size: 18px;
377 | text-transform: uppercase;
378 | color: #fff;
379 | font-weight: 400;
380 | letter-spacing: 1px;
381 | margin: 30px 0;
382 | }
383 |
384 | .counter-section .counter .counterUp {
385 | color: #fff;
386 | font-size: 42px;
387 | margin-top: 15px;
388 | font-weight: 700;
389 | }
390 |
391 |
392 | /* Resume */
393 |
394 | .timeline {
395 | position: relative;
396 | }
397 |
398 | .timeline .timelin-title {
399 | font-size: 20px;
400 | text-transform: uppercase;
401 | margin-left: 25px;
402 | }
403 |
404 | .timeline li {
405 | padding: 0 20px 20px 30px;
406 | list-style: none;
407 | border-left: 2px solid #f1f1f1;
408 | }
409 |
410 | .timeline li .content-text {
411 | background: #f2f2f2;
412 | padding: 20px;
413 | }
414 |
415 | .timeline li .line-title {
416 | font-size: 16px;
417 | line-height: 6px;
418 | }
419 |
420 | .timeline li span {
421 | font-size: 12px;
422 | padding: 9px 0;
423 | display: block;
424 | }
425 |
426 | .timeline li .line-text {
427 | color: #888;
428 | line-height: 18px;
429 | }
430 |
431 | .timeline li:first-child:before {
432 | border: 0;
433 | background: none;
434 | position: relative;
435 | }
436 |
437 | .timeline li:last-child {
438 | padding: 0 20px 0px 30px;
439 | }
440 |
441 | .timeline li:before {
442 | content: "";
443 | border: solid 2px;
444 | width: 8px;
445 | height: 8px;
446 | border-radius: 50px;
447 | -moz-border-radius: 50px;
448 | -webkit-border-radius: 50px;
449 | font-size: 8px;
450 | margin-left: -35px;
451 | font-weight: 400;
452 | background: #fff;
453 | display: block;
454 | position: absolute;
455 | margin-top: 18px;
456 | border-color: #00b4d9 !important;
457 | }
458 |
459 | .timeline li:first-child i {
460 | font-size: 20px;
461 | float: left;
462 | margin-left: -30px;
463 | line-height: 50px;
464 | border-radius: 30px;
465 | margin: -12px -55px;
466 | background: #00b4d9;
467 | color: #fff;
468 | width: 50px;
469 | height: 50px;
470 | text-align: center;
471 | }
472 |
473 | .navbar-brand {
474 | position: relative;
475 | padding: 0px;
476 | }
477 |
478 | .top-nav-collapse {
479 | background: #fff;
480 | z-index: 999999;
481 | top: 0px !important;
482 | min-height: 58px;
483 | box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
484 | -webkit-animation-duration: 1s;
485 | animation-duration: 1s;
486 | -webkit-animation-fill-mode: both;
487 | animation-fill-mode: both;
488 | -webkit-animation-name: fadeInDown;
489 | animation-name: fadeInDown;
490 | background: #fff !important;
491 | }
492 |
493 | .top-nav-collapse .navbar-brand {
494 | top: 0px;
495 | }
496 |
497 | .top-nav-collapse .navbar-brand img {
498 | width: 65%;
499 | }
500 |
501 | .top-nav-collapse .navbar-nav .nav-link {
502 | color: #333 !important;
503 | margin-top: 0px !important;
504 | margin-bottom: 0px !important;
505 | }
506 |
507 | .top-nav-collapse .navbar-nav .nav-link:hover {
508 | cursor: pointer;
509 | color: #00b4d9 !important;
510 | }
511 |
512 | .top-nav-collapse .navbar-nav li.active a.nav-link {
513 | color: #00b4d9 !important;
514 | }
515 |
516 | .indigo {
517 | background: #fff;
518 | }
519 |
520 | .menu-bg {
521 | background: transparent;
522 | }
523 |
524 | .navbar-expand-lg .navbar-nav .nav-link i {
525 | font-size: 28px;
526 | color: #00b4d9;
527 | vertical-align: middle;
528 | -webkit-transition: all 0.3s ease-in-out;
529 | -moz-transition: all 0.3s ease-in-out;
530 | transition: all 0.3s ease-in-out;
531 | }
532 |
533 | .navbar-expand-lg .navbar-nav .nav-link i:hover {
534 | color: #21cff3;
535 | }
536 |
537 | .navbar-expand-lg .navbar-nav .nav-link {
538 | color: #333;
539 | font-weight: 700;
540 | padding: 0 17px;
541 | margin-top: 15px;
542 | margin-bottom: 15px;
543 | line-height: 40px;
544 | text-transform: uppercase;
545 | cursor: pointer;
546 | background: transparent;
547 | -webkit-transition: all 0.3s ease-in-out;
548 | -moz-transition: all 0.3s ease-in-out;
549 | transition: all 0.3s ease-in-out;
550 | }
551 |
552 | .navbar-expand-lg .navbar-nav li a:hover,
553 | .navbar-expand-lg .navbar-nav li .active>a,
554 | .navbar-expand-lg .navbar-nav li a:focus {
555 | color: #00b4d9;
556 | outline: none;
557 | }
558 |
559 | .navbar {
560 | padding: 0;
561 | }
562 |
563 | .navbar li.active a.nav-link {
564 | color: #00b4d9;
565 | }
566 |
567 | .dropdown-toggle::after {
568 | display: none;
569 | }
570 |
571 | .dropdown-menu {
572 | margin: 0;
573 | padding: 0;
574 | display: none;
575 | position: absolute;
576 | z-index: 99;
577 | min-width: 210px;
578 | background-color: #fff;
579 | white-space: nowrap;
580 | border-radius: 4px;
581 | -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
582 | box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
583 | animation: fadeIn 0.4s;
584 | -webkit-animation: fadeIn 0.4s;
585 | -moz-animation: fadeIn 0.4s;
586 | -o-animation: fadeIn 0.4s;
587 | -ms-animation: fadeIn 0.4s;
588 | }
589 |
590 | .dropdown-menu:before {
591 | content: "";
592 | display: inline-block;
593 | position: absolute;
594 | bottom: 100%;
595 | left: 20%;
596 | margin-left: -5px;
597 | border-right: 10px solid transparent;
598 | border-left: 10px solid transparent;
599 | border-bottom: 10px solid #fff;
600 | }
601 |
602 | .dropdown:hover .dropdown-menu {
603 | display: block;
604 | position: absolute;
605 | text-align: left;
606 | top: 100%;
607 | border: none;
608 | animation: fadeIn 0.4s;
609 | -webkit-animation: fadeIn 0.4s;
610 | -moz-animation: fadeIn 0.4s;
611 | -o-animation: fadeIn 0.4s;
612 | -ms-animation: fadeIn 0.4s;
613 | }
614 |
615 | .dropdown .dropdown-menu .dropdown-item {
616 | width: 100%;
617 | padding: 12px 20px;
618 | font-size: 14px;
619 | color: #333;
620 | border-bottom: 1px solid #f1f1f1;
621 | text-decoration: none;
622 | display: inline-block;
623 | float: left;
624 | clear: both;
625 | position: relative;
626 | outline: 0;
627 | transition: all 0.3s ease-in-out;
628 | -webkit-transition: all 0.3s ease-in-out;
629 | -moz-transition: all 0.3s ease-in-out;
630 | -o-transition: all 0.3s ease-in-out;
631 | -ms-transition: all 0.3s ease-in-out;
632 | }
633 |
634 | .dropdown .dropdown-menu .dropdown-item:last-child {
635 | border-bottom: none;
636 | border-bottom-left-radius: 4px;
637 | border-bottom-right-radius: 4px;
638 | }
639 |
640 | .dropdown .dropdown-menu .dropdown-item:first-child {
641 | border-top-left-radius: 4px;
642 | border-top-right-radius: 4px;
643 | }
644 |
645 | .dropdown .dropdown-item:focus,
646 | .dropdown .dropdown-item:hover,
647 | .dropdown .dropdown-item.active {
648 | color: #00b4d9;
649 | }
650 |
651 | .dropdown-item.active,
652 | .dropdown-item:active {
653 | background: transparent;
654 | }
655 |
656 | .fadeInUpMenu {
657 | -webkit-animation-name: fadeInUpMenu;
658 | animation-name: fadeInUpMenu;
659 | }
660 |
661 | .slicknav_btn {
662 | border-color: #00b4d9;
663 | }
664 |
665 | .slicknav_menu .slicknav_icon-bar {
666 | background: #00b4d9;
667 | }
668 |
669 |
670 | /* only small tablets */
671 |
672 | @media (min-width: 768px) and (max-width: 991px) {
673 | #nav-main li a.nav-link {
674 | padding-top: 18px;
675 | }
676 | }
677 |
678 | .navbar-toggler {
679 | display: none;
680 | }
681 |
682 | .mobile-menu {
683 | display: none;
684 | }
685 |
686 | .slicknav_menu {
687 | display: none;
688 | }
689 |
690 | @media screen and (max-width: 768px) {
691 | .navbar-header {
692 | width: 100%;
693 | }
694 | .navbar-brand {
695 | position: absolute;
696 | padding: 0px 15px;
697 | top: 0;
698 | }
699 | .navbar-brand img {
700 | width: 75%;
701 | }
702 | #mobile-menu {
703 | display: none;
704 | }
705 | .slicknav_menu {
706 | display: block;
707 | }
708 | .slicknav_nav .active a {
709 | background: #E91E63;
710 | color: #fff;
711 | }
712 | .slicknav_nav a:hover,
713 | .slicknav_nav a:focus,
714 | .slicknav_nav .active {
715 | color: #00b4d9;
716 | outline: none;
717 | background: #f8f9fa;
718 | }
719 | }
720 |
721 |
722 | /* ==========================================================================
723 | 3. Hero Area
724 | ========================================================================== */
725 |
726 | .hero-area-bg {
727 | background: url(../img/fondo.png) no-repeat;
728 | background-size: cover;
729 | }
730 |
731 | #hero-area {
732 | color: #fff;
733 | overflow: hidden;
734 | position: relative;
735 | }
736 |
737 | #hero-area .overlay {
738 | position: absolute;
739 | width: 100%;
740 | height: 100%;
741 | top: 0px;
742 | left: 0px;
743 | background: #0c0808;
744 | opacity: 0.6;
745 | }
746 |
747 | #hero-area .contents {
748 | padding: 175px 0px 120px;
749 | }
750 |
751 | #hero-area .contents h5 {
752 | font-size: 50px;
753 | }
754 |
755 | #hero-area .contents .head-title {
756 | color: #fff;
757 | font-size: 80px;
758 | letter-spacing: 10px;
759 | text-transform: uppercase;
760 | font-weight: 700;
761 | }
762 |
763 | #hero-area .contents p {
764 | font-size: 30px;
765 | color: #fff;
766 | font-weight: 400;
767 | line-height: 30px;
768 | margin-bottom: 25px;
769 | }
770 |
771 | #hero-area .contents .btn {
772 | margin: 25px 0px;
773 | text-transform: uppercase;
774 | }
775 |
776 | #hero-area .banner_bottom_btn {
777 | margin-top: 40px;
778 | }
779 |
780 | #hero-area .banner_bottom_btn i {
781 | color: #fff;
782 | font-size: 48px;
783 | -webkit-transition: all 0.2s linear;
784 | -moz-transition: all 0.2s linear;
785 | -o-transition: all 0.2s linear;
786 | transition: all 0.2s linear;
787 | }
788 |
789 | #hero-area .banner_bottom_btn i:hover {
790 | color: #ddd;
791 | }
792 |
793 |
794 | /* ==========================================================================
795 | Portfolio Section
796 | ========================================================================== */
797 |
798 | #portfolios {
799 | background: #f2f2f2;
800 | }
801 |
802 | #portfolios .mix {
803 | padding: 10px;
804 | }
805 |
806 | #portfolios .portfolio-item .shot-item {
807 | margin: 0px;
808 | }
809 |
810 | #portfolio .mix {
811 | display: none;
812 | }
813 |
814 | .controls {
815 | text-align: center;
816 | padding: 0px 0px 20px;
817 | }
818 |
819 | .controls .active {
820 | color: #00b4d9 !important;
821 | border-color: #00b4d9;
822 | background: transparent;
823 | }
824 |
825 | .controls .btn {
826 | text-transform: uppercase;
827 | margin: 2px;
828 | color: #fff;
829 | }
830 |
831 | .controls:hover {
832 | cursor: pointer;
833 | }
834 |
835 | .portfolio-img {
836 | overflow: hidden;
837 | display: block;
838 | position: relative;
839 | }
840 |
841 | .portfolio-img img {
842 | width: 100%;
843 | }
844 |
845 | .shot-item {
846 | margin-right: 15px;
847 | border-radius: 4px;
848 | background: #fff;
849 | position: relative;
850 | }
851 |
852 | .shot-item img {
853 | width: 100%;
854 | }
855 |
856 | .shot-item .overlay {
857 | position: absolute;
858 | width: 100%;
859 | height: 100%;
860 | left: 0;
861 | top: 0;
862 | background: rgba(0, 180, 217, 0.6);
863 | opacity: 0;
864 | -webkit-transition: all 0.5s ease-in-out;
865 | transition: all 0.5s ease-in-out;
866 | }
867 |
868 | .shot-item:hover .overlay {
869 | opacity: 1;
870 | }
871 |
872 | .overlay {
873 | opacity: 0;
874 | }
875 |
876 | .overlay .icons i {
877 | height: 42px;
878 | width: 42px;
879 | line-height: 42px;
880 | color: #00b4d9;
881 | left: 50%;
882 | margin-left: -24px;
883 | margin-top: -24px;
884 | top: 50%;
885 | position: absolute;
886 | z-index: 2;
887 | cursor: pointer;
888 | text-align: center;
889 | font-size: 20px;
890 | -webkit-transition: all 0.5s ease-in-out;
891 | -moz-transition: all 0.5s ease-in-out;
892 | transition: all 0.5s ease-in-out;
893 | background: #fff;
894 | border-radius: 4px;
895 | }
896 |
897 | .overlay .preview {
898 | position: absolute;
899 | left: 45%;
900 | top: 50%;
901 | color: #fff;
902 | }
903 |
904 | .overlay .link {
905 | position: absolute;
906 | left: 60%;
907 | margin-left: 10px;
908 | top: 50%;
909 | color: #fff;
910 | }
911 |
912 | .shot-item:hover .overlay {
913 | opacity: 1;
914 | }
915 |
916 | a:not([href]):not([tabindex]) {
917 | color: #fff;
918 | }
919 |
920 | a:not([href]):not([tabindex]):focus,
921 | a:not([href]):not([tabindex]):hover {
922 | color: #fff;
923 | }
924 |
925 |
926 | /* Services Item */
927 |
928 | .services {
929 | background: #F0F0F0;
930 | }
931 |
932 | .services-item {
933 | background: #fff;
934 | border-radius: 4px;
935 | padding: 48px 20px;
936 | box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
937 | text-align: center;
938 | transition: all 0.3s ease-in-out 0s;
939 | -moz-transition: all 0.3s ease-in-out 0s;
940 | -webkit-transition: all 0.3s ease-in-out 0s;
941 | -o-transition: all 0.3s ease-in-out 0s;
942 | }
943 |
944 | .services-item .icon i {
945 | font-size: 42px;
946 | margin-bottom: 15px;
947 | text-align: center;
948 | width: 48px;
949 | display: block;
950 | margin: 0 auto;
951 | height: 48px;
952 | color: #00b4d9;
953 | }
954 |
955 | .services-item .services-content h3 {
956 | margin-top: 10px;
957 | margin-bottom: 10px;
958 | }
959 |
960 | .services-item .services-content h3 a {
961 | font-size: 18px;
962 | text-transform: uppercase;
963 | color: #666;
964 | }
965 |
966 | .services-item .services-content h3 a:hover {
967 | color: #00b4d9;
968 | }
969 |
970 | .services-item .services-content p {
971 | line-height: 22px;
972 | }
973 |
974 | .services-item:hover {
975 | box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
976 | }
977 |
978 | .form-control {
979 | width: 100%;
980 | margin-bottom: 20px;
981 | font-size: 14px;
982 | border-radius: 0;
983 | -webkit-transition: all 0.3s;
984 | -moz-transition: all 0.3s;
985 | transition: all 0.3s;
986 | padding: 8px 10px;
987 | border: 1px solid #e1e1e1;
988 | }
989 |
990 | .form-control:focus {
991 | box-shadow: none;
992 | outline: none;
993 | }
994 |
995 | .btn.disabled,
996 | .btn:disabled {
997 | opacity: 1;
998 | }
999 |
1000 | .contact-form-area {
1001 | background: #fff;
1002 | box-shadow: 0 0 30px #ededed;
1003 | padding: 60px 40px;
1004 | }
1005 |
1006 | .contact-form-area h2 {
1007 | font-size: 18px;
1008 | text-transform: uppercase;
1009 | }
1010 |
1011 | .footer-right-contact {
1012 | padding: 4px;
1013 | border: 1px solid #e1e1e1;
1014 | margin-top: 30px;
1015 | }
1016 |
1017 | .footer-right-contact .single-contact {
1018 | margin: 10px 22px;
1019 | padding: 3px 55px;
1020 | position: relative;
1021 | color: #666;
1022 | }
1023 |
1024 | .footer-right-contact .single-contact p {
1025 | margin-bottom: 5px;
1026 | }
1027 |
1028 | .footer-right-contact .single-contact p a {
1029 | color: #666;
1030 | }
1031 |
1032 | .footer-right-contact .contact-icon {
1033 | background: #00b4d9;
1034 | color: #fff;
1035 | border-radius: 50%;
1036 | font-size: 20px;
1037 | height: 40px;
1038 | left: 0;
1039 | padding-top: 8px;
1040 | position: absolute;
1041 | text-align: center;
1042 | top: 50%;
1043 | -webkit-transform: translateY(-50%);
1044 | transform: translateY(-50%);
1045 | width: 40px;
1046 | }
1047 |
1048 | #contact {
1049 | position: relative;
1050 | overflow: hidden;
1051 | }
1052 |
1053 | #contact #contactForm {
1054 | margin-top: 30px;
1055 | }
1056 |
1057 | .text-danger {
1058 | font-size: 14px;
1059 | margin-top: 10px;
1060 | }
1061 |
1062 | .list-unstyled li {
1063 | color: #d9534f;
1064 | }
1065 |
1066 | #conatiner-map {
1067 | margin-top: 30px;
1068 | text-align: center;
1069 | background-color: #fff;
1070 | height: 370px;
1071 | -webkit-transition: all 0.3s;
1072 | -moz-transition: all 0.3s;
1073 | transition: all 0.3s;
1074 | z-index: 101;
1075 | width: 100%;
1076 | }
1077 |
1078 |
1079 | /* Footer Area Start */
1080 |
1081 | .footer-area {
1082 | background: #1C1C20;
1083 | }
1084 |
1085 | .footer-area .footer-text p {
1086 | font-size: 14px;
1087 | margin-top: 20px;
1088 | color: #fff;
1089 | }
1090 |
1091 | .footer-area .footer-text p a {
1092 | color: #00b4d9;
1093 | }
1094 |
1095 | .footer-area .footer-text .nav-inline .nav-link {
1096 | padding: 11px 7px;
1097 | color: #888;
1098 | }
1099 |
1100 | .footer-area .footer-text .nav-inline .nav-link:hover {
1101 | color: #00b4d9;
1102 | }
1103 |
1104 | .footer-2 {
1105 | background: #252525;
1106 | }
1107 |
1108 | .footer-2 img {
1109 | margin-top: -8px;
1110 | }
1111 |
1112 | .footer-2 h3 {
1113 | font-size: 20px;
1114 | color: #fff;
1115 | font-weight: 700;
1116 | padding-bottom: 10px;
1117 | letter-spacing: 0.5px;
1118 | }
1119 |
1120 | .footer-2 p {
1121 | font-size: 14px;
1122 | color: #fff;
1123 | line-height: 20px;
1124 | margin: 0;
1125 | padding-right: 50px;
1126 | }
1127 |
1128 | .footer-2 ul li a {
1129 | color: #fff;
1130 | font-size: 13px;
1131 | font-weight: 400;
1132 | }
1133 |
1134 | .footer-2 ul li a:hover {
1135 | color: #00b4d9;
1136 | }
1137 |
1138 | #copyright {
1139 | background: #333;
1140 | }
1141 |
1142 | #copyright p {
1143 | line-height: 42px;
1144 | color: #fff;
1145 | margin: 0;
1146 | }
1147 |
1148 | #copyright p a {
1149 | color: #fff;
1150 | }
1151 |
1152 | #copyright p a:hover {
1153 | color: #00b4d9;
1154 | }
--------------------------------------------------------------------------------
/assets/fonts/font-awesome.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.6.3');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
Lactancia Materna Exclusiva
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
101 |
102 |
103 |
104 |
131 |
132 |
133 |
134 |
135 | BENEFICIOS DE LA LACTANCIA MATERNA EXCLUSIVA EN EL BEBÉ
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
MADURACIÓN DEL SISTEMA INMUNE
146 |
147 |
148 |
Disminuye la incidencia de enfermedades alérgicas, y otros trastornos autoinmunes
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
PREVIENE RIESGO DE ASMA
160 |
161 |
162 |
Menor riesgo de desarrollar asma en el bebé, entre otras enfermedades crónicas
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
PREVIENE RIESGO DE OBESIDAD
174 |
175 |
176 |
Menor riesgo de desarrollar obesidad en el bebé, entre otras enfermedades crónicas
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
PREVIENE RIESGO DE DIABETES TIPO 1
188 |
189 |
190 |
Menor riesgo de desarrollar diabetes tipos 1 en el bebé, entre otras enfermedades crónicas
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
PREVIENE RIESGO DE INFECCIONES DEL OÍDO
205 |
206 |
207 |
Menor riesgo de desarrollar infecciones del oído en el bebé, entre otras enfermedades crónicas
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
PREVIENE INFECCIONES GASTROINTESTINALES
219 |
220 |
221 |
Menor riesgo de desarrollar infecciones del oído en el bebé, entre otras enfermedades crónicas
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
PREVIENE MUERTE SÚBITA DEL LACTANTE
233 |
234 |
235 |
Enfermedades que dificilmente son tratables, los mejores esfuerzos se realizan en su prevención.
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
MENOS MORTALIDAD INFANTIL
247 |
248 |
249 |
La lactancia materna disminuye esta tasa en el primer año de vida del niño.
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 | BENEFICIOS DE LA LACTANCIA MATERNA EXCLUSIVA EN LA MADRE
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
HORMONAS BENEFICIOSAS
271 |
272 |
273 |
Favorece la secreción de la oxitocina, hormona que facilita la contracción uterina tras el parto
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
FAVORECE EL VÍNCULO MADRE-HIJO
285 |
286 |
287 |
Fomenta el vínculo emocional entre la madre y el bebé, lo que puede tener efectos positivos
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
RECUPERACIÓN DEL PESO
299 |
300 |
301 |
Influye favorablemente en la recuperación del peso materno que se tenía antes de la gestación
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
310 |
311 |
312 |
PRODUCE EFECTOS ANTICONCEPTIVOS
313 |
314 |
315 |
En la lactancia, aumenta la hormona prolactina, la cual es una potente inhibidora de la ovulación
316 |
317 |
318 |
319 |
320 |
321 |
322 |
323 |
324 |
325 |
326 |
327 |
328 |
329 |
PREVIENE RIESGO DE CÁNCER DE MAMA
330 |
331 |
332 |
Menor riesgo de desarrollar cáncer de mama, entre otras enfermedades crónicas
333 |
334 |
335 |
336 |
337 |
338 |
339 |
340 |
341 |
342 |
343 |
PREVIENE RIESGO DE PRESIÓN ARTERIAL ALTA
344 |
345 |
346 |
Menor riesgo de desarrolar la presión arterial alta, entre otras enfermedades crónicas
347 |
348 |
349 |
350 |
351 |
352 |
353 |
354 |
355 |
356 |
357 |
PREVIENE RIESGO DE CÁNCER DE OVARIO
358 |
359 |
360 |
Menor riesgo de desarrolar cáncer de ovario, entre otras enfermedades crónicas
361 |
362 |
363 |
364 |
365 |
366 |
367 |
368 |
369 |
370 |
371 |
PREVIENE RIESGO DE DIABETES TIPO 2
372 |
373 |
374 |
Menor riesgo de desarrolar diabetes tipo 2, entre otras enfermedades crónicas
375 |
376 |
377 |
378 |
379 |
380 |
381 |
382 |
383 |
384 |
385 |
386 |
387 | ALIMENTOS RECOMENDADOS DURANTE LA LACTANCIA MATERNA EXCLUSIVA
388 |
440 |
441 |
442 |
443 |
444 |
445 |
446 |
447 | CONSEJOS PARA LA LACTANCIA MATERNA EXCLUSIVA
448 |
490 |
491 |
492 |
493 |
494 |
495 | DESAFÍOS COMUNES DE LA LACTANCIA MATERNA EXCLUSIVA
496 |
530 |
531 |
532 |
533 |
534 |
608 |
609 |
610 |
611 |
628 |
629 |
630 |
631 |
632 |
633 |
634 |
635 |
636 |
637 |
638 |
639 |
640 |
641 |
642 |
643 |
644 |
645 |
646 |
647 |
648 |
649 |
650 |
651 |
652 |
--------------------------------------------------------------------------------