├── .gitattributes ├── assets ├── img │ ├── bg.jpg │ ├── me.jpg │ ├── favicon.png │ ├── project │ │ ├── bomb.jpg │ │ ├── john.jpg │ │ ├── port.jpg │ │ ├── zoom.jpg │ │ ├── ebook.jpg │ │ ├── fbhack.jpg │ │ ├── ghunt.jpg │ │ ├── insta.jpg │ │ ├── mysql.jpg │ │ ├── osint.jpg │ │ ├── termux.jpg │ │ ├── wabot.jpg │ │ ├── instahack.jpg │ │ ├── location.jpg │ │ ├── malware.jpg │ │ ├── payload.jpg │ │ ├── phishing.jpg │ │ ├── plugins.jpg │ │ ├── telegram.jpg │ │ ├── windows11.jpg │ │ ├── OSINT-Tools.jpg │ │ ├── android pin.jpg │ │ ├── androidhack.jpg │ │ ├── bruteforce.jpg │ │ ├── camerahack.jpg │ │ ├── interesting.jpg │ │ ├── ip-tracker.jpg │ │ ├── phoneinfoga.jpg │ │ ├── Hacking-tools.jpg │ │ ├── hack-windows.jpg │ │ └── texttohandwriting.jpg │ ├── portfolio │ │ ├── nmap.jpg │ │ ├── hashcat.jpg │ │ ├── sqlmap.jpg │ │ ├── aircrack.jpg │ │ ├── bettercap.jpg │ │ ├── burpsuite.jpg │ │ ├── wireshark.jpg │ │ ├── metasploit.jpg │ │ ├── john the ripper.jpg │ │ ├── portfolio-details-1.jpg │ │ ├── portfolio-details-2.jpg │ │ └── portfolio-details-3.jpg │ ├── apple-touch-icon.png │ ├── microsoftcertificate.jpg │ └── testimonials │ │ ├── testimonials-1.jpg │ │ ├── testimonials-2.jpg │ │ ├── testimonials-3.jpg │ │ ├── testimonials-4.jpg │ │ └── testimonials-5.jpg ├── vendor │ ├── remixicon │ │ ├── remixicon.eot │ │ ├── remixicon.ttf │ │ ├── remixicon.woff │ │ └── remixicon.woff2 │ ├── boxicons │ │ ├── fonts │ │ │ ├── boxicons.eot │ │ │ ├── boxicons.ttf │ │ │ ├── boxicons.woff │ │ │ └── boxicons.woff2 │ │ └── css │ │ │ ├── transformations.css │ │ │ └── animations.css │ ├── bootstrap-icons │ │ └── fonts │ │ │ ├── bootstrap-icons.woff │ │ │ └── bootstrap-icons.woff2 │ ├── php-email-form │ │ └── validate.js │ ├── bootstrap │ │ └── css │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.css │ │ │ └── bootstrap-reboot.min.css.map │ ├── typed.js │ │ └── typed.min.js │ ├── glightbox │ │ └── css │ │ │ ├── glightbox.min.css │ │ │ └── glightbox.css │ ├── swiper │ │ └── swiper-bundle.min.css │ └── waypoints │ │ └── noframework.waypoints.js ├── js │ └── main.js └── css │ └── style.css ├── README.md └── portfolio-details.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/bg.jpg -------------------------------------------------------------------------------- /assets/img/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/me.jpg -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/img/project/bomb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/bomb.jpg -------------------------------------------------------------------------------- /assets/img/project/john.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/john.jpg -------------------------------------------------------------------------------- /assets/img/project/port.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/port.jpg -------------------------------------------------------------------------------- /assets/img/project/zoom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/zoom.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/nmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/portfolio/nmap.jpg -------------------------------------------------------------------------------- /assets/img/project/ebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/ebook.jpg -------------------------------------------------------------------------------- /assets/img/project/fbhack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/fbhack.jpg -------------------------------------------------------------------------------- /assets/img/project/ghunt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/ghunt.jpg -------------------------------------------------------------------------------- /assets/img/project/insta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/insta.jpg -------------------------------------------------------------------------------- /assets/img/project/mysql.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/mysql.jpg -------------------------------------------------------------------------------- /assets/img/project/osint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/osint.jpg -------------------------------------------------------------------------------- /assets/img/project/termux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/termux.jpg -------------------------------------------------------------------------------- /assets/img/project/wabot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/wabot.jpg -------------------------------------------------------------------------------- /assets/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/img/portfolio/hashcat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/portfolio/hashcat.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/sqlmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/portfolio/sqlmap.jpg -------------------------------------------------------------------------------- /assets/img/project/instahack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/instahack.jpg -------------------------------------------------------------------------------- /assets/img/project/location.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/location.jpg -------------------------------------------------------------------------------- /assets/img/project/malware.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/malware.jpg -------------------------------------------------------------------------------- /assets/img/project/payload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/payload.jpg -------------------------------------------------------------------------------- /assets/img/project/phishing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/phishing.jpg -------------------------------------------------------------------------------- /assets/img/project/plugins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/plugins.jpg -------------------------------------------------------------------------------- /assets/img/project/telegram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/telegram.jpg -------------------------------------------------------------------------------- /assets/img/project/windows11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/windows11.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/aircrack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/portfolio/aircrack.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/bettercap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/portfolio/bettercap.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/burpsuite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/portfolio/burpsuite.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/wireshark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/portfolio/wireshark.jpg -------------------------------------------------------------------------------- /assets/img/project/OSINT-Tools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/OSINT-Tools.jpg -------------------------------------------------------------------------------- /assets/img/project/android pin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/android pin.jpg -------------------------------------------------------------------------------- /assets/img/project/androidhack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/androidhack.jpg -------------------------------------------------------------------------------- /assets/img/project/bruteforce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/bruteforce.jpg -------------------------------------------------------------------------------- /assets/img/project/camerahack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/camerahack.jpg -------------------------------------------------------------------------------- /assets/img/project/interesting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/interesting.jpg -------------------------------------------------------------------------------- /assets/img/project/ip-tracker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/ip-tracker.jpg -------------------------------------------------------------------------------- /assets/img/project/phoneinfoga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/phoneinfoga.jpg -------------------------------------------------------------------------------- /assets/img/microsoftcertificate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/microsoftcertificate.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/metasploit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/portfolio/metasploit.jpg -------------------------------------------------------------------------------- /assets/img/project/Hacking-tools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/Hacking-tools.jpg -------------------------------------------------------------------------------- /assets/img/project/hack-windows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/hack-windows.jpg -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/vendor/remixicon/remixicon.eot -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/vendor/remixicon/remixicon.ttf -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/vendor/remixicon/remixicon.woff -------------------------------------------------------------------------------- /assets/vendor/remixicon/remixicon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/vendor/remixicon/remixicon.woff2 -------------------------------------------------------------------------------- /assets/img/portfolio/john the ripper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/portfolio/john the ripper.jpg -------------------------------------------------------------------------------- /assets/img/project/texttohandwriting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/project/texttohandwriting.jpg -------------------------------------------------------------------------------- /assets/img/testimonials/testimonials-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/testimonials/testimonials-1.jpg -------------------------------------------------------------------------------- /assets/img/testimonials/testimonials-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/testimonials/testimonials-2.jpg -------------------------------------------------------------------------------- /assets/img/testimonials/testimonials-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/testimonials/testimonials-3.jpg -------------------------------------------------------------------------------- /assets/img/testimonials/testimonials-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/testimonials/testimonials-4.jpg -------------------------------------------------------------------------------- /assets/img/testimonials/testimonials-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/testimonials/testimonials-5.jpg -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/vendor/boxicons/fonts/boxicons.eot -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/vendor/boxicons/fonts/boxicons.ttf -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/vendor/boxicons/fonts/boxicons.woff -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-details-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/portfolio/portfolio-details-1.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-details-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/portfolio/portfolio-details-2.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/portfolio-details-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/img/portfolio/portfolio-details-3.jpg -------------------------------------------------------------------------------- /assets/vendor/boxicons/fonts/boxicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/vendor/boxicons/fonts/boxicons.woff2 -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio0/HEAD/assets/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # albinpraveen.github.io 2 | 3 | 4 | 5 | ![ll](https://user-images.githubusercontent.com/64751167/91656383-f3f3db80-ead5-11ea-9d72-c4cee0782d62.gif) 6 | 7 | sudo systemctl start netdata 8 | -------------------------------------------------------------------------------- /assets/vendor/boxicons/css/transformations.css: -------------------------------------------------------------------------------- 1 | .bx-rotate-90 2 | { 3 | transform: rotate(90deg); 4 | 5 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)'; 6 | } 7 | .bx-rotate-180 8 | { 9 | transform: rotate(180deg); 10 | 11 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)'; 12 | } 13 | .bx-rotate-270 14 | { 15 | transform: rotate(270deg); 16 | 17 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)'; 18 | } 19 | .bx-flip-horizontal 20 | { 21 | transform: scaleX(-1); 22 | 23 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)'; 24 | } 25 | .bx-flip-vertical 26 | { 27 | transform: scaleY(-1); 28 | 29 | -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)'; 30 | } 31 | -------------------------------------------------------------------------------- /assets/vendor/php-email-form/validate.js: -------------------------------------------------------------------------------- 1 | /** 2 | * PHP Email Form Validation - v3.0 3 | * URL: https://bootstrapmade.com/php-email-form/ 4 | * Author: BootstrapMade.com 5 | */ 6 | (function () { 7 | "use strict"; 8 | 9 | let forms = document.querySelectorAll('.php-email-form'); 10 | 11 | forms.forEach( function(e) { 12 | e.addEventListener('submit', function(event) { 13 | event.preventDefault(); 14 | 15 | let thisForm = this; 16 | 17 | let action = thisForm.getAttribute('action'); 18 | let recaptcha = thisForm.getAttribute('data-recaptcha-site-key'); 19 | 20 | if( ! action ) { 21 | displayError(thisForm, 'The form action property is not set!') 22 | return; 23 | } 24 | thisForm.querySelector('.loading').classList.add('d-block'); 25 | thisForm.querySelector('.error-message').classList.remove('d-block'); 26 | thisForm.querySelector('.sent-message').classList.remove('d-block'); 27 | 28 | let formData = new FormData( thisForm ); 29 | 30 | if ( recaptcha ) { 31 | if(typeof grecaptcha !== "undefined" ) { 32 | grecaptcha.ready(function() { 33 | try { 34 | grecaptcha.execute(recaptcha, {action: 'php_email_form_submit'}) 35 | .then(token => { 36 | formData.set('recaptcha-response', token); 37 | php_email_form_submit(thisForm, action, formData); 38 | }) 39 | } catch(error) { 40 | displayError(thisForm, error) 41 | } 42 | }); 43 | } else { 44 | displayError(thisForm, 'The reCaptcha javascript API url is not loaded!') 45 | } 46 | } else { 47 | php_email_form_submit(thisForm, action, formData); 48 | } 49 | }); 50 | }); 51 | 52 | function php_email_form_submit(thisForm, action, formData) { 53 | fetch(action, { 54 | method: 'POST', 55 | body: formData, 56 | headers: {'X-Requested-With': 'XMLHttpRequest'} 57 | }) 58 | .then(response => { 59 | if( response.ok ) { 60 | return response.text() 61 | } else { 62 | throw new Error(`${response.status} ${response.statusText} ${response.url}`); 63 | } 64 | }) 65 | .then(data => { 66 | thisForm.querySelector('.loading').classList.remove('d-block'); 67 | if (data.trim() == 'OK') { 68 | thisForm.querySelector('.sent-message').classList.add('d-block'); 69 | thisForm.reset(); 70 | } else { 71 | throw new Error(data ? data : 'Form submission failed and no error message returned from: ' + action); 72 | } 73 | }) 74 | .catch((error) => { 75 | displayError(thisForm, error); 76 | }); 77 | } 78 | 79 | function displayError(thisForm, error) { 80 | thisForm.querySelector('.loading').classList.remove('d-block'); 81 | thisForm.querySelector('.error-message').innerHTML = error; 82 | thisForm.querySelector('.error-message').classList.add('d-block'); 83 | } 84 | 85 | })(); 86 | -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v5.0.0-beta3 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important} 8 | /*# sourceMappingURL=bootstrap-reboot.min.css.map */ -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v5.0.0-beta3 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){h1{font-size:2.5rem}}h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){h2{font-size:2rem}}h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){h3{font-size:1.75rem}}h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){h4{font-size:1.5rem}}h5{font-size:1.25rem}h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-right:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-right:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:.875em}mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:right}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:right;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:right}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}[type=email],[type=number],[type=tel],[type=url]{direction:ltr}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important} 8 | /*# sourceMappingURL=bootstrap-reboot.rtl.min.css.map */ -------------------------------------------------------------------------------- /portfolio-details.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Portfolio Details - Personal Bootstrap Template 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 35 | 36 | 37 | 38 | 39 |
40 | 41 | 42 |
43 |
44 | 45 |
46 | 47 |
48 |

Advanced penetration testing platform ever made !

49 | 50 |
51 |
52 | 53 |
54 | 55 |
56 | 57 |
58 | 59 |
60 | 61 |
62 | 63 |
64 | 65 |
66 |
67 |
68 | 69 |
70 | 71 |
72 |

Kali Linux 2021.1 Release

73 |
    74 |
  • Purpose: Penetration Testing
  • 75 |
  • Distribution: Debian-based Linux
  • 76 |
  • Latest Release: 24 February, 2021
  • 77 |
  • Platform URL: https://www.kali.org/
  • 78 |
79 | 80 |

81 | Kali Linux is an open-source, Debian-based Linux distribution geared towards various information security tasks, such as Penetration Testing, Security Research, Computer Forensics and Reverse Engineering. 82 | 83 |

84 |
85 | 86 |
87 | 88 |
89 |
90 | 91 |
92 | 93 |
94 | 95 | 96 | 97 | Designed by ALBINPRAVEEN 98 |
99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Template Name: Personal - v4.1.0 3 | * Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/ 4 | * Author: BootstrapMade.com 5 | * License: https://bootstrapmade.com/license/ 6 | */ 7 | (function() { 8 | "use strict"; 9 | 10 | /** 11 | * Easy selector helper function 12 | */ 13 | const select = (el, all = false) => { 14 | el = el.trim() 15 | if (all) { 16 | return [...document.querySelectorAll(el)] 17 | } else { 18 | return document.querySelector(el) 19 | } 20 | } 21 | 22 | /** 23 | * Easy event listener function 24 | */ 25 | const on = (type, el, listener, all = false) => { 26 | let selectEl = select(el, all) 27 | 28 | if (selectEl) { 29 | if (all) { 30 | selectEl.forEach(e => e.addEventListener(type, listener)) 31 | } else { 32 | selectEl.addEventListener(type, listener) 33 | } 34 | } 35 | } 36 | 37 | /** 38 | * Scrolls to an element with header offset 39 | */ 40 | const scrollto = (el) => { 41 | window.scrollTo({ 42 | top: 0, 43 | behavior: 'smooth' 44 | }) 45 | } 46 | 47 | /** 48 | * Mobile nav toggle 49 | */ 50 | on('click', '.mobile-nav-toggle', function(e) { 51 | select('#navbar').classList.toggle('navbar-mobile') 52 | this.classList.toggle('bi-list') 53 | this.classList.toggle('bi-x') 54 | }) 55 | 56 | /** 57 | * Scrool with ofset on links with a class name .scrollto 58 | */ 59 | on('click', '#navbar .nav-link', function(e) { 60 | let section = select(this.hash) 61 | if (section) { 62 | e.preventDefault() 63 | 64 | let navbar = select('#navbar') 65 | let header = select('#header') 66 | let sections = select('section', true) 67 | let navlinks = select('#navbar .nav-link', true) 68 | 69 | navlinks.forEach((item) => { 70 | item.classList.remove('active') 71 | }) 72 | 73 | this.classList.add('active') 74 | 75 | if (navbar.classList.contains('navbar-mobile')) { 76 | navbar.classList.remove('navbar-mobile') 77 | let navbarToggle = select('.mobile-nav-toggle') 78 | navbarToggle.classList.toggle('bi-list') 79 | navbarToggle.classList.toggle('bi-x') 80 | } 81 | 82 | if (this.hash == '#header') { 83 | header.classList.remove('header-top') 84 | sections.forEach((item) => { 85 | item.classList.remove('section-show') 86 | }) 87 | return; 88 | } 89 | 90 | if (!header.classList.contains('header-top')) { 91 | header.classList.add('header-top') 92 | setTimeout(function() { 93 | sections.forEach((item) => { 94 | item.classList.remove('section-show') 95 | }) 96 | section.classList.add('section-show') 97 | 98 | }, 350); 99 | } else { 100 | sections.forEach((item) => { 101 | item.classList.remove('section-show') 102 | }) 103 | section.classList.add('section-show') 104 | } 105 | 106 | scrollto(this.hash) 107 | } 108 | }, true) 109 | 110 | /** 111 | * Activate/show sections on load with hash links 112 | */ 113 | window.addEventListener('load', () => { 114 | if (window.location.hash) { 115 | let initial_nav = select(window.location.hash) 116 | 117 | if (initial_nav) { 118 | let header = select('#header') 119 | let navlinks = select('#navbar .nav-link', true) 120 | 121 | header.classList.add('header-top') 122 | 123 | navlinks.forEach((item) => { 124 | if (item.getAttribute('href') == window.location.hash) { 125 | item.classList.add('active') 126 | } else { 127 | item.classList.remove('active') 128 | } 129 | }) 130 | 131 | setTimeout(function() { 132 | initial_nav.classList.add('section-show') 133 | }, 350); 134 | 135 | scrollto(window.location.hash) 136 | } 137 | } 138 | }); 139 | 140 | /** 141 | * Skills animation 142 | */ 143 | let skilsContent = select('.skills-content'); 144 | if (skilsContent) { 145 | new Waypoint({ 146 | element: skilsContent, 147 | offset: '80%', 148 | handler: function(direction) { 149 | let progress = select('.progress .progress-bar', true); 150 | progress.forEach((el) => { 151 | el.style.width = el.getAttribute('aria-valuenow') + '%' 152 | }); 153 | } 154 | }) 155 | } 156 | 157 | /** 158 | * Testimonials slider 159 | */ 160 | new Swiper('.testimonials-slider', { 161 | speed: 600, 162 | loop: true, 163 | autoplay: { 164 | delay: 5000, 165 | disableOnInteraction: false 166 | }, 167 | slidesPerView: 'auto', 168 | pagination: { 169 | el: '.swiper-pagination', 170 | type: 'bullets', 171 | clickable: true 172 | }, 173 | breakpoints: { 174 | 320: { 175 | slidesPerView: 1, 176 | spaceBetween: 20 177 | }, 178 | 179 | 1200: { 180 | slidesPerView: 3, 181 | spaceBetween: 20 182 | } 183 | } 184 | }); 185 | 186 | /** 187 | * Porfolio isotope and filter 188 | */ 189 | window.addEventListener('load', () => { 190 | let portfolioContainer = select('.portfolio-container'); 191 | if (portfolioContainer) { 192 | let portfolioIsotope = new Isotope(portfolioContainer, { 193 | itemSelector: '.portfolio-item', 194 | layoutMode: 'fitRows' 195 | }); 196 | 197 | let portfolioFilters = select('#portfolio-flters li', true); 198 | 199 | on('click', '#portfolio-flters li', function(e) { 200 | e.preventDefault(); 201 | portfolioFilters.forEach(function(el) { 202 | el.classList.remove('filter-active'); 203 | }); 204 | this.classList.add('filter-active'); 205 | 206 | portfolioIsotope.arrange({ 207 | filter: this.getAttribute('data-filter') 208 | }); 209 | }, true); 210 | } 211 | 212 | }); 213 | 214 | /** 215 | * Initiate portfolio lightbox 216 | */ 217 | const portfolioLightbox = GLightbox({ 218 | selector: '.portfolio-lightbox' 219 | }); 220 | 221 | /** 222 | * Initiate portfolio details lightbox 223 | */ 224 | const portfolioDetailsLightbox = GLightbox({ 225 | selector: '.portfolio-details-lightbox', 226 | width: '90%', 227 | height: '90vh' 228 | }); 229 | 230 | /** 231 | * Portfolio details slider 232 | */ 233 | new Swiper('.portfolio-details-slider', { 234 | speed: 400, 235 | loop: true, 236 | autoplay: { 237 | delay: 5000, 238 | disableOnInteraction: false 239 | }, 240 | pagination: { 241 | el: '.swiper-pagination', 242 | type: 'bullets', 243 | clickable: true 244 | } 245 | }); 246 | 247 | })() -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v5.0.0-beta3 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | *, 9 | *::before, 10 | *::after { 11 | box-sizing: border-box; 12 | } 13 | 14 | @media (prefers-reduced-motion: no-preference) { 15 | :root { 16 | scroll-behavior: smooth; 17 | } 18 | } 19 | 20 | body { 21 | margin: 0; 22 | font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; 23 | font-size: 1rem; 24 | font-weight: 400; 25 | line-height: 1.5; 26 | color: #212529; 27 | background-color: #fff; 28 | -webkit-text-size-adjust: 100%; 29 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 30 | } 31 | 32 | hr { 33 | margin: 1rem 0; 34 | color: inherit; 35 | background-color: currentColor; 36 | border: 0; 37 | opacity: 0.25; 38 | } 39 | 40 | hr:not([size]) { 41 | height: 1px; 42 | } 43 | 44 | h6, h5, h4, h3, h2, h1 { 45 | margin-top: 0; 46 | margin-bottom: 0.5rem; 47 | font-weight: 500; 48 | line-height: 1.2; 49 | } 50 | 51 | h1 { 52 | font-size: calc(1.375rem + 1.5vw); 53 | } 54 | @media (min-width: 1200px) { 55 | h1 { 56 | font-size: 2.5rem; 57 | } 58 | } 59 | 60 | h2 { 61 | font-size: calc(1.325rem + 0.9vw); 62 | } 63 | @media (min-width: 1200px) { 64 | h2 { 65 | font-size: 2rem; 66 | } 67 | } 68 | 69 | h3 { 70 | font-size: calc(1.3rem + 0.6vw); 71 | } 72 | @media (min-width: 1200px) { 73 | h3 { 74 | font-size: 1.75rem; 75 | } 76 | } 77 | 78 | h4 { 79 | font-size: calc(1.275rem + 0.3vw); 80 | } 81 | @media (min-width: 1200px) { 82 | h4 { 83 | font-size: 1.5rem; 84 | } 85 | } 86 | 87 | h5 { 88 | font-size: 1.25rem; 89 | } 90 | 91 | h6 { 92 | font-size: 1rem; 93 | } 94 | 95 | p { 96 | margin-top: 0; 97 | margin-bottom: 1rem; 98 | } 99 | 100 | abbr[title], 101 | abbr[data-bs-original-title] { 102 | -webkit-text-decoration: underline dotted; 103 | text-decoration: underline dotted; 104 | cursor: help; 105 | -webkit-text-decoration-skip-ink: none; 106 | text-decoration-skip-ink: none; 107 | } 108 | 109 | address { 110 | margin-bottom: 1rem; 111 | font-style: normal; 112 | line-height: inherit; 113 | } 114 | 115 | ol, 116 | ul { 117 | padding-right: 2rem; 118 | } 119 | 120 | ol, 121 | ul, 122 | dl { 123 | margin-top: 0; 124 | margin-bottom: 1rem; 125 | } 126 | 127 | ol ol, 128 | ul ul, 129 | ol ul, 130 | ul ol { 131 | margin-bottom: 0; 132 | } 133 | 134 | dt { 135 | font-weight: 700; 136 | } 137 | 138 | dd { 139 | margin-bottom: 0.5rem; 140 | margin-right: 0; 141 | } 142 | 143 | blockquote { 144 | margin: 0 0 1rem; 145 | } 146 | 147 | b, 148 | strong { 149 | font-weight: bolder; 150 | } 151 | 152 | small { 153 | font-size: 0.875em; 154 | } 155 | 156 | mark { 157 | padding: 0.2em; 158 | background-color: #fcf8e3; 159 | } 160 | 161 | sub, 162 | sup { 163 | position: relative; 164 | font-size: 0.75em; 165 | line-height: 0; 166 | vertical-align: baseline; 167 | } 168 | 169 | sub { 170 | bottom: -0.25em; 171 | } 172 | 173 | sup { 174 | top: -0.5em; 175 | } 176 | 177 | a { 178 | color: #0d6efd; 179 | text-decoration: underline; 180 | } 181 | a:hover { 182 | color: #0a58ca; 183 | } 184 | 185 | a:not([href]):not([class]), a:not([href]):not([class]):hover { 186 | color: inherit; 187 | text-decoration: none; 188 | } 189 | 190 | pre, 191 | code, 192 | kbd, 193 | samp { 194 | font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 195 | font-size: 1em; 196 | direction: ltr ; 197 | unicode-bidi: bidi-override; 198 | } 199 | 200 | pre { 201 | display: block; 202 | margin-top: 0; 203 | margin-bottom: 1rem; 204 | overflow: auto; 205 | font-size: 0.875em; 206 | } 207 | pre code { 208 | font-size: inherit; 209 | color: inherit; 210 | word-break: normal; 211 | } 212 | 213 | code { 214 | font-size: 0.875em; 215 | color: #d63384; 216 | word-wrap: break-word; 217 | } 218 | a > code { 219 | color: inherit; 220 | } 221 | 222 | kbd { 223 | padding: 0.2rem 0.4rem; 224 | font-size: 0.875em; 225 | color: #fff; 226 | background-color: #212529; 227 | border-radius: 0.2rem; 228 | } 229 | kbd kbd { 230 | padding: 0; 231 | font-size: 1em; 232 | font-weight: 700; 233 | } 234 | 235 | figure { 236 | margin: 0 0 1rem; 237 | } 238 | 239 | img, 240 | svg { 241 | vertical-align: middle; 242 | } 243 | 244 | table { 245 | caption-side: bottom; 246 | border-collapse: collapse; 247 | } 248 | 249 | caption { 250 | padding-top: 0.5rem; 251 | padding-bottom: 0.5rem; 252 | color: #6c757d; 253 | text-align: right; 254 | } 255 | 256 | th { 257 | text-align: inherit; 258 | text-align: -webkit-match-parent; 259 | } 260 | 261 | thead, 262 | tbody, 263 | tfoot, 264 | tr, 265 | td, 266 | th { 267 | border-color: inherit; 268 | border-style: solid; 269 | border-width: 0; 270 | } 271 | 272 | label { 273 | display: inline-block; 274 | } 275 | 276 | button { 277 | border-radius: 0; 278 | } 279 | 280 | button:focus:not(:focus-visible) { 281 | outline: 0; 282 | } 283 | 284 | input, 285 | button, 286 | select, 287 | optgroup, 288 | textarea { 289 | margin: 0; 290 | font-family: inherit; 291 | font-size: inherit; 292 | line-height: inherit; 293 | } 294 | 295 | button, 296 | select { 297 | text-transform: none; 298 | } 299 | 300 | [role=button] { 301 | cursor: pointer; 302 | } 303 | 304 | select { 305 | word-wrap: normal; 306 | } 307 | select:disabled { 308 | opacity: 1; 309 | } 310 | 311 | [list]::-webkit-calendar-picker-indicator { 312 | display: none; 313 | } 314 | 315 | button, 316 | [type=button], 317 | [type=reset], 318 | [type=submit] { 319 | -webkit-appearance: button; 320 | } 321 | button:not(:disabled), 322 | [type=button]:not(:disabled), 323 | [type=reset]:not(:disabled), 324 | [type=submit]:not(:disabled) { 325 | cursor: pointer; 326 | } 327 | 328 | ::-moz-focus-inner { 329 | padding: 0; 330 | border-style: none; 331 | } 332 | 333 | textarea { 334 | resize: vertical; 335 | } 336 | 337 | fieldset { 338 | min-width: 0; 339 | padding: 0; 340 | margin: 0; 341 | border: 0; 342 | } 343 | 344 | legend { 345 | float: right; 346 | width: 100%; 347 | padding: 0; 348 | margin-bottom: 0.5rem; 349 | font-size: calc(1.275rem + 0.3vw); 350 | line-height: inherit; 351 | } 352 | @media (min-width: 1200px) { 353 | legend { 354 | font-size: 1.5rem; 355 | } 356 | } 357 | legend + * { 358 | clear: right; 359 | } 360 | 361 | ::-webkit-datetime-edit-fields-wrapper, 362 | ::-webkit-datetime-edit-text, 363 | ::-webkit-datetime-edit-minute, 364 | ::-webkit-datetime-edit-hour-field, 365 | ::-webkit-datetime-edit-day-field, 366 | ::-webkit-datetime-edit-month-field, 367 | ::-webkit-datetime-edit-year-field { 368 | padding: 0; 369 | } 370 | 371 | ::-webkit-inner-spin-button { 372 | height: auto; 373 | } 374 | 375 | [type=search] { 376 | outline-offset: -2px; 377 | -webkit-appearance: textfield; 378 | } 379 | 380 | [type="tel"], 381 | [type="url"], 382 | [type="email"], 383 | [type="number"] { 384 | direction: ltr; 385 | } 386 | ::-webkit-search-decoration { 387 | -webkit-appearance: none; 388 | } 389 | 390 | ::-webkit-color-swatch-wrapper { 391 | padding: 0; 392 | } 393 | 394 | ::file-selector-button { 395 | font: inherit; 396 | } 397 | 398 | ::-webkit-file-upload-button { 399 | font: inherit; 400 | -webkit-appearance: button; 401 | } 402 | 403 | output { 404 | display: inline-block; 405 | } 406 | 407 | iframe { 408 | border: 0; 409 | } 410 | 411 | summary { 412 | display: list-item; 413 | cursor: pointer; 414 | } 415 | 416 | progress { 417 | vertical-align: baseline; 418 | } 419 | 420 | [hidden] { 421 | display: none !important; 422 | } 423 | /*# sourceMappingURL=bootstrap-reboot.rtl.css.map */ -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Reboot v5.0.0-beta3 (https://getbootstrap.com/) 3 | * Copyright 2011-2021 The Bootstrap Authors 4 | * Copyright 2011-2021 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) 6 | * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md) 7 | */ 8 | *, 9 | *::before, 10 | *::after { 11 | box-sizing: border-box; 12 | } 13 | 14 | @media (prefers-reduced-motion: no-preference) { 15 | :root { 16 | scroll-behavior: smooth; 17 | } 18 | } 19 | 20 | body { 21 | margin: 0; 22 | font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; 23 | font-size: 1rem; 24 | font-weight: 400; 25 | line-height: 1.5; 26 | color: #212529; 27 | background-color: #fff; 28 | -webkit-text-size-adjust: 100%; 29 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 30 | } 31 | 32 | hr { 33 | margin: 1rem 0; 34 | color: inherit; 35 | background-color: currentColor; 36 | border: 0; 37 | opacity: 0.25; 38 | } 39 | 40 | hr:not([size]) { 41 | height: 1px; 42 | } 43 | 44 | h6, h5, h4, h3, h2, h1 { 45 | margin-top: 0; 46 | margin-bottom: 0.5rem; 47 | font-weight: 500; 48 | line-height: 1.2; 49 | } 50 | 51 | h1 { 52 | font-size: calc(1.375rem + 1.5vw); 53 | } 54 | @media (min-width: 1200px) { 55 | h1 { 56 | font-size: 2.5rem; 57 | } 58 | } 59 | 60 | h2 { 61 | font-size: calc(1.325rem + 0.9vw); 62 | } 63 | @media (min-width: 1200px) { 64 | h2 { 65 | font-size: 2rem; 66 | } 67 | } 68 | 69 | h3 { 70 | font-size: calc(1.3rem + 0.6vw); 71 | } 72 | @media (min-width: 1200px) { 73 | h3 { 74 | font-size: 1.75rem; 75 | } 76 | } 77 | 78 | h4 { 79 | font-size: calc(1.275rem + 0.3vw); 80 | } 81 | @media (min-width: 1200px) { 82 | h4 { 83 | font-size: 1.5rem; 84 | } 85 | } 86 | 87 | h5 { 88 | font-size: 1.25rem; 89 | } 90 | 91 | h6 { 92 | font-size: 1rem; 93 | } 94 | 95 | p { 96 | margin-top: 0; 97 | margin-bottom: 1rem; 98 | } 99 | 100 | abbr[title], 101 | abbr[data-bs-original-title] { 102 | -webkit-text-decoration: underline dotted; 103 | text-decoration: underline dotted; 104 | cursor: help; 105 | -webkit-text-decoration-skip-ink: none; 106 | text-decoration-skip-ink: none; 107 | } 108 | 109 | address { 110 | margin-bottom: 1rem; 111 | font-style: normal; 112 | line-height: inherit; 113 | } 114 | 115 | ol, 116 | ul { 117 | padding-left: 2rem; 118 | } 119 | 120 | ol, 121 | ul, 122 | dl { 123 | margin-top: 0; 124 | margin-bottom: 1rem; 125 | } 126 | 127 | ol ol, 128 | ul ul, 129 | ol ul, 130 | ul ol { 131 | margin-bottom: 0; 132 | } 133 | 134 | dt { 135 | font-weight: 700; 136 | } 137 | 138 | dd { 139 | margin-bottom: 0.5rem; 140 | margin-left: 0; 141 | } 142 | 143 | blockquote { 144 | margin: 0 0 1rem; 145 | } 146 | 147 | b, 148 | strong { 149 | font-weight: bolder; 150 | } 151 | 152 | small { 153 | font-size: 0.875em; 154 | } 155 | 156 | mark { 157 | padding: 0.2em; 158 | background-color: #fcf8e3; 159 | } 160 | 161 | sub, 162 | sup { 163 | position: relative; 164 | font-size: 0.75em; 165 | line-height: 0; 166 | vertical-align: baseline; 167 | } 168 | 169 | sub { 170 | bottom: -0.25em; 171 | } 172 | 173 | sup { 174 | top: -0.5em; 175 | } 176 | 177 | a { 178 | color: #0d6efd; 179 | text-decoration: underline; 180 | } 181 | a:hover { 182 | color: #0a58ca; 183 | } 184 | 185 | a:not([href]):not([class]), a:not([href]):not([class]):hover { 186 | color: inherit; 187 | text-decoration: none; 188 | } 189 | 190 | pre, 191 | code, 192 | kbd, 193 | samp { 194 | font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 195 | font-size: 1em; 196 | direction: ltr /* rtl:ignore */; 197 | unicode-bidi: bidi-override; 198 | } 199 | 200 | pre { 201 | display: block; 202 | margin-top: 0; 203 | margin-bottom: 1rem; 204 | overflow: auto; 205 | font-size: 0.875em; 206 | } 207 | pre code { 208 | font-size: inherit; 209 | color: inherit; 210 | word-break: normal; 211 | } 212 | 213 | code { 214 | font-size: 0.875em; 215 | color: #d63384; 216 | word-wrap: break-word; 217 | } 218 | a > code { 219 | color: inherit; 220 | } 221 | 222 | kbd { 223 | padding: 0.2rem 0.4rem; 224 | font-size: 0.875em; 225 | color: #fff; 226 | background-color: #212529; 227 | border-radius: 0.2rem; 228 | } 229 | kbd kbd { 230 | padding: 0; 231 | font-size: 1em; 232 | font-weight: 700; 233 | } 234 | 235 | figure { 236 | margin: 0 0 1rem; 237 | } 238 | 239 | img, 240 | svg { 241 | vertical-align: middle; 242 | } 243 | 244 | table { 245 | caption-side: bottom; 246 | border-collapse: collapse; 247 | } 248 | 249 | caption { 250 | padding-top: 0.5rem; 251 | padding-bottom: 0.5rem; 252 | color: #6c757d; 253 | text-align: left; 254 | } 255 | 256 | th { 257 | text-align: inherit; 258 | text-align: -webkit-match-parent; 259 | } 260 | 261 | thead, 262 | tbody, 263 | tfoot, 264 | tr, 265 | td, 266 | th { 267 | border-color: inherit; 268 | border-style: solid; 269 | border-width: 0; 270 | } 271 | 272 | label { 273 | display: inline-block; 274 | } 275 | 276 | button { 277 | border-radius: 0; 278 | } 279 | 280 | button:focus:not(:focus-visible) { 281 | outline: 0; 282 | } 283 | 284 | input, 285 | button, 286 | select, 287 | optgroup, 288 | textarea { 289 | margin: 0; 290 | font-family: inherit; 291 | font-size: inherit; 292 | line-height: inherit; 293 | } 294 | 295 | button, 296 | select { 297 | text-transform: none; 298 | } 299 | 300 | [role=button] { 301 | cursor: pointer; 302 | } 303 | 304 | select { 305 | word-wrap: normal; 306 | } 307 | select:disabled { 308 | opacity: 1; 309 | } 310 | 311 | [list]::-webkit-calendar-picker-indicator { 312 | display: none; 313 | } 314 | 315 | button, 316 | [type=button], 317 | [type=reset], 318 | [type=submit] { 319 | -webkit-appearance: button; 320 | } 321 | button:not(:disabled), 322 | [type=button]:not(:disabled), 323 | [type=reset]:not(:disabled), 324 | [type=submit]:not(:disabled) { 325 | cursor: pointer; 326 | } 327 | 328 | ::-moz-focus-inner { 329 | padding: 0; 330 | border-style: none; 331 | } 332 | 333 | textarea { 334 | resize: vertical; 335 | } 336 | 337 | fieldset { 338 | min-width: 0; 339 | padding: 0; 340 | margin: 0; 341 | border: 0; 342 | } 343 | 344 | legend { 345 | float: left; 346 | width: 100%; 347 | padding: 0; 348 | margin-bottom: 0.5rem; 349 | font-size: calc(1.275rem + 0.3vw); 350 | line-height: inherit; 351 | } 352 | @media (min-width: 1200px) { 353 | legend { 354 | font-size: 1.5rem; 355 | } 356 | } 357 | legend + * { 358 | clear: left; 359 | } 360 | 361 | ::-webkit-datetime-edit-fields-wrapper, 362 | ::-webkit-datetime-edit-text, 363 | ::-webkit-datetime-edit-minute, 364 | ::-webkit-datetime-edit-hour-field, 365 | ::-webkit-datetime-edit-day-field, 366 | ::-webkit-datetime-edit-month-field, 367 | ::-webkit-datetime-edit-year-field { 368 | padding: 0; 369 | } 370 | 371 | ::-webkit-inner-spin-button { 372 | height: auto; 373 | } 374 | 375 | [type=search] { 376 | outline-offset: -2px; 377 | -webkit-appearance: textfield; 378 | } 379 | 380 | /* rtl:raw: 381 | [type="tel"], 382 | [type="url"], 383 | [type="email"], 384 | [type="number"] { 385 | direction: ltr; 386 | } 387 | */ 388 | ::-webkit-search-decoration { 389 | -webkit-appearance: none; 390 | } 391 | 392 | ::-webkit-color-swatch-wrapper { 393 | padding: 0; 394 | } 395 | 396 | ::file-selector-button { 397 | font: inherit; 398 | } 399 | 400 | ::-webkit-file-upload-button { 401 | font: inherit; 402 | -webkit-appearance: button; 403 | } 404 | 405 | output { 406 | display: inline-block; 407 | } 408 | 409 | iframe { 410 | border: 0; 411 | } 412 | 413 | summary { 414 | display: list-item; 415 | cursor: pointer; 416 | } 417 | 418 | progress { 419 | vertical-align: baseline; 420 | } 421 | 422 | [hidden] { 423 | display: none !important; 424 | } 425 | 426 | /*# sourceMappingURL=bootstrap-reboot.css.map */ -------------------------------------------------------------------------------- /assets/vendor/boxicons/css/animations.css: -------------------------------------------------------------------------------- 1 | @-webkit-keyframes spin 2 | { 3 | 0% 4 | { 5 | -webkit-transform: rotate(0); 6 | transform: rotate(0); 7 | } 8 | 100% 9 | { 10 | -webkit-transform: rotate(359deg); 11 | transform: rotate(359deg); 12 | } 13 | } 14 | @keyframes spin 15 | { 16 | 0% 17 | { 18 | -webkit-transform: rotate(0); 19 | transform: rotate(0); 20 | } 21 | 100% 22 | { 23 | -webkit-transform: rotate(359deg); 24 | transform: rotate(359deg); 25 | } 26 | } 27 | @-webkit-keyframes burst 28 | { 29 | 0% 30 | { 31 | -webkit-transform: scale(1); 32 | transform: scale(1); 33 | 34 | opacity: 1; 35 | } 36 | 90% 37 | { 38 | -webkit-transform: scale(1.5); 39 | transform: scale(1.5); 40 | 41 | opacity: 0; 42 | } 43 | } 44 | @keyframes burst 45 | { 46 | 0% 47 | { 48 | -webkit-transform: scale(1); 49 | transform: scale(1); 50 | 51 | opacity: 1; 52 | } 53 | 90% 54 | { 55 | -webkit-transform: scale(1.5); 56 | transform: scale(1.5); 57 | 58 | opacity: 0; 59 | } 60 | } 61 | @-webkit-keyframes flashing 62 | { 63 | 0% 64 | { 65 | opacity: 1; 66 | } 67 | 45% 68 | { 69 | opacity: 0; 70 | } 71 | 90% 72 | { 73 | opacity: 1; 74 | } 75 | } 76 | @keyframes flashing 77 | { 78 | 0% 79 | { 80 | opacity: 1; 81 | } 82 | 45% 83 | { 84 | opacity: 0; 85 | } 86 | 90% 87 | { 88 | opacity: 1; 89 | } 90 | } 91 | @-webkit-keyframes fade-left 92 | { 93 | 0% 94 | { 95 | -webkit-transform: translateX(0); 96 | transform: translateX(0); 97 | 98 | opacity: 1; 99 | } 100 | 75% 101 | { 102 | -webkit-transform: translateX(-20px); 103 | transform: translateX(-20px); 104 | 105 | opacity: 0; 106 | } 107 | } 108 | @keyframes fade-left 109 | { 110 | 0% 111 | { 112 | -webkit-transform: translateX(0); 113 | transform: translateX(0); 114 | 115 | opacity: 1; 116 | } 117 | 75% 118 | { 119 | -webkit-transform: translateX(-20px); 120 | transform: translateX(-20px); 121 | 122 | opacity: 0; 123 | } 124 | } 125 | @-webkit-keyframes fade-right 126 | { 127 | 0% 128 | { 129 | -webkit-transform: translateX(0); 130 | transform: translateX(0); 131 | 132 | opacity: 1; 133 | } 134 | 75% 135 | { 136 | -webkit-transform: translateX(20px); 137 | transform: translateX(20px); 138 | 139 | opacity: 0; 140 | } 141 | } 142 | @keyframes fade-right 143 | { 144 | 0% 145 | { 146 | -webkit-transform: translateX(0); 147 | transform: translateX(0); 148 | 149 | opacity: 1; 150 | } 151 | 75% 152 | { 153 | -webkit-transform: translateX(20px); 154 | transform: translateX(20px); 155 | 156 | opacity: 0; 157 | } 158 | } 159 | @-webkit-keyframes fade-up 160 | { 161 | 0% 162 | { 163 | -webkit-transform: translateY(0); 164 | transform: translateY(0); 165 | 166 | opacity: 1; 167 | } 168 | 75% 169 | { 170 | -webkit-transform: translateY(-20px); 171 | transform: translateY(-20px); 172 | 173 | opacity: 0; 174 | } 175 | } 176 | @keyframes fade-up 177 | { 178 | 0% 179 | { 180 | -webkit-transform: translateY(0); 181 | transform: translateY(0); 182 | 183 | opacity: 1; 184 | } 185 | 75% 186 | { 187 | -webkit-transform: translateY(-20px); 188 | transform: translateY(-20px); 189 | 190 | opacity: 0; 191 | } 192 | } 193 | @-webkit-keyframes fade-down 194 | { 195 | 0% 196 | { 197 | -webkit-transform: translateY(0); 198 | transform: translateY(0); 199 | 200 | opacity: 1; 201 | } 202 | 75% 203 | { 204 | -webkit-transform: translateY(20px); 205 | transform: translateY(20px); 206 | 207 | opacity: 0; 208 | } 209 | } 210 | @keyframes fade-down 211 | { 212 | 0% 213 | { 214 | -webkit-transform: translateY(0); 215 | transform: translateY(0); 216 | 217 | opacity: 1; 218 | } 219 | 75% 220 | { 221 | -webkit-transform: translateY(20px); 222 | transform: translateY(20px); 223 | 224 | opacity: 0; 225 | } 226 | } 227 | @-webkit-keyframes tada 228 | { 229 | from 230 | { 231 | -webkit-transform: scale3d(1, 1, 1); 232 | transform: scale3d(1, 1, 1); 233 | } 234 | 235 | 10%, 236 | 20% 237 | { 238 | -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg); 239 | transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg); 240 | } 241 | 242 | 30%, 243 | 50%, 244 | 70%, 245 | 90% 246 | { 247 | -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg); 248 | transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg); 249 | } 250 | 251 | 40%, 252 | 60%, 253 | 80% 254 | { 255 | -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg); 256 | transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg); 257 | } 258 | 259 | to 260 | { 261 | -webkit-transform: scale3d(1, 1, 1); 262 | transform: scale3d(1, 1, 1); 263 | } 264 | } 265 | 266 | @keyframes tada 267 | { 268 | from 269 | { 270 | -webkit-transform: scale3d(1, 1, 1); 271 | transform: scale3d(1, 1, 1); 272 | } 273 | 274 | 10%, 275 | 20% 276 | { 277 | -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg); 278 | transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg); 279 | } 280 | 281 | 30%, 282 | 50%, 283 | 70%, 284 | 90% 285 | { 286 | -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg); 287 | transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg); 288 | } 289 | 290 | 40%, 291 | 60%, 292 | 80% 293 | { 294 | -webkit-transform: rotate3d(0, 0, 1, -10deg); 295 | transform: rotate3d(0, 0, 1, -10deg); 296 | } 297 | 298 | to 299 | { 300 | -webkit-transform: scale3d(1, 1, 1); 301 | transform: scale3d(1, 1, 1); 302 | } 303 | } 304 | .bx-spin 305 | { 306 | -webkit-animation: spin 2s linear infinite; 307 | animation: spin 2s linear infinite; 308 | } 309 | .bx-spin-hover:hover 310 | { 311 | -webkit-animation: spin 2s linear infinite; 312 | animation: spin 2s linear infinite; 313 | } 314 | 315 | .bx-tada 316 | { 317 | -webkit-animation: tada 1.5s ease infinite; 318 | animation: tada 1.5s ease infinite; 319 | } 320 | .bx-tada-hover:hover 321 | { 322 | -webkit-animation: tada 1.5s ease infinite; 323 | animation: tada 1.5s ease infinite; 324 | } 325 | 326 | .bx-flashing 327 | { 328 | -webkit-animation: flashing 1.5s infinite linear; 329 | animation: flashing 1.5s infinite linear; 330 | } 331 | .bx-flashing-hover:hover 332 | { 333 | -webkit-animation: flashing 1.5s infinite linear; 334 | animation: flashing 1.5s infinite linear; 335 | } 336 | 337 | .bx-burst 338 | { 339 | -webkit-animation: burst 1.5s infinite linear; 340 | animation: burst 1.5s infinite linear; 341 | } 342 | .bx-burst-hover:hover 343 | { 344 | -webkit-animation: burst 1.5s infinite linear; 345 | animation: burst 1.5s infinite linear; 346 | } 347 | .bx-fade-up 348 | { 349 | -webkit-animation: fade-up 1.5s infinite linear; 350 | animation: fade-up 1.5s infinite linear; 351 | } 352 | .bx-fade-up-hover:hover 353 | { 354 | -webkit-animation: fade-up 1.5s infinite linear; 355 | animation: fade-up 1.5s infinite linear; 356 | } 357 | .bx-fade-down 358 | { 359 | -webkit-animation: fade-down 1.5s infinite linear; 360 | animation: fade-down 1.5s infinite linear; 361 | } 362 | .bx-fade-down-hover:hover 363 | { 364 | -webkit-animation: fade-down 1.5s infinite linear; 365 | animation: fade-down 1.5s infinite linear; 366 | } 367 | .bx-fade-left 368 | { 369 | -webkit-animation: fade-left 1.5s infinite linear; 370 | animation: fade-left 1.5s infinite linear; 371 | } 372 | .bx-fade-left-hover:hover 373 | { 374 | -webkit-animation: fade-left 1.5s infinite linear; 375 | animation: fade-left 1.5s infinite linear; 376 | } 377 | .bx-fade-right 378 | { 379 | -webkit-animation: fade-right 1.5s infinite linear; 380 | animation: fade-right 1.5s infinite linear; 381 | } 382 | .bx-fade-right-hover:hover 383 | { 384 | -webkit-animation: fade-right 1.5s infinite linear; 385 | animation: fade-right 1.5s infinite linear; 386 | } -------------------------------------------------------------------------------- /assets/vendor/typed.js/typed.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * 3 | * typed.js - A JavaScript Typing Animation Library 4 | * Author: Matt Boldt 5 | * Version: v2.0.11 6 | * Url: https://github.com/mattboldt/typed.js 7 | * License(s): MIT 8 | * 9 | */ 10 | (function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.Typed=e():t.Typed=e()})(this,function(){return function(t){function e(n){if(s[n])return s[n].exports;var i=s[n]={exports:{},id:n,loaded:!1};return t[n].call(i.exports,i,i.exports,e),i.loaded=!0,i.exports}var s={};return e.m=t,e.c=s,e.p="",e(0)}([function(t,e,s){"use strict";function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var i=function(){function t(t,e){for(var s=0;st.length)););var u=t.substring(0,e),l=t.substring(u.length+1,e+i),c=t.substring(e+i+1);t=u+l+c,i--}s.timeout=setTimeout(function(){s.toggleBlinking(!1),e>=t.length?s.doneTyping(t,e):s.keepTyping(t,e,i),s.temporaryPause&&(s.temporaryPause=!1,s.options.onTypingResumed(s.arrayPos,s))},n)},n))}},{key:"keepTyping",value:function(t,e,s){0===e&&(this.toggleBlinking(!1),this.options.preStringTyped(this.arrayPos,this)),e+=s;var n=t.substr(0,e);this.replaceText(n),this.typewrite(t,e)}},{key:"doneTyping",value:function(t,e){var s=this;this.options.onStringTyped(this.arrayPos,this),this.toggleBlinking(!0),this.arrayPos===this.strings.length-1&&(this.complete(),this.loop===!1||this.curLoop===this.loopCount)||(this.timeout=setTimeout(function(){s.backspace(t,e)},this.backDelay))}},{key:"backspace",value:function(t,e){var s=this;if(this.pause.status===!0)return void this.setPauseStatus(t,e,!0);if(this.fadeOut)return this.initFadeOut();this.toggleBlinking(!1);var n=this.humanizer(this.backSpeed);this.timeout=setTimeout(function(){e=o.htmlParser.backSpaceHtmlChars(t,e,s);var n=t.substr(0,e);if(s.replaceText(n),s.smartBackspace){var i=s.strings[s.arrayPos+1];i&&n===i.substr(0,e)?s.stopNum=e:s.stopNum=0}e>s.stopNum?(e--,s.backspace(t,e)):e<=s.stopNum&&(s.arrayPos++,s.arrayPos===s.strings.length?(s.arrayPos=0,s.options.onLastStringBackspaced(),s.shuffleStringsIfNeeded(),s.begin()):s.typewrite(s.strings[s.sequence[s.arrayPos]],e))},n)}},{key:"complete",value:function(){this.options.onComplete(this),this.loop?this.curLoop++:this.typingComplete=!0}},{key:"setPauseStatus",value:function(t,e,s){this.pause.typewrite=s,this.pause.curString=t,this.pause.curStrPos=e}},{key:"toggleBlinking",value:function(t){this.cursor&&(this.pause.status||this.cursorBlinking!==t&&(this.cursorBlinking=t,t?this.cursor.classList.add("typed-cursor--blink"):this.cursor.classList.remove("typed-cursor--blink")))}},{key:"humanizer",value:function(t){return Math.round(Math.random()*t/2)+t}},{key:"shuffleStringsIfNeeded",value:function(){this.shuffle&&(this.sequence=this.sequence.sort(function(){return Math.random()-.5}))}},{key:"initFadeOut",value:function(){var t=this;return this.el.className+=" "+this.fadeOutClass,this.cursor&&(this.cursor.className+=" "+this.fadeOutClass),setTimeout(function(){t.arrayPos++,t.replaceText(""),t.strings.length>t.arrayPos?t.typewrite(t.strings[t.sequence[t.arrayPos]],0):(t.typewrite(t.strings[0],0),t.arrayPos=0)},this.fadeOutDelay)}},{key:"replaceText",value:function(t){this.attr?this.el.setAttribute(this.attr,t):this.isInput?this.el.value=t:"html"===this.contentType?this.el.innerHTML=t:this.el.textContent=t}},{key:"bindFocusEvents",value:function(){var t=this;this.isInput&&(this.el.addEventListener("focus",function(e){t.stop()}),this.el.addEventListener("blur",function(e){t.el.value&&0!==t.el.value.length||t.start()}))}},{key:"insertCursor",value:function(){this.showCursor&&(this.cursor||(this.cursor=document.createElement("span"),this.cursor.className="typed-cursor",this.cursor.innerHTML=this.cursorChar,this.el.parentNode&&this.el.parentNode.insertBefore(this.cursor,this.el.nextSibling)))}}]),t}();e["default"]=a,t.exports=e["default"]},function(t,e,s){"use strict";function n(t){return t&&t.__esModule?t:{"default":t}}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var r=Object.assign||function(t){for(var e=1;e":";";t.substr(e+1).charAt(0)!==i&&(e++,!(e+1>t.length)););e++}return e}},{key:"backSpaceHtmlChars",value:function(t,e,s){if("html"!==s.contentType)return e;var n=t.substr(e).charAt(0);if(">"===n||";"===n){var i="";for(i=">"===n?"<":"&";t.substr(e-1).charAt(0)!==i&&(e--,!(e<0)););e--}return e}}]),t}();e["default"]=i;var r=new i;e.htmlParser=r}])}); 11 | //# sourceMappingURL=typed.min.js.map 12 | -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/glightbox.min.css: -------------------------------------------------------------------------------- 1 | .glightbox-container{width:100%;height:100%;position:fixed;top:0;left:0;z-index:999999!important;overflow:hidden;-ms-touch-action:none;touch-action:none;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;-ms-text-size-adjust:100%;text-size-adjust:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;outline:0;overflow:hidden}.glightbox-container.inactive{display:none}.glightbox-container .gcontainer{position:relative;width:100%;height:100%;z-index:9999;overflow:hidden}.glightbox-container .gslider{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;height:100%;left:0;top:0;width:100%;position:relative;overflow:hidden;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.glightbox-container .gslide{width:100%;position:absolute;opacity:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:0}.glightbox-container .gslide.current{opacity:1;z-index:99999;position:relative}.glightbox-container .gslide.prev{opacity:1;z-index:9999}.glightbox-container .gslide-inner-content{width:100%}.glightbox-container .ginner-container{position:relative;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:100%;margin:auto;height:100vh}.glightbox-container .ginner-container.gvideo-container{width:100%}.glightbox-container .ginner-container.desc-bottom,.glightbox-container .ginner-container.desc-top{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.glightbox-container .ginner-container.desc-left,.glightbox-container .ginner-container.desc-right{max-width:100%!important}.gslide iframe,.gslide video{outline:0!important;border:none;min-height:165px;-webkit-overflow-scrolling:touch;-ms-touch-action:auto;touch-action:auto}.gslide-image{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.gslide-image img{max-height:100vh;display:block;padding:0;float:none;outline:0;border:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;max-width:100vw;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;-ms-touch-action:none;touch-action:none;margin:auto;min-width:200px}.desc-bottom .gslide-image img,.desc-top .gslide-image img{width:auto}.desc-left .gslide-image img,.desc-right .gslide-image img{width:auto;max-width:100%}.gslide-image img.zoomable{position:relative}.gslide-image img.dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.gslide-video{position:relative;max-width:100vh;width:100%!important}.gslide-video .gvideo-wrapper{width:100%;margin:auto}.gslide-video::before{content:'';display:block;position:absolute;width:100%;height:100%;background:rgba(255,0,0,.34);display:none}.gslide-video.playing::before{display:none}.gslide-video.fullscreen{max-width:100%!important;min-width:100%;height:75vh}.gslide-video.fullscreen video{max-width:100%!important;width:100%!important}.gslide-inline{background:#fff;text-align:left;max-height:calc(100vh - 40px);overflow:auto;max-width:100%}.gslide-inline .ginlined-content{padding:20px;width:100%}.gslide-inline .dragging{cursor:-webkit-grabbing!important;cursor:grabbing!important;-webkit-transition:none;transition:none}.ginlined-content{overflow:auto;display:block!important;opacity:1}.gslide-external{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;min-width:100%;background:#fff;padding:0;overflow:auto;max-height:75vh;height:100%}.gslide-media{display:-webkit-box;display:-ms-flexbox;display:flex;width:auto}.zoomed .gslide-media{-webkit-box-shadow:none!important;box-shadow:none!important}.desc-bottom .gslide-media,.desc-top .gslide-media{margin:0 auto;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gslide-description{position:relative;-webkit-box-flex:1;-ms-flex:1 0 100%;flex:1 0 100%}.gslide-description.description-left,.gslide-description.description-right{max-width:100%}.gslide-description.description-bottom,.gslide-description.description-top{margin:0 auto;width:100%}.gslide-description p{margin-bottom:12px}.gslide-description p:last-child{margin-bottom:0}.zoomed .gslide-description{display:none}.glightbox-button-hidden{display:none}.glightbox-mobile .glightbox-container .gslide-description{height:auto!important;width:100%;background:0 0;position:absolute;bottom:15px;padding:19px 11px;max-width:100vw!important;-webkit-box-ordinal-group:3!important;-ms-flex-order:2!important;order:2!important;max-height:78vh;overflow:auto!important;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.75)));background:linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.75) 100%);-webkit-transition:opacity .3s linear;transition:opacity .3s linear;padding-bottom:50px}.glightbox-mobile .glightbox-container .gslide-title{color:#fff;font-size:1em}.glightbox-mobile .glightbox-container .gslide-desc{color:#a1a1a1}.glightbox-mobile .glightbox-container .gslide-desc a{color:#fff;font-weight:700}.glightbox-mobile .glightbox-container .gslide-desc *{color:inherit}.glightbox-mobile .glightbox-container .gslide-desc string{color:#fff}.glightbox-mobile .glightbox-container .gslide-desc .desc-more{color:#fff;opacity:.4}.gdesc-open .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:.4}.gdesc-open .gdesc-inner{padding-bottom:30px}.gdesc-closed .gslide-media{-webkit-transition:opacity .5s ease;transition:opacity .5s ease;opacity:1}.greset{-webkit-transition:all .3s ease;transition:all .3s ease}.gabsolute{position:absolute}.grelative{position:relative}.glightbox-desc{display:none!important}.glightbox-open{overflow:hidden}.gloader{height:25px;width:25px;-webkit-animation:lightboxLoader .8s infinite linear;animation:lightboxLoader .8s infinite linear;border:2px solid #fff;border-right-color:transparent;border-radius:50%;position:absolute;display:block;z-index:9999;left:0;right:0;margin:0 auto;top:47%}.goverlay{width:100%;height:calc(100vh + 1px);position:fixed;top:-1px;left:0;background:#000;will-change:opacity}.glightbox-mobile .goverlay{background:#000}.gclose,.gnext,.gprev{z-index:99999;cursor:pointer;width:26px;height:44px;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.gclose svg,.gnext svg,.gprev svg{display:block;width:25px;height:auto;margin:0;padding:0}.gclose.disabled,.gnext.disabled,.gprev.disabled{opacity:.1}.gclose .garrow,.gnext .garrow,.gprev .garrow{stroke:#fff}iframe.wait-autoplay{opacity:0}.glightbox-closing .gclose,.glightbox-closing .gnext,.glightbox-closing .gprev{opacity:0!important}.glightbox-clean .gslide-description{background:#fff}.glightbox-clean .gdesc-inner{padding:22px 20px}.glightbox-clean .gslide-title{font-size:1em;font-weight:400;font-family:arial;color:#000;margin-bottom:19px;line-height:1.4em}.glightbox-clean .gslide-desc{font-size:.86em;margin-bottom:0;font-family:arial;line-height:1.4em}.glightbox-clean .gslide-video{background:#000}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.75);border-radius:4px}.glightbox-clean .gclose path,.glightbox-clean .gnext path,.glightbox-clean .gprev path{fill:#fff}.glightbox-clean button:focus:not(.focused):not(.disabled){outline:0}.glightbox-clean .gprev{position:absolute;top:-100%;left:30px;width:40px;height:50px}.glightbox-clean .gnext{position:absolute;top:-100%;right:30px;width:40px;height:50px}.glightbox-clean .gclose{width:35px;height:35px;top:15px;right:10px;position:absolute}.glightbox-clean .gclose svg{width:18px;height:auto}.glightbox-clean .gclose:hover{opacity:1}.gfadeIn{-webkit-animation:gfadeIn .5s ease;animation:gfadeIn .5s ease}.gfadeOut{-webkit-animation:gfadeOut .5s ease;animation:gfadeOut .5s ease}.gslideOutLeft{-webkit-animation:gslideOutLeft .3s ease;animation:gslideOutLeft .3s ease}.gslideInLeft{-webkit-animation:gslideInLeft .3s ease;animation:gslideInLeft .3s ease}.gslideOutRight{-webkit-animation:gslideOutRight .3s ease;animation:gslideOutRight .3s ease}.gslideInRight{-webkit-animation:gslideInRight .3s ease;animation:gslideInRight .3s ease}.gzoomIn{-webkit-animation:gzoomIn .5s ease;animation:gzoomIn .5s ease}.gzoomOut{-webkit-animation:gzoomOut .5s ease;animation:gzoomOut .5s ease}@-webkit-keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes lightboxLoader{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes gfadeIn{from{opacity:0}to{opacity:1}}@keyframes gfadeIn{from{opacity:0}to{opacity:1}}@-webkit-keyframes gfadeOut{from{opacity:1}to{opacity:0}}@keyframes gfadeOut{from{opacity:1}to{opacity:0}}@-webkit-keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInLeft{from{opacity:0;-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0)}to{visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@keyframes gslideOutLeft{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(-60%,0,0);transform:translate3d(-60%,0,0);opacity:0;visibility:hidden}}@-webkit-keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes gslideInRight{from{opacity:0;visibility:visible;-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@-webkit-keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@keyframes gslideOutRight{from{opacity:1;visibility:visible;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{-webkit-transform:translate3d(60%,0,0);transform:translate3d(60%,0,0);opacity:0}}@-webkit-keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@keyframes gzoomIn{from{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:1}}@-webkit-keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes gzoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@media (min-width:769px){.glightbox-container .ginner-container{width:auto;height:auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.glightbox-container .ginner-container.desc-top .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-top .gslide-image,.glightbox-container .ginner-container.desc-top .gslide-image img{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.glightbox-container .ginner-container.desc-left .gslide-description{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.glightbox-container .ginner-container.desc-left .gslide-image{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.gslide-image img{max-height:97vh;max-width:100%}.gslide-image img.zoomable{cursor:-webkit-zoom-in;cursor:zoom-in}.zoomed .gslide-image img.zoomable{cursor:-webkit-grab;cursor:grab}.gslide-inline{max-height:95vh}.gslide-external{max-height:100vh}.gslide-description.description-left,.gslide-description.description-right{max-width:275px}.glightbox-open{height:auto}.goverlay{background:rgba(0,0,0,.92)}.glightbox-clean .gslide-media{-webkit-box-shadow:1px 2px 9px 0 rgba(0,0,0,.65);box-shadow:1px 2px 9px 0 rgba(0,0,0,.65)}.glightbox-clean .description-left .gdesc-inner,.glightbox-clean .description-right .gdesc-inner{position:absolute;height:100%;overflow-y:auto}.glightbox-clean .gclose,.glightbox-clean .gnext,.glightbox-clean .gprev{background-color:rgba(0,0,0,.32)}.glightbox-clean .gclose:hover,.glightbox-clean .gnext:hover,.glightbox-clean .gprev:hover{background-color:rgba(0,0,0,.7)}.glightbox-clean .gprev{top:45%}.glightbox-clean .gnext{top:45%}}@media (min-width:992px){.glightbox-clean .gclose{opacity:.7;right:20px}}@media screen and (max-height:420px){.goverlay{background:#000}} 2 | -------------------------------------------------------------------------------- /assets/vendor/swiper/swiper-bundle.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Swiper 6.5.0 3 | * Most modern mobile touch slider and framework with hardware accelerated transitions 4 | * https://swiperjs.com 5 | * 6 | * Copyright 2014-2021 Vladimir Kharlampidi 7 | * 8 | * Released under the MIT License 9 | * 10 | * Released on: March 5, 2021 11 | */ 12 | 13 | @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-container-pointer-events{touch-action:pan-y}.swiper-container-pointer-events.swiper-container-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(-1 * var(--swiper-navigation-size)/ 2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:50%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-container-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;-webkit-filter:blur(50px);filter:blur(50px)}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden} -------------------------------------------------------------------------------- /assets/vendor/glightbox/css/glightbox.css: -------------------------------------------------------------------------------- 1 | .glightbox-container { 2 | width: 100%; 3 | height: 100%; 4 | position: fixed; 5 | top: 0; 6 | left: 0; 7 | z-index: 999999 !important; 8 | overflow: hidden; 9 | -ms-touch-action: none; 10 | touch-action: none; 11 | -webkit-text-size-adjust: 100%; 12 | -moz-text-size-adjust: 100%; 13 | -ms-text-size-adjust: 100%; 14 | text-size-adjust: 100%; 15 | -webkit-backface-visibility: hidden; 16 | backface-visibility: hidden; 17 | outline: none; 18 | overflow: hidden; 19 | } 20 | 21 | .glightbox-container.inactive { 22 | display: none; 23 | } 24 | 25 | .glightbox-container .gcontainer { 26 | position: relative; 27 | width: 100%; 28 | height: 100%; 29 | z-index: 9999; 30 | overflow: hidden; 31 | } 32 | 33 | .glightbox-container .gslider { 34 | -webkit-transition: -webkit-transform 0.4s ease; 35 | transition: -webkit-transform 0.4s ease; 36 | transition: transform 0.4s ease; 37 | transition: transform 0.4s ease, -webkit-transform 0.4s ease; 38 | height: 100%; 39 | left: 0; 40 | top: 0; 41 | width: 100%; 42 | position: relative; 43 | overflow: hidden; 44 | display: -webkit-box !important; 45 | display: -ms-flexbox !important; 46 | display: flex !important; 47 | -webkit-box-pack: center; 48 | -ms-flex-pack: center; 49 | justify-content: center; 50 | -webkit-box-align: center; 51 | -ms-flex-align: center; 52 | align-items: center; 53 | -webkit-transform: translate3d(0, 0, 0); 54 | transform: translate3d(0, 0, 0); 55 | } 56 | 57 | .glightbox-container .gslide { 58 | width: 100%; 59 | position: absolute; 60 | opacity: 1; 61 | -webkit-user-select: none; 62 | -moz-user-select: none; 63 | -ms-user-select: none; 64 | user-select: none; 65 | display: -webkit-box; 66 | display: -ms-flexbox; 67 | display: flex; 68 | -webkit-box-align: center; 69 | -ms-flex-align: center; 70 | align-items: center; 71 | -webkit-box-pack: center; 72 | -ms-flex-pack: center; 73 | justify-content: center; 74 | opacity: 0; 75 | } 76 | 77 | .glightbox-container .gslide.current { 78 | opacity: 1; 79 | z-index: 99999; 80 | position: relative; 81 | } 82 | 83 | .glightbox-container .gslide.prev { 84 | opacity: 1; 85 | z-index: 9999; 86 | } 87 | 88 | .glightbox-container .gslide-inner-content { 89 | width: 100%; 90 | } 91 | 92 | .glightbox-container .ginner-container { 93 | position: relative; 94 | width: 100%; 95 | display: -webkit-box; 96 | display: -ms-flexbox; 97 | display: flex; 98 | -webkit-box-pack: center; 99 | -ms-flex-pack: center; 100 | justify-content: center; 101 | -webkit-box-orient: vertical; 102 | -webkit-box-direction: normal; 103 | -ms-flex-direction: column; 104 | flex-direction: column; 105 | max-width: 100%; 106 | margin: auto; 107 | height: 100vh; 108 | } 109 | 110 | .glightbox-container .ginner-container.gvideo-container { 111 | width: 100%; 112 | } 113 | 114 | .glightbox-container .ginner-container.desc-bottom, 115 | .glightbox-container .ginner-container.desc-top { 116 | -webkit-box-orient: vertical; 117 | -webkit-box-direction: normal; 118 | -ms-flex-direction: column; 119 | flex-direction: column; 120 | } 121 | 122 | .glightbox-container .ginner-container.desc-left, 123 | .glightbox-container .ginner-container.desc-right { 124 | max-width: 100% !important; 125 | } 126 | 127 | .gslide iframe, 128 | .gslide video { 129 | outline: none !important; 130 | border: none; 131 | min-height: 165px; 132 | -webkit-overflow-scrolling: touch; 133 | -ms-touch-action: auto; 134 | touch-action: auto; 135 | } 136 | 137 | .gslide-image { 138 | -webkit-box-align: center; 139 | -ms-flex-align: center; 140 | align-items: center; 141 | } 142 | 143 | .gslide-image img { 144 | max-height: 100vh; 145 | display: block; 146 | padding: 0; 147 | float: none; 148 | outline: none; 149 | border: none; 150 | -webkit-user-select: none; 151 | -moz-user-select: none; 152 | -ms-user-select: none; 153 | user-select: none; 154 | max-width: 100vw; 155 | width: auto; 156 | height: auto; 157 | -o-object-fit: cover; 158 | object-fit: cover; 159 | -ms-touch-action: none; 160 | touch-action: none; 161 | margin: auto; 162 | min-width: 200px; 163 | } 164 | 165 | .desc-top .gslide-image img, 166 | .desc-bottom .gslide-image img { 167 | width: auto; 168 | } 169 | 170 | .desc-left .gslide-image img, 171 | .desc-right .gslide-image img { 172 | width: auto; 173 | max-width: 100%; 174 | } 175 | 176 | .gslide-image img.zoomable { 177 | position: relative; 178 | } 179 | 180 | .gslide-image img.dragging { 181 | cursor: -webkit-grabbing !important; 182 | cursor: grabbing !important; 183 | -webkit-transition: none; 184 | transition: none; 185 | } 186 | 187 | .gslide-video { 188 | position: relative; 189 | max-width: 100vh; 190 | width: 100% !important; 191 | } 192 | 193 | .gslide-video .gvideo-wrapper { 194 | width: 100%; 195 | /* max-width: 160vmin; */ 196 | margin: auto; 197 | } 198 | 199 | .gslide-video::before { 200 | content: ''; 201 | display: block; 202 | position: absolute; 203 | width: 100%; 204 | height: 100%; 205 | background: rgba(255, 0, 0, 0.34); 206 | display: none; 207 | } 208 | 209 | .gslide-video.playing::before { 210 | display: none; 211 | } 212 | 213 | .gslide-video.fullscreen { 214 | max-width: 100% !important; 215 | min-width: 100%; 216 | height: 75vh; 217 | } 218 | 219 | .gslide-video.fullscreen video { 220 | max-width: 100% !important; 221 | width: 100% !important; 222 | } 223 | 224 | .gslide-inline { 225 | background: #fff; 226 | text-align: left; 227 | max-height: calc(100vh - 40px); 228 | overflow: auto; 229 | max-width: 100%; 230 | } 231 | 232 | .gslide-inline .ginlined-content { 233 | padding: 20px; 234 | width: 100%; 235 | } 236 | 237 | .gslide-inline .dragging { 238 | cursor: -webkit-grabbing !important; 239 | cursor: grabbing !important; 240 | -webkit-transition: none; 241 | transition: none; 242 | } 243 | 244 | .ginlined-content { 245 | overflow: auto; 246 | display: block !important; 247 | opacity: 1; 248 | } 249 | 250 | .gslide-external { 251 | display: -webkit-box; 252 | display: -ms-flexbox; 253 | display: flex; 254 | width: 100%; 255 | min-width: 100%; 256 | background: #fff; 257 | padding: 0; 258 | overflow: auto; 259 | max-height: 75vh; 260 | height: 100%; 261 | } 262 | 263 | .gslide-media { 264 | display: -webkit-box; 265 | display: -ms-flexbox; 266 | display: flex; 267 | width: auto; 268 | } 269 | 270 | .zoomed .gslide-media { 271 | -webkit-box-shadow: none !important; 272 | box-shadow: none !important; 273 | } 274 | 275 | .desc-top .gslide-media, 276 | .desc-bottom .gslide-media { 277 | margin: 0 auto; 278 | -webkit-box-orient: vertical; 279 | -webkit-box-direction: normal; 280 | -ms-flex-direction: column; 281 | flex-direction: column; 282 | } 283 | 284 | .gslide-description { 285 | position: relative; 286 | -webkit-box-flex: 1; 287 | -ms-flex: 1 0 100%; 288 | flex: 1 0 100%; 289 | } 290 | 291 | .gslide-description.description-left, 292 | .gslide-description.description-right { 293 | max-width: 100%; 294 | } 295 | 296 | .gslide-description.description-bottom, 297 | .gslide-description.description-top { 298 | margin: 0 auto; 299 | width: 100%; 300 | } 301 | 302 | .gslide-description p { 303 | margin-bottom: 12px; 304 | } 305 | 306 | .gslide-description p:last-child { 307 | margin-bottom: 0; 308 | } 309 | 310 | .zoomed .gslide-description { 311 | display: none; 312 | } 313 | 314 | .glightbox-button-hidden { 315 | display: none; 316 | } 317 | 318 | 319 | /* 320 | * Description for mobiles 321 | * something like facebook does the description 322 | * for the photos 323 | */ 324 | 325 | .glightbox-mobile .glightbox-container .gslide-description { 326 | height: auto !important; 327 | width: 100%; 328 | background: transparent; 329 | position: absolute; 330 | bottom: 15px; 331 | padding: 19px 11px; 332 | max-width: 100vw !important; 333 | -webkit-box-ordinal-group: 3 !important; 334 | -ms-flex-order: 2 !important; 335 | order: 2 !important; 336 | max-height: 78vh; 337 | overflow: auto !important; 338 | background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75))); 339 | background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%); 340 | -webkit-transition: opacity 0.3s linear; 341 | transition: opacity 0.3s linear; 342 | padding-bottom: 50px; 343 | } 344 | 345 | .glightbox-mobile .glightbox-container .gslide-title { 346 | color: #fff; 347 | font-size: 1em; 348 | } 349 | 350 | .glightbox-mobile .glightbox-container .gslide-desc { 351 | color: #a1a1a1; 352 | } 353 | 354 | .glightbox-mobile .glightbox-container .gslide-desc a { 355 | color: #fff; 356 | font-weight: bold; 357 | } 358 | 359 | .glightbox-mobile .glightbox-container .gslide-desc * { 360 | color: inherit; 361 | } 362 | 363 | .glightbox-mobile .glightbox-container .gslide-desc string { 364 | color: #fff; 365 | } 366 | 367 | .glightbox-mobile .glightbox-container .gslide-desc .desc-more { 368 | color: #fff; 369 | opacity: 0.4; 370 | } 371 | 372 | .gdesc-open .gslide-media { 373 | -webkit-transition: opacity 0.5s ease; 374 | transition: opacity 0.5s ease; 375 | opacity: 0.4; 376 | } 377 | 378 | .gdesc-open .gdesc-inner { 379 | padding-bottom: 30px; 380 | } 381 | 382 | .gdesc-closed .gslide-media { 383 | -webkit-transition: opacity 0.5s ease; 384 | transition: opacity 0.5s ease; 385 | opacity: 1; 386 | } 387 | 388 | .greset { 389 | -webkit-transition: all 0.3s ease; 390 | transition: all 0.3s ease; 391 | } 392 | 393 | .gabsolute { 394 | position: absolute; 395 | } 396 | 397 | .grelative { 398 | position: relative; 399 | } 400 | 401 | .glightbox-desc { 402 | display: none !important; 403 | } 404 | 405 | .glightbox-open { 406 | overflow: hidden; 407 | } 408 | 409 | .gloader { 410 | height: 25px; 411 | width: 25px; 412 | -webkit-animation: lightboxLoader 0.8s infinite linear; 413 | animation: lightboxLoader 0.8s infinite linear; 414 | border: 2px solid #fff; 415 | border-right-color: transparent; 416 | border-radius: 50%; 417 | position: absolute; 418 | display: block; 419 | z-index: 9999; 420 | left: 0; 421 | right: 0; 422 | margin: 0 auto; 423 | top: 47%; 424 | } 425 | 426 | .goverlay { 427 | width: 100%; 428 | height: calc(100vh + 1px); 429 | position: fixed; 430 | top: -1px; 431 | left: 0; 432 | background: #000; 433 | will-change: opacity; 434 | } 435 | 436 | .glightbox-mobile .goverlay { 437 | background: #000; 438 | } 439 | 440 | .gprev, 441 | .gnext, 442 | .gclose { 443 | z-index: 99999; 444 | cursor: pointer; 445 | width: 26px; 446 | height: 44px; 447 | border: none; 448 | display: -webkit-box; 449 | display: -ms-flexbox; 450 | display: flex; 451 | -webkit-box-pack: center; 452 | -ms-flex-pack: center; 453 | justify-content: center; 454 | -webkit-box-align: center; 455 | -ms-flex-align: center; 456 | align-items: center; 457 | -webkit-box-orient: vertical; 458 | -webkit-box-direction: normal; 459 | -ms-flex-direction: column; 460 | flex-direction: column; 461 | } 462 | 463 | .gprev svg, 464 | .gnext svg, 465 | .gclose svg { 466 | display: block; 467 | width: 25px; 468 | height: auto; 469 | margin: 0; 470 | padding: 0; 471 | } 472 | 473 | .gprev.disabled, 474 | .gnext.disabled, 475 | .gclose.disabled { 476 | opacity: 0.1; 477 | } 478 | 479 | .gprev .garrow, 480 | .gnext .garrow, 481 | .gclose .garrow { 482 | stroke: #fff; 483 | } 484 | 485 | iframe.wait-autoplay { 486 | opacity: 0; 487 | } 488 | 489 | .glightbox-closing .gnext, 490 | .glightbox-closing .gprev, 491 | .glightbox-closing .gclose { 492 | opacity: 0 !important; 493 | } 494 | 495 | 496 | /*Skin */ 497 | 498 | .glightbox-clean .gslide-description { 499 | background: #fff; 500 | } 501 | 502 | .glightbox-clean .gdesc-inner { 503 | padding: 22px 20px; 504 | } 505 | 506 | .glightbox-clean .gslide-title { 507 | font-size: 1em; 508 | font-weight: normal; 509 | font-family: arial; 510 | color: #000; 511 | margin-bottom: 19px; 512 | line-height: 1.4em; 513 | } 514 | 515 | .glightbox-clean .gslide-desc { 516 | font-size: 0.86em; 517 | margin-bottom: 0; 518 | font-family: arial; 519 | line-height: 1.4em; 520 | } 521 | 522 | .glightbox-clean .gslide-video { 523 | background: #000; 524 | } 525 | 526 | .glightbox-clean .gprev, 527 | .glightbox-clean .gnext, 528 | .glightbox-clean .gclose { 529 | background-color: rgba(0, 0, 0, 0.75); 530 | border-radius: 4px; 531 | } 532 | 533 | .glightbox-clean .gprev path, 534 | .glightbox-clean .gnext path, 535 | .glightbox-clean .gclose path { 536 | fill: #fff; 537 | } 538 | 539 | .glightbox-clean button:focus:not(.focused):not(.disabled) { 540 | outline: none; 541 | } 542 | 543 | .glightbox-clean .gprev { 544 | position: absolute; 545 | top: -100%; 546 | left: 30px; 547 | width: 40px; 548 | height: 50px; 549 | } 550 | 551 | .glightbox-clean .gnext { 552 | position: absolute; 553 | top: -100%; 554 | right: 30px; 555 | width: 40px; 556 | height: 50px; 557 | } 558 | 559 | .glightbox-clean .gclose { 560 | width: 35px; 561 | height: 35px; 562 | top: 15px; 563 | right: 10px; 564 | position: absolute; 565 | } 566 | 567 | .glightbox-clean .gclose svg { 568 | width: 18px; 569 | height: auto; 570 | } 571 | 572 | .glightbox-clean .gclose:hover { 573 | opacity: 1; 574 | } 575 | 576 | 577 | /*CSS Animations*/ 578 | 579 | .gfadeIn { 580 | -webkit-animation: gfadeIn 0.5s ease; 581 | animation: gfadeIn 0.5s ease; 582 | } 583 | 584 | .gfadeOut { 585 | -webkit-animation: gfadeOut 0.5s ease; 586 | animation: gfadeOut 0.5s ease; 587 | } 588 | 589 | .gslideOutLeft { 590 | -webkit-animation: gslideOutLeft 0.3s ease; 591 | animation: gslideOutLeft 0.3s ease; 592 | } 593 | 594 | .gslideInLeft { 595 | -webkit-animation: gslideInLeft 0.3s ease; 596 | animation: gslideInLeft 0.3s ease; 597 | } 598 | 599 | .gslideOutRight { 600 | -webkit-animation: gslideOutRight 0.3s ease; 601 | animation: gslideOutRight 0.3s ease; 602 | } 603 | 604 | .gslideInRight { 605 | -webkit-animation: gslideInRight 0.3s ease; 606 | animation: gslideInRight 0.3s ease; 607 | } 608 | 609 | .gzoomIn { 610 | -webkit-animation: gzoomIn 0.5s ease; 611 | animation: gzoomIn 0.5s ease; 612 | } 613 | 614 | .gzoomOut { 615 | -webkit-animation: gzoomOut 0.5s ease; 616 | animation: gzoomOut 0.5s ease; 617 | } 618 | 619 | @-webkit-keyframes lightboxLoader { 620 | 0% { 621 | -webkit-transform: rotate(0deg); 622 | transform: rotate(0deg); 623 | } 624 | 100% { 625 | -webkit-transform: rotate(360deg); 626 | transform: rotate(360deg); 627 | } 628 | } 629 | 630 | @keyframes lightboxLoader { 631 | 0% { 632 | -webkit-transform: rotate(0deg); 633 | transform: rotate(0deg); 634 | } 635 | 100% { 636 | -webkit-transform: rotate(360deg); 637 | transform: rotate(360deg); 638 | } 639 | } 640 | 641 | @-webkit-keyframes gfadeIn { 642 | from { 643 | opacity: 0; 644 | } 645 | to { 646 | opacity: 1; 647 | } 648 | } 649 | 650 | @keyframes gfadeIn { 651 | from { 652 | opacity: 0; 653 | } 654 | to { 655 | opacity: 1; 656 | } 657 | } 658 | 659 | @-webkit-keyframes gfadeOut { 660 | from { 661 | opacity: 1; 662 | } 663 | to { 664 | opacity: 0; 665 | } 666 | } 667 | 668 | @keyframes gfadeOut { 669 | from { 670 | opacity: 1; 671 | } 672 | to { 673 | opacity: 0; 674 | } 675 | } 676 | 677 | @-webkit-keyframes gslideInLeft { 678 | from { 679 | opacity: 0; 680 | -webkit-transform: translate3d(-60%, 0, 0); 681 | transform: translate3d(-60%, 0, 0); 682 | } 683 | to { 684 | visibility: visible; 685 | -webkit-transform: translate3d(0, 0, 0); 686 | transform: translate3d(0, 0, 0); 687 | opacity: 1; 688 | } 689 | } 690 | 691 | @keyframes gslideInLeft { 692 | from { 693 | opacity: 0; 694 | -webkit-transform: translate3d(-60%, 0, 0); 695 | transform: translate3d(-60%, 0, 0); 696 | } 697 | to { 698 | visibility: visible; 699 | -webkit-transform: translate3d(0, 0, 0); 700 | transform: translate3d(0, 0, 0); 701 | opacity: 1; 702 | } 703 | } 704 | 705 | @-webkit-keyframes gslideOutLeft { 706 | from { 707 | opacity: 1; 708 | visibility: visible; 709 | -webkit-transform: translate3d(0, 0, 0); 710 | transform: translate3d(0, 0, 0); 711 | } 712 | to { 713 | -webkit-transform: translate3d(-60%, 0, 0); 714 | transform: translate3d(-60%, 0, 0); 715 | opacity: 0; 716 | visibility: hidden; 717 | } 718 | } 719 | 720 | @keyframes gslideOutLeft { 721 | from { 722 | opacity: 1; 723 | visibility: visible; 724 | -webkit-transform: translate3d(0, 0, 0); 725 | transform: translate3d(0, 0, 0); 726 | } 727 | to { 728 | -webkit-transform: translate3d(-60%, 0, 0); 729 | transform: translate3d(-60%, 0, 0); 730 | opacity: 0; 731 | visibility: hidden; 732 | } 733 | } 734 | 735 | @-webkit-keyframes gslideInRight { 736 | from { 737 | opacity: 0; 738 | visibility: visible; 739 | -webkit-transform: translate3d(60%, 0, 0); 740 | transform: translate3d(60%, 0, 0); 741 | } 742 | to { 743 | -webkit-transform: translate3d(0, 0, 0); 744 | transform: translate3d(0, 0, 0); 745 | opacity: 1; 746 | } 747 | } 748 | 749 | @keyframes gslideInRight { 750 | from { 751 | opacity: 0; 752 | visibility: visible; 753 | -webkit-transform: translate3d(60%, 0, 0); 754 | transform: translate3d(60%, 0, 0); 755 | } 756 | to { 757 | -webkit-transform: translate3d(0, 0, 0); 758 | transform: translate3d(0, 0, 0); 759 | opacity: 1; 760 | } 761 | } 762 | 763 | @-webkit-keyframes gslideOutRight { 764 | from { 765 | opacity: 1; 766 | visibility: visible; 767 | -webkit-transform: translate3d(0, 0, 0); 768 | transform: translate3d(0, 0, 0); 769 | } 770 | to { 771 | -webkit-transform: translate3d(60%, 0, 0); 772 | transform: translate3d(60%, 0, 0); 773 | opacity: 0; 774 | } 775 | } 776 | 777 | @keyframes gslideOutRight { 778 | from { 779 | opacity: 1; 780 | visibility: visible; 781 | -webkit-transform: translate3d(0, 0, 0); 782 | transform: translate3d(0, 0, 0); 783 | } 784 | to { 785 | -webkit-transform: translate3d(60%, 0, 0); 786 | transform: translate3d(60%, 0, 0); 787 | opacity: 0; 788 | } 789 | } 790 | 791 | @-webkit-keyframes gzoomIn { 792 | from { 793 | opacity: 0; 794 | -webkit-transform: scale3d(0.3, 0.3, 0.3); 795 | transform: scale3d(0.3, 0.3, 0.3); 796 | } 797 | to { 798 | opacity: 1; 799 | } 800 | } 801 | 802 | @keyframes gzoomIn { 803 | from { 804 | opacity: 0; 805 | -webkit-transform: scale3d(0.3, 0.3, 0.3); 806 | transform: scale3d(0.3, 0.3, 0.3); 807 | } 808 | to { 809 | opacity: 1; 810 | } 811 | } 812 | 813 | @-webkit-keyframes gzoomOut { 814 | from { 815 | opacity: 1; 816 | } 817 | 50% { 818 | opacity: 0; 819 | -webkit-transform: scale3d(0.3, 0.3, 0.3); 820 | transform: scale3d(0.3, 0.3, 0.3); 821 | } 822 | to { 823 | opacity: 0; 824 | } 825 | } 826 | 827 | @keyframes gzoomOut { 828 | from { 829 | opacity: 1; 830 | } 831 | 50% { 832 | opacity: 0; 833 | -webkit-transform: scale3d(0.3, 0.3, 0.3); 834 | transform: scale3d(0.3, 0.3, 0.3); 835 | } 836 | to { 837 | opacity: 0; 838 | } 839 | } 840 | 841 | @media (min-width: 769px) { 842 | .glightbox-container .ginner-container { 843 | width: auto; 844 | height: auto; 845 | -webkit-box-orient: horizontal; 846 | -webkit-box-direction: normal; 847 | -ms-flex-direction: row; 848 | flex-direction: row; 849 | } 850 | .glightbox-container .ginner-container.desc-top .gslide-description { 851 | -webkit-box-ordinal-group: 1; 852 | -ms-flex-order: 0; 853 | order: 0; 854 | } 855 | .glightbox-container .ginner-container.desc-top .gslide-image, 856 | .glightbox-container .ginner-container.desc-top .gslide-image img { 857 | -webkit-box-ordinal-group: 2; 858 | -ms-flex-order: 1; 859 | order: 1; 860 | } 861 | .glightbox-container .ginner-container.desc-left .gslide-description { 862 | -webkit-box-ordinal-group: 1; 863 | -ms-flex-order: 0; 864 | order: 0; 865 | } 866 | .glightbox-container .ginner-container.desc-left .gslide-image { 867 | -webkit-box-ordinal-group: 2; 868 | -ms-flex-order: 1; 869 | order: 1; 870 | } 871 | .gslide-image img { 872 | max-height: 97vh; 873 | max-width: 100%; 874 | } 875 | .gslide-image img.zoomable { 876 | cursor: -webkit-zoom-in; 877 | cursor: zoom-in; 878 | } 879 | .zoomed .gslide-image img.zoomable { 880 | cursor: -webkit-grab; 881 | cursor: grab; 882 | } 883 | .gslide-inline { 884 | max-height: 95vh; 885 | } 886 | .gslide-external { 887 | max-height: 100vh; 888 | } 889 | .gslide-description.description-left, 890 | .gslide-description.description-right { 891 | max-width: 275px; 892 | } 893 | .glightbox-open { 894 | height: auto; 895 | } 896 | .goverlay { 897 | background: rgba(0, 0, 0, 0.92); 898 | } 899 | .glightbox-clean .gslide-media { 900 | -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65); 901 | box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65); 902 | } 903 | .glightbox-clean .description-left .gdesc-inner, 904 | .glightbox-clean .description-right .gdesc-inner { 905 | position: absolute; 906 | height: 100%; 907 | overflow-y: auto; 908 | } 909 | .glightbox-clean .gprev, 910 | .glightbox-clean .gnext, 911 | .glightbox-clean .gclose { 912 | background-color: rgba(0, 0, 0, 0.32); 913 | } 914 | .glightbox-clean .gprev:hover, 915 | .glightbox-clean .gnext:hover, 916 | .glightbox-clean .gclose:hover { 917 | background-color: rgba(0, 0, 0, 0.7); 918 | } 919 | .glightbox-clean .gprev { 920 | top: 45%; 921 | } 922 | .glightbox-clean .gnext { 923 | top: 45%; 924 | } 925 | } 926 | 927 | @media (min-width: 992px) { 928 | .glightbox-clean .gclose { 929 | opacity: 0.7; 930 | right: 20px; 931 | } 932 | } 933 | 934 | @media screen and (max-height: 420px) { 935 | .goverlay { 936 | background: #000; 937 | } 938 | } 939 | -------------------------------------------------------------------------------- /assets/vendor/waypoints/noframework.waypoints.js: -------------------------------------------------------------------------------- 1 | /*! 2 | Waypoints - 4.0.1 3 | Copyright © 2011-2016 Caleb Troughton 4 | Licensed under the MIT license. 5 | https://github.com/imakewebthings/waypoints/blob/master/licenses.txt 6 | */ 7 | (function() { 8 | 'use strict' 9 | 10 | var keyCounter = 0 11 | var allWaypoints = {} 12 | 13 | /* http://imakewebthings.com/waypoints/api/waypoint */ 14 | function Waypoint(options) { 15 | if (!options) { 16 | throw new Error('No options passed to Waypoint constructor') 17 | } 18 | if (!options.element) { 19 | throw new Error('No element option passed to Waypoint constructor') 20 | } 21 | if (!options.handler) { 22 | throw new Error('No handler option passed to Waypoint constructor') 23 | } 24 | 25 | this.key = 'waypoint-' + keyCounter 26 | this.options = Waypoint.Adapter.extend({}, Waypoint.defaults, options) 27 | this.element = this.options.element 28 | this.adapter = new Waypoint.Adapter(this.element) 29 | this.callback = options.handler 30 | this.axis = this.options.horizontal ? 'horizontal' : 'vertical' 31 | this.enabled = this.options.enabled 32 | this.triggerPoint = null 33 | this.group = Waypoint.Group.findOrCreate({ 34 | name: this.options.group, 35 | axis: this.axis 36 | }) 37 | this.context = Waypoint.Context.findOrCreateByElement(this.options.context) 38 | 39 | if (Waypoint.offsetAliases[this.options.offset]) { 40 | this.options.offset = Waypoint.offsetAliases[this.options.offset] 41 | } 42 | this.group.add(this) 43 | this.context.add(this) 44 | allWaypoints[this.key] = this 45 | keyCounter += 1 46 | } 47 | 48 | /* Private */ 49 | Waypoint.prototype.queueTrigger = function(direction) { 50 | this.group.queueTrigger(this, direction) 51 | } 52 | 53 | /* Private */ 54 | Waypoint.prototype.trigger = function(args) { 55 | if (!this.enabled) { 56 | return 57 | } 58 | if (this.callback) { 59 | this.callback.apply(this, args) 60 | } 61 | } 62 | 63 | /* Public */ 64 | /* http://imakewebthings.com/waypoints/api/destroy */ 65 | Waypoint.prototype.destroy = function() { 66 | this.context.remove(this) 67 | this.group.remove(this) 68 | delete allWaypoints[this.key] 69 | } 70 | 71 | /* Public */ 72 | /* http://imakewebthings.com/waypoints/api/disable */ 73 | Waypoint.prototype.disable = function() { 74 | this.enabled = false 75 | return this 76 | } 77 | 78 | /* Public */ 79 | /* http://imakewebthings.com/waypoints/api/enable */ 80 | Waypoint.prototype.enable = function() { 81 | this.context.refresh() 82 | this.enabled = true 83 | return this 84 | } 85 | 86 | /* Public */ 87 | /* http://imakewebthings.com/waypoints/api/next */ 88 | Waypoint.prototype.next = function() { 89 | return this.group.next(this) 90 | } 91 | 92 | /* Public */ 93 | /* http://imakewebthings.com/waypoints/api/previous */ 94 | Waypoint.prototype.previous = function() { 95 | return this.group.previous(this) 96 | } 97 | 98 | /* Private */ 99 | Waypoint.invokeAll = function(method) { 100 | var allWaypointsArray = [] 101 | for (var waypointKey in allWaypoints) { 102 | allWaypointsArray.push(allWaypoints[waypointKey]) 103 | } 104 | for (var i = 0, end = allWaypointsArray.length; i < end; i++) { 105 | allWaypointsArray[i][method]() 106 | } 107 | } 108 | 109 | /* Public */ 110 | /* http://imakewebthings.com/waypoints/api/destroy-all */ 111 | Waypoint.destroyAll = function() { 112 | Waypoint.invokeAll('destroy') 113 | } 114 | 115 | /* Public */ 116 | /* http://imakewebthings.com/waypoints/api/disable-all */ 117 | Waypoint.disableAll = function() { 118 | Waypoint.invokeAll('disable') 119 | } 120 | 121 | /* Public */ 122 | /* http://imakewebthings.com/waypoints/api/enable-all */ 123 | Waypoint.enableAll = function() { 124 | Waypoint.Context.refreshAll() 125 | for (var waypointKey in allWaypoints) { 126 | allWaypoints[waypointKey].enabled = true 127 | } 128 | return this 129 | } 130 | 131 | /* Public */ 132 | /* http://imakewebthings.com/waypoints/api/refresh-all */ 133 | Waypoint.refreshAll = function() { 134 | Waypoint.Context.refreshAll() 135 | } 136 | 137 | /* Public */ 138 | /* http://imakewebthings.com/waypoints/api/viewport-height */ 139 | Waypoint.viewportHeight = function() { 140 | return window.innerHeight || document.documentElement.clientHeight 141 | } 142 | 143 | /* Public */ 144 | /* http://imakewebthings.com/waypoints/api/viewport-width */ 145 | Waypoint.viewportWidth = function() { 146 | return document.documentElement.clientWidth 147 | } 148 | 149 | Waypoint.adapters = [] 150 | 151 | Waypoint.defaults = { 152 | context: window, 153 | continuous: true, 154 | enabled: true, 155 | group: 'default', 156 | horizontal: false, 157 | offset: 0 158 | } 159 | 160 | Waypoint.offsetAliases = { 161 | 'bottom-in-view': function() { 162 | return this.context.innerHeight() - this.adapter.outerHeight() 163 | }, 164 | 'right-in-view': function() { 165 | return this.context.innerWidth() - this.adapter.outerWidth() 166 | } 167 | } 168 | 169 | window.Waypoint = Waypoint 170 | }()) 171 | ;(function() { 172 | 'use strict' 173 | 174 | function requestAnimationFrameShim(callback) { 175 | window.setTimeout(callback, 1000 / 60) 176 | } 177 | 178 | var keyCounter = 0 179 | var contexts = {} 180 | var Waypoint = window.Waypoint 181 | var oldWindowLoad = window.onload 182 | 183 | /* http://imakewebthings.com/waypoints/api/context */ 184 | function Context(element) { 185 | this.element = element 186 | this.Adapter = Waypoint.Adapter 187 | this.adapter = new this.Adapter(element) 188 | this.key = 'waypoint-context-' + keyCounter 189 | this.didScroll = false 190 | this.didResize = false 191 | this.oldScroll = { 192 | x: this.adapter.scrollLeft(), 193 | y: this.adapter.scrollTop() 194 | } 195 | this.waypoints = { 196 | vertical: {}, 197 | horizontal: {} 198 | } 199 | 200 | element.waypointContextKey = this.key 201 | contexts[element.waypointContextKey] = this 202 | keyCounter += 1 203 | if (!Waypoint.windowContext) { 204 | Waypoint.windowContext = true 205 | Waypoint.windowContext = new Context(window) 206 | } 207 | 208 | this.createThrottledScrollHandler() 209 | this.createThrottledResizeHandler() 210 | } 211 | 212 | /* Private */ 213 | Context.prototype.add = function(waypoint) { 214 | var axis = waypoint.options.horizontal ? 'horizontal' : 'vertical' 215 | this.waypoints[axis][waypoint.key] = waypoint 216 | this.refresh() 217 | } 218 | 219 | /* Private */ 220 | Context.prototype.checkEmpty = function() { 221 | var horizontalEmpty = this.Adapter.isEmptyObject(this.waypoints.horizontal) 222 | var verticalEmpty = this.Adapter.isEmptyObject(this.waypoints.vertical) 223 | var isWindow = this.element == this.element.window 224 | if (horizontalEmpty && verticalEmpty && !isWindow) { 225 | this.adapter.off('.waypoints') 226 | delete contexts[this.key] 227 | } 228 | } 229 | 230 | /* Private */ 231 | Context.prototype.createThrottledResizeHandler = function() { 232 | var self = this 233 | 234 | function resizeHandler() { 235 | self.handleResize() 236 | self.didResize = false 237 | } 238 | 239 | this.adapter.on('resize.waypoints', function() { 240 | if (!self.didResize) { 241 | self.didResize = true 242 | Waypoint.requestAnimationFrame(resizeHandler) 243 | } 244 | }) 245 | } 246 | 247 | /* Private */ 248 | Context.prototype.createThrottledScrollHandler = function() { 249 | var self = this 250 | function scrollHandler() { 251 | self.handleScroll() 252 | self.didScroll = false 253 | } 254 | 255 | this.adapter.on('scroll.waypoints', function() { 256 | if (!self.didScroll || Waypoint.isTouch) { 257 | self.didScroll = true 258 | Waypoint.requestAnimationFrame(scrollHandler) 259 | } 260 | }) 261 | } 262 | 263 | /* Private */ 264 | Context.prototype.handleResize = function() { 265 | Waypoint.Context.refreshAll() 266 | } 267 | 268 | /* Private */ 269 | Context.prototype.handleScroll = function() { 270 | var triggeredGroups = {} 271 | var axes = { 272 | horizontal: { 273 | newScroll: this.adapter.scrollLeft(), 274 | oldScroll: this.oldScroll.x, 275 | forward: 'right', 276 | backward: 'left' 277 | }, 278 | vertical: { 279 | newScroll: this.adapter.scrollTop(), 280 | oldScroll: this.oldScroll.y, 281 | forward: 'down', 282 | backward: 'up' 283 | } 284 | } 285 | 286 | for (var axisKey in axes) { 287 | var axis = axes[axisKey] 288 | var isForward = axis.newScroll > axis.oldScroll 289 | var direction = isForward ? axis.forward : axis.backward 290 | 291 | for (var waypointKey in this.waypoints[axisKey]) { 292 | var waypoint = this.waypoints[axisKey][waypointKey] 293 | if (waypoint.triggerPoint === null) { 294 | continue 295 | } 296 | var wasBeforeTriggerPoint = axis.oldScroll < waypoint.triggerPoint 297 | var nowAfterTriggerPoint = axis.newScroll >= waypoint.triggerPoint 298 | var crossedForward = wasBeforeTriggerPoint && nowAfterTriggerPoint 299 | var crossedBackward = !wasBeforeTriggerPoint && !nowAfterTriggerPoint 300 | if (crossedForward || crossedBackward) { 301 | waypoint.queueTrigger(direction) 302 | triggeredGroups[waypoint.group.id] = waypoint.group 303 | } 304 | } 305 | } 306 | 307 | for (var groupKey in triggeredGroups) { 308 | triggeredGroups[groupKey].flushTriggers() 309 | } 310 | 311 | this.oldScroll = { 312 | x: axes.horizontal.newScroll, 313 | y: axes.vertical.newScroll 314 | } 315 | } 316 | 317 | /* Private */ 318 | Context.prototype.innerHeight = function() { 319 | /*eslint-disable eqeqeq */ 320 | if (this.element == this.element.window) { 321 | return Waypoint.viewportHeight() 322 | } 323 | /*eslint-enable eqeqeq */ 324 | return this.adapter.innerHeight() 325 | } 326 | 327 | /* Private */ 328 | Context.prototype.remove = function(waypoint) { 329 | delete this.waypoints[waypoint.axis][waypoint.key] 330 | this.checkEmpty() 331 | } 332 | 333 | /* Private */ 334 | Context.prototype.innerWidth = function() { 335 | /*eslint-disable eqeqeq */ 336 | if (this.element == this.element.window) { 337 | return Waypoint.viewportWidth() 338 | } 339 | /*eslint-enable eqeqeq */ 340 | return this.adapter.innerWidth() 341 | } 342 | 343 | /* Public */ 344 | /* http://imakewebthings.com/waypoints/api/context-destroy */ 345 | Context.prototype.destroy = function() { 346 | var allWaypoints = [] 347 | for (var axis in this.waypoints) { 348 | for (var waypointKey in this.waypoints[axis]) { 349 | allWaypoints.push(this.waypoints[axis][waypointKey]) 350 | } 351 | } 352 | for (var i = 0, end = allWaypoints.length; i < end; i++) { 353 | allWaypoints[i].destroy() 354 | } 355 | } 356 | 357 | /* Public */ 358 | /* http://imakewebthings.com/waypoints/api/context-refresh */ 359 | Context.prototype.refresh = function() { 360 | /*eslint-disable eqeqeq */ 361 | var isWindow = this.element == this.element.window 362 | /*eslint-enable eqeqeq */ 363 | var contextOffset = isWindow ? undefined : this.adapter.offset() 364 | var triggeredGroups = {} 365 | var axes 366 | 367 | this.handleScroll() 368 | axes = { 369 | horizontal: { 370 | contextOffset: isWindow ? 0 : contextOffset.left, 371 | contextScroll: isWindow ? 0 : this.oldScroll.x, 372 | contextDimension: this.innerWidth(), 373 | oldScroll: this.oldScroll.x, 374 | forward: 'right', 375 | backward: 'left', 376 | offsetProp: 'left' 377 | }, 378 | vertical: { 379 | contextOffset: isWindow ? 0 : contextOffset.top, 380 | contextScroll: isWindow ? 0 : this.oldScroll.y, 381 | contextDimension: this.innerHeight(), 382 | oldScroll: this.oldScroll.y, 383 | forward: 'down', 384 | backward: 'up', 385 | offsetProp: 'top' 386 | } 387 | } 388 | 389 | for (var axisKey in axes) { 390 | var axis = axes[axisKey] 391 | for (var waypointKey in this.waypoints[axisKey]) { 392 | var waypoint = this.waypoints[axisKey][waypointKey] 393 | var adjustment = waypoint.options.offset 394 | var oldTriggerPoint = waypoint.triggerPoint 395 | var elementOffset = 0 396 | var freshWaypoint = oldTriggerPoint == null 397 | var contextModifier, wasBeforeScroll, nowAfterScroll 398 | var triggeredBackward, triggeredForward 399 | 400 | if (waypoint.element !== waypoint.element.window) { 401 | elementOffset = waypoint.adapter.offset()[axis.offsetProp] 402 | } 403 | 404 | if (typeof adjustment === 'function') { 405 | adjustment = adjustment.apply(waypoint) 406 | } 407 | else if (typeof adjustment === 'string') { 408 | adjustment = parseFloat(adjustment) 409 | if (waypoint.options.offset.indexOf('%') > - 1) { 410 | adjustment = Math.ceil(axis.contextDimension * adjustment / 100) 411 | } 412 | } 413 | 414 | contextModifier = axis.contextScroll - axis.contextOffset 415 | waypoint.triggerPoint = Math.floor(elementOffset + contextModifier - adjustment) 416 | wasBeforeScroll = oldTriggerPoint < axis.oldScroll 417 | nowAfterScroll = waypoint.triggerPoint >= axis.oldScroll 418 | triggeredBackward = wasBeforeScroll && nowAfterScroll 419 | triggeredForward = !wasBeforeScroll && !nowAfterScroll 420 | 421 | if (!freshWaypoint && triggeredBackward) { 422 | waypoint.queueTrigger(axis.backward) 423 | triggeredGroups[waypoint.group.id] = waypoint.group 424 | } 425 | else if (!freshWaypoint && triggeredForward) { 426 | waypoint.queueTrigger(axis.forward) 427 | triggeredGroups[waypoint.group.id] = waypoint.group 428 | } 429 | else if (freshWaypoint && axis.oldScroll >= waypoint.triggerPoint) { 430 | waypoint.queueTrigger(axis.forward) 431 | triggeredGroups[waypoint.group.id] = waypoint.group 432 | } 433 | } 434 | } 435 | 436 | Waypoint.requestAnimationFrame(function() { 437 | for (var groupKey in triggeredGroups) { 438 | triggeredGroups[groupKey].flushTriggers() 439 | } 440 | }) 441 | 442 | return this 443 | } 444 | 445 | /* Private */ 446 | Context.findOrCreateByElement = function(element) { 447 | return Context.findByElement(element) || new Context(element) 448 | } 449 | 450 | /* Private */ 451 | Context.refreshAll = function() { 452 | for (var contextId in contexts) { 453 | contexts[contextId].refresh() 454 | } 455 | } 456 | 457 | /* Public */ 458 | /* http://imakewebthings.com/waypoints/api/context-find-by-element */ 459 | Context.findByElement = function(element) { 460 | return contexts[element.waypointContextKey] 461 | } 462 | 463 | window.onload = function() { 464 | if (oldWindowLoad) { 465 | oldWindowLoad() 466 | } 467 | Context.refreshAll() 468 | } 469 | 470 | 471 | Waypoint.requestAnimationFrame = function(callback) { 472 | var requestFn = window.requestAnimationFrame || 473 | window.mozRequestAnimationFrame || 474 | window.webkitRequestAnimationFrame || 475 | requestAnimationFrameShim 476 | requestFn.call(window, callback) 477 | } 478 | Waypoint.Context = Context 479 | }()) 480 | ;(function() { 481 | 'use strict' 482 | 483 | function byTriggerPoint(a, b) { 484 | return a.triggerPoint - b.triggerPoint 485 | } 486 | 487 | function byReverseTriggerPoint(a, b) { 488 | return b.triggerPoint - a.triggerPoint 489 | } 490 | 491 | var groups = { 492 | vertical: {}, 493 | horizontal: {} 494 | } 495 | var Waypoint = window.Waypoint 496 | 497 | /* http://imakewebthings.com/waypoints/api/group */ 498 | function Group(options) { 499 | this.name = options.name 500 | this.axis = options.axis 501 | this.id = this.name + '-' + this.axis 502 | this.waypoints = [] 503 | this.clearTriggerQueues() 504 | groups[this.axis][this.name] = this 505 | } 506 | 507 | /* Private */ 508 | Group.prototype.add = function(waypoint) { 509 | this.waypoints.push(waypoint) 510 | } 511 | 512 | /* Private */ 513 | Group.prototype.clearTriggerQueues = function() { 514 | this.triggerQueues = { 515 | up: [], 516 | down: [], 517 | left: [], 518 | right: [] 519 | } 520 | } 521 | 522 | /* Private */ 523 | Group.prototype.flushTriggers = function() { 524 | for (var direction in this.triggerQueues) { 525 | var waypoints = this.triggerQueues[direction] 526 | var reverse = direction === 'up' || direction === 'left' 527 | waypoints.sort(reverse ? byReverseTriggerPoint : byTriggerPoint) 528 | for (var i = 0, end = waypoints.length; i < end; i += 1) { 529 | var waypoint = waypoints[i] 530 | if (waypoint.options.continuous || i === waypoints.length - 1) { 531 | waypoint.trigger([direction]) 532 | } 533 | } 534 | } 535 | this.clearTriggerQueues() 536 | } 537 | 538 | /* Private */ 539 | Group.prototype.next = function(waypoint) { 540 | this.waypoints.sort(byTriggerPoint) 541 | var index = Waypoint.Adapter.inArray(waypoint, this.waypoints) 542 | var isLast = index === this.waypoints.length - 1 543 | return isLast ? null : this.waypoints[index + 1] 544 | } 545 | 546 | /* Private */ 547 | Group.prototype.previous = function(waypoint) { 548 | this.waypoints.sort(byTriggerPoint) 549 | var index = Waypoint.Adapter.inArray(waypoint, this.waypoints) 550 | return index ? this.waypoints[index - 1] : null 551 | } 552 | 553 | /* Private */ 554 | Group.prototype.queueTrigger = function(waypoint, direction) { 555 | this.triggerQueues[direction].push(waypoint) 556 | } 557 | 558 | /* Private */ 559 | Group.prototype.remove = function(waypoint) { 560 | var index = Waypoint.Adapter.inArray(waypoint, this.waypoints) 561 | if (index > -1) { 562 | this.waypoints.splice(index, 1) 563 | } 564 | } 565 | 566 | /* Public */ 567 | /* http://imakewebthings.com/waypoints/api/first */ 568 | Group.prototype.first = function() { 569 | return this.waypoints[0] 570 | } 571 | 572 | /* Public */ 573 | /* http://imakewebthings.com/waypoints/api/last */ 574 | Group.prototype.last = function() { 575 | return this.waypoints[this.waypoints.length - 1] 576 | } 577 | 578 | /* Private */ 579 | Group.findOrCreate = function(options) { 580 | return groups[options.axis][options.name] || new Group(options) 581 | } 582 | 583 | Waypoint.Group = Group 584 | }()) 585 | ;(function() { 586 | 'use strict' 587 | 588 | var Waypoint = window.Waypoint 589 | 590 | function isWindow(element) { 591 | return element === element.window 592 | } 593 | 594 | function getWindow(element) { 595 | if (isWindow(element)) { 596 | return element 597 | } 598 | return element.defaultView 599 | } 600 | 601 | function NoFrameworkAdapter(element) { 602 | this.element = element 603 | this.handlers = {} 604 | } 605 | 606 | NoFrameworkAdapter.prototype.innerHeight = function() { 607 | var isWin = isWindow(this.element) 608 | return isWin ? this.element.innerHeight : this.element.clientHeight 609 | } 610 | 611 | NoFrameworkAdapter.prototype.innerWidth = function() { 612 | var isWin = isWindow(this.element) 613 | return isWin ? this.element.innerWidth : this.element.clientWidth 614 | } 615 | 616 | NoFrameworkAdapter.prototype.off = function(event, handler) { 617 | function removeListeners(element, listeners, handler) { 618 | for (var i = 0, end = listeners.length - 1; i < end; i++) { 619 | var listener = listeners[i] 620 | if (!handler || handler === listener) { 621 | element.removeEventListener(listener) 622 | } 623 | } 624 | } 625 | 626 | var eventParts = event.split('.') 627 | var eventType = eventParts[0] 628 | var namespace = eventParts[1] 629 | var element = this.element 630 | 631 | if (namespace && this.handlers[namespace] && eventType) { 632 | removeListeners(element, this.handlers[namespace][eventType], handler) 633 | this.handlers[namespace][eventType] = [] 634 | } 635 | else if (eventType) { 636 | for (var ns in this.handlers) { 637 | removeListeners(element, this.handlers[ns][eventType] || [], handler) 638 | this.handlers[ns][eventType] = [] 639 | } 640 | } 641 | else if (namespace && this.handlers[namespace]) { 642 | for (var type in this.handlers[namespace]) { 643 | removeListeners(element, this.handlers[namespace][type], handler) 644 | } 645 | this.handlers[namespace] = {} 646 | } 647 | } 648 | 649 | /* Adapted from jQuery 1.x offset() */ 650 | NoFrameworkAdapter.prototype.offset = function() { 651 | if (!this.element.ownerDocument) { 652 | return null 653 | } 654 | 655 | var documentElement = this.element.ownerDocument.documentElement 656 | var win = getWindow(this.element.ownerDocument) 657 | var rect = { 658 | top: 0, 659 | left: 0 660 | } 661 | 662 | if (this.element.getBoundingClientRect) { 663 | rect = this.element.getBoundingClientRect() 664 | } 665 | 666 | return { 667 | top: rect.top + win.pageYOffset - documentElement.clientTop, 668 | left: rect.left + win.pageXOffset - documentElement.clientLeft 669 | } 670 | } 671 | 672 | NoFrameworkAdapter.prototype.on = function(event, handler) { 673 | var eventParts = event.split('.') 674 | var eventType = eventParts[0] 675 | var namespace = eventParts[1] || '__default' 676 | var nsHandlers = this.handlers[namespace] = this.handlers[namespace] || {} 677 | var nsTypeList = nsHandlers[eventType] = nsHandlers[eventType] || [] 678 | 679 | nsTypeList.push(handler) 680 | this.element.addEventListener(eventType, handler) 681 | } 682 | 683 | NoFrameworkAdapter.prototype.outerHeight = function(includeMargin) { 684 | var height = this.innerHeight() 685 | var computedStyle 686 | 687 | if (includeMargin && !isWindow(this.element)) { 688 | computedStyle = window.getComputedStyle(this.element) 689 | height += parseInt(computedStyle.marginTop, 10) 690 | height += parseInt(computedStyle.marginBottom, 10) 691 | } 692 | 693 | return height 694 | } 695 | 696 | NoFrameworkAdapter.prototype.outerWidth = function(includeMargin) { 697 | var width = this.innerWidth() 698 | var computedStyle 699 | 700 | if (includeMargin && !isWindow(this.element)) { 701 | computedStyle = window.getComputedStyle(this.element) 702 | width += parseInt(computedStyle.marginLeft, 10) 703 | width += parseInt(computedStyle.marginRight, 10) 704 | } 705 | 706 | return width 707 | } 708 | 709 | NoFrameworkAdapter.prototype.scrollLeft = function() { 710 | var win = getWindow(this.element) 711 | return win ? win.pageXOffset : this.element.scrollLeft 712 | } 713 | 714 | NoFrameworkAdapter.prototype.scrollTop = function() { 715 | var win = getWindow(this.element) 716 | return win ? win.pageYOffset : this.element.scrollTop 717 | } 718 | 719 | NoFrameworkAdapter.extend = function() { 720 | var args = Array.prototype.slice.call(arguments) 721 | 722 | function merge(target, obj) { 723 | if (typeof target === 'object' && typeof obj === 'object') { 724 | for (var key in obj) { 725 | if (obj.hasOwnProperty(key)) { 726 | target[key] = obj[key] 727 | } 728 | } 729 | } 730 | 731 | return target 732 | } 733 | 734 | for (var i = 1, end = args.length; i < end; i++) { 735 | merge(args[0], args[i]) 736 | } 737 | return args[0] 738 | } 739 | 740 | NoFrameworkAdapter.inArray = function(element, array, i) { 741 | return array == null ? -1 : array.indexOf(element, i) 742 | } 743 | 744 | NoFrameworkAdapter.isEmptyObject = function(obj) { 745 | /* eslint no-unused-vars: 0 */ 746 | for (var name in obj) { 747 | return false 748 | } 749 | return true 750 | } 751 | 752 | Waypoint.adapters.push({ 753 | name: 'noframework', 754 | Adapter: NoFrameworkAdapter 755 | }) 756 | Waypoint.Adapter = NoFrameworkAdapter 757 | }()) 758 | ; -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Template Name: Personal - v4.1.0 3 | * Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/ 4 | * Author: BootstrapMade.com 5 | * License: https://bootstrapmade.com/license/ 6 | */ 7 | 8 | /*-------------------------------------------------------------- 9 | # General 10 | --------------------------------------------------------------*/ 11 | body { 12 | font-family: "Open Sans", sans-serif; 13 | background-color: #040404; 14 | color: #fff; 15 | position: relative; 16 | background: transparent; 17 | } 18 | 19 | body::before { 20 | content: ""; 21 | position: fixed; 22 | background: #040404 url("../img/bg.jpg") center no-repeat; 23 | background-size: cover; 24 | left: 0; 25 | right: 0; 26 | top: 0; 27 | height: 100vh; 28 | z-index: -1; 29 | } 30 | 31 | @media (min-width: 1024px) { 32 | body::before { 33 | background-attachment: fixed; 34 | } 35 | } 36 | 37 | a { 38 | color: #18d26e; 39 | text-decoration: none; 40 | } 41 | 42 | a:hover { 43 | color: #35e888; 44 | text-decoration: none; 45 | } 46 | 47 | h1, h2, h3, h4, h5, h6 { 48 | font-family: "Raleway", sans-serif; 49 | } 50 | 51 | /*-------------------------------------------------------------- 52 | # Header 53 | --------------------------------------------------------------*/ 54 | #header { 55 | transition: ease-in-out 0.3s; 56 | position: relative; 57 | height: 100vh; 58 | display: flex; 59 | align-items: center; 60 | z-index: 997; 61 | overflow-y: auto; 62 | } 63 | 64 | #header * { 65 | transition: ease-in-out 0.3s; 66 | } 67 | 68 | #header h1 { 69 | font-size: 48px; 70 | margin: 0; 71 | padding: 0; 72 | line-height: 1; 73 | font-weight: 700; 74 | font-family: "Poppins", sans-serif; 75 | } 76 | 77 | #header h1 a, #header h1 a:hover { 78 | color: #fff; 79 | line-height: 1; 80 | display: inline-block; 81 | } 82 | 83 | #header h2 { 84 | font-size: 24px; 85 | margin-top: 20px; 86 | color: rgba(255, 255, 255, 0.8); 87 | } 88 | 89 | #header h2 span { 90 | color: #fff; 91 | border-bottom: 2px solid #18d26e; 92 | padding-bottom: 6px; 93 | } 94 | 95 | #header img { 96 | padding: 0; 97 | margin: 0; 98 | } 99 | 100 | #header .social-links { 101 | margin-top: 40px; 102 | display: flex; 103 | } 104 | 105 | #header .social-links a { 106 | font-size: 16px; 107 | display: flex; 108 | justify-content: center; 109 | align-items: center; 110 | background: rgba(255, 255, 255, 0.1); 111 | color: #fff; 112 | line-height: 1; 113 | margin-right: 8px; 114 | border-radius: 50%; 115 | width: 40px; 116 | height: 40px; 117 | } 118 | 119 | #header .social-links a:hover { 120 | background: #18d26e; 121 | } 122 | 123 | @media (max-width: 992px) { 124 | #header h1 { 125 | font-size: 36px; 126 | } 127 | #header h2 { 128 | font-size: 20px; 129 | line-height: 30px; 130 | } 131 | #header .social-links { 132 | margin-top: 15px; 133 | } 134 | #header .container { 135 | display: flex; 136 | flex-direction: column; 137 | align-items: center; 138 | } 139 | } 140 | 141 | /* Header Top */ 142 | #header.header-top { 143 | height: 80px; 144 | position: fixed; 145 | left: 0; 146 | top: 0; 147 | right: 0; 148 | background: rgba(0, 0, 0, 0.9); 149 | } 150 | 151 | #header.header-top .social-links, #header.header-top h2 { 152 | display: none; 153 | } 154 | 155 | #header.header-top h1 { 156 | margin-right: auto; 157 | font-size: 36px; 158 | } 159 | 160 | #header.header-top .container { 161 | display: flex; 162 | align-items: center; 163 | } 164 | 165 | #header.header-top .navbar { 166 | margin: 0; 167 | } 168 | 169 | @media (max-width: 768px) { 170 | #header.header-top { 171 | height: 60px; 172 | } 173 | #header.header-top h1 { 174 | font-size: 26px; 175 | } 176 | } 177 | 178 | /*-------------------------------------------------------------- 179 | # Navigation Menu 180 | --------------------------------------------------------------*/ 181 | /** 182 | * Desktop Navigation 183 | */ 184 | .navbar { 185 | padding: 0; 186 | margin-top: 35px; 187 | } 188 | 189 | .navbar ul { 190 | margin: 0; 191 | padding: 0; 192 | display: flex; 193 | list-style: none; 194 | align-items: center; 195 | } 196 | 197 | .navbar li { 198 | position: relative; 199 | } 200 | 201 | .navbar li + li { 202 | margin-left: 30px; 203 | } 204 | 205 | .navbar a { 206 | display: flex; 207 | align-items: center; 208 | justify-content: space-between; 209 | padding: 0; 210 | font-family: "Poppins", sans-serif; 211 | font-size: 16px; 212 | font-weight: 400; 213 | color: rgba(255, 255, 255, 0.7); 214 | white-space: nowrap; 215 | transition: 0.3s; 216 | } 217 | 218 | .navbar a i { 219 | font-size: 12px; 220 | line-height: 0; 221 | margin-left: 5px; 222 | } 223 | 224 | .navbar a:before { 225 | content: ""; 226 | position: absolute; 227 | width: 0; 228 | height: 2px; 229 | bottom: -4px; 230 | left: 0; 231 | background-color: #18d26e; 232 | visibility: hidden; 233 | width: 0px; 234 | transition: all 0.3s ease-in-out 0s; 235 | } 236 | 237 | .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before { 238 | visibility: visible; 239 | width: 25px; 240 | } 241 | 242 | .navbar a:hover, .navbar .active, .navbar li:hover > a { 243 | color: #fff; 244 | } 245 | 246 | /** 247 | * Mobile Navigation 248 | */ 249 | .mobile-nav-toggle { 250 | color: #fff; 251 | font-size: 28px; 252 | cursor: pointer; 253 | display: none; 254 | line-height: 0; 255 | transition: 0.5s; 256 | position: fixed; 257 | right: 15px; 258 | top: 15px; 259 | } 260 | 261 | 262 | .navbar ul { 263 | margin: 0; 264 | padding: 0; 265 | display: flex; 266 | list-style: none; 267 | align-items: center; 268 | } 269 | 270 | .navbar li { 271 | position: relative; 272 | } 273 | 274 | .navbar li + li { 275 | margin-left:10px; 276 | } 277 | 278 | .navbar a { 279 | display: flex; 280 | align-items: center; 281 | justify-content: space-between; 282 | padding: 0; 283 | font-family: "Poppins", sans-serif; 284 | font-size: 16px; 285 | font-weight: 400; 286 | color: rgba(255, 255, 255, 0.7); 287 | white-space: nowrap; 288 | transition: 0.3s; 289 | } 290 | 291 | .navbar a i { 292 | font-size: 12px; 293 | line-height: 0; 294 | margin-left: 5px; 295 | } 296 | 297 | .navbar a:before { 298 | content: ""; 299 | position: absolute; 300 | width: 0; 301 | height: 2px; 302 | bottom: -4px; 303 | left: 0; 304 | background-color: #18d26e; 305 | visibility: hidden; 306 | width: 0px; 307 | transition: all 0.3s ease-in-out 0s; 308 | } 309 | 310 | .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before { 311 | visibility: visible; 312 | width: 25px; 313 | } 314 | 315 | .navbar a:hover, .navbar .active, .navbar li:hover > a { 316 | color: #fff; 317 | } 318 | /*-------------------------------------------------------------- 319 | # Sections General 320 | --------------------------------------------------------------*/ 321 | section { 322 | overflow: hidden; 323 | position: absolute; 324 | width: 100%; 325 | top: 140px; 326 | bottom: 100%; 327 | opacity: 0; 328 | transition: ease-in-out 0.4s; 329 | z-index: 2; 330 | } 331 | 332 | section.section-show { 333 | top: 100px; 334 | bottom: auto; 335 | opacity: 1; 336 | padding-bottom: 45px; 337 | } 338 | 339 | section .container { 340 | background: rgba(0, 0, 0, 0.9); 341 | padding: 30px; 342 | } 343 | 344 | @media (max-width: 768px) { 345 | section { 346 | top: 120px; 347 | } 348 | section.section-show { 349 | top: 80px; 350 | } 351 | } 352 | 353 | .section-title h2 { 354 | font-size: 14px; 355 | font-weight: 500; 356 | padding: 0; 357 | line-height: 1px; 358 | margin: 0 0 20px 0; 359 | letter-spacing: 2px; 360 | text-transform: uppercase; 361 | color: #aaaaaa; 362 | font-family: "Poppins", sans-serif; 363 | } 364 | 365 | .section-title h2::after { 366 | content: ""; 367 | width: 120px; 368 | height: 1px; 369 | display: inline-block; 370 | background: #4ceb95; 371 | margin: 4px 10px; 372 | } 373 | 374 | .section-title p { 375 | margin: 0; 376 | margin: -15px 0 15px 0; 377 | font-size: 36px; 378 | font-weight: 700; 379 | text-transform: uppercase; 380 | font-family: "Poppins", sans-serif; 381 | color: #fff; 382 | } 383 | 384 | /*-------------------------------------------------------------- 385 | # About 386 | --------------------------------------------------------------*/ 387 | .about-me .content h3 { 388 | font-weight: 700; 389 | font-size: 26px; 390 | color: #ff0606de; 391 | } 392 | 393 | .about-me .content ul { 394 | list-style: none; 395 | padding: 0; 396 | } 397 | 398 | .about-me .content ul li { 399 | margin-bottom: 20px; 400 | display: flex; 401 | align-items: center; 402 | } 403 | 404 | .about-me .content ul strong { 405 | margin-right: 10px; 406 | } 407 | 408 | .about-me .content ul i { 409 | font-size: 16px; 410 | margin-right: 5px; 411 | color: #18d26e; 412 | line-height: 0; 413 | } 414 | 415 | .about-me .content p:last-child { 416 | margin-bottom: 0; 417 | } 418 | 419 | /*-------------------------------------------------------------- 420 | # Counts 421 | --------------------------------------------------------------*/ 422 | .counts { 423 | padding: 70px 0 60px; 424 | } 425 | 426 | .counts .count-box { 427 | padding: 30px 30px 25px 30px; 428 | width: 100%; 429 | position: relative; 430 | text-align: center; 431 | background: rgba(255, 255, 255, 0.08); 432 | } 433 | 434 | .counts .count-box i { 435 | position: absolute; 436 | top: -25px; 437 | left: 50%; 438 | transform: translateX(-50%); 439 | font-size: 24px; 440 | background: rgba(255, 255, 255, 0.1); 441 | padding: 12px; 442 | color: #18d26e; 443 | border-radius: 50px; 444 | line-height: 0; 445 | } 446 | 447 | .counts .count-box span { 448 | font-size: 36px; 449 | display: block; 450 | font-weight: 600; 451 | color: #fff; 452 | } 453 | 454 | .counts .count-box p { 455 | padding: 0; 456 | margin: 0; 457 | font-family: "Raleway", sans-serif; 458 | font-size: 14px; 459 | } 460 | 461 | /*-------------------------------------------------------------- 462 | # Skills 463 | --------------------------------------------------------------*/ 464 | .skills .progress { 465 | height: 60px; 466 | display: block; 467 | background: none; 468 | border-radius: 0; 469 | } 470 | 471 | .skills .progress .skill { 472 | padding: 10px 0; 473 | margin: 0; 474 | text-transform: uppercase; 475 | display: block; 476 | font-weight: 600; 477 | font-family: "Poppins", sans-serif; 478 | color: #fff; 479 | } 480 | 481 | .skills .progress .skill .val { 482 | float: right; 483 | font-style: normal; 484 | } 485 | 486 | .skills .progress-bar-wrap { 487 | background: rgba(255, 255, 255, 0.2); 488 | } 489 | 490 | .skills .progress-bar { 491 | width: 1px; 492 | height: 10px; 493 | transition: .9s; 494 | background-color: #18d26e; 495 | } 496 | 497 | /*-------------------------------------------------------------- 498 | # Interests 499 | --------------------------------------------------------------*/ 500 | .interests .icon-box { 501 | display: flex; 502 | align-items: center; 503 | padding: 20px; 504 | background: rgba(255, 255, 255, 0.08); 505 | transition: ease-in-out 0.3s; 506 | } 507 | 508 | .interests .icon-box i { 509 | font-size: 32px; 510 | padding-right: 10px; 511 | line-height: 1; 512 | } 513 | 514 | .interests .icon-box h3 { 515 | font-weight: 700; 516 | margin: 0; 517 | padding: 0; 518 | line-height: 1; 519 | font-size: 16px; 520 | color: #fff; 521 | } 522 | 523 | .interests .icon-box:hover { 524 | background: rgba(255, 255, 255, 0.12); 525 | } 526 | 527 | /*-------------------------------------------------------------- 528 | # Testimonials 529 | --------------------------------------------------------------*/ 530 | .testimonials .testimonial-item { 531 | box-sizing: content-box; 532 | min-height: 320px; 533 | } 534 | 535 | .testimonials .testimonial-item .testimonial-img { 536 | width: 90px; 537 | border-radius: 50%; 538 | margin: -40px 0 0 40px; 539 | position: relative; 540 | z-index: 2; 541 | border: 6px solid rgba(255, 255, 255, 0.12); 542 | } 543 | 544 | .testimonials .testimonial-item h3 { 545 | font-size: 18px; 546 | font-weight: bold; 547 | margin: 10px 0 5px 45px; 548 | color: #fff; 549 | } 550 | 551 | .testimonials .testimonial-item h4 { 552 | font-size: 14px; 553 | color: #999; 554 | margin: 0 0 0 45px; 555 | } 556 | 557 | .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right { 558 | color: rgba(255, 255, 255, 0.25); 559 | font-size: 26px; 560 | } 561 | 562 | .testimonials .testimonial-item .quote-icon-left { 563 | display: inline-block; 564 | left: -5px; 565 | position: relative; 566 | } 567 | 568 | .testimonials .testimonial-item .quote-icon-right { 569 | display: inline-block; 570 | right: -5px; 571 | position: relative; 572 | top: 10px; 573 | } 574 | 575 | .testimonials .testimonial-item p { 576 | font-style: italic; 577 | margin: 0 15px 0 15px; 578 | padding: 20px 20px 60px 20px; 579 | background: rgba(255, 255, 255, 0.1); 580 | position: relative; 581 | border-radius: 6px; 582 | position: relative; 583 | z-index: 1; 584 | } 585 | 586 | .testimonials .swiper-pagination { 587 | margin-top: 20px; 588 | position: relative; 589 | } 590 | 591 | .testimonials .swiper-pagination .swiper-pagination-bullet { 592 | width: 12px; 593 | height: 12px; 594 | opacity: 1; 595 | background-color: rgba(255, 255, 255, 0.3); 596 | } 597 | 598 | .testimonials .swiper-pagination .swiper-pagination-bullet-active { 599 | background-color: #18d26e; 600 | } 601 | 602 | /*-------------------------------------------------------------- 603 | # Resume 604 | --------------------------------------------------------------*/ 605 | .resume .resume-title { 606 | font-size: 26px; 607 | font-weight: 700; 608 | margin-top: 20px; 609 | margin-bottom: 20px; 610 | color: #fff; 611 | } 612 | 613 | .resume .resume-item { 614 | padding: 0 0 20px 20px; 615 | margin-top: -2px; 616 | border-left: 2px solid rgba(255, 255, 255, 0.2); 617 | position: relative; 618 | } 619 | 620 | .resume .resume-item h4 { 621 | line-height: 18px; 622 | font-size: 18px; 623 | font-weight: 600; 624 | text-transform: uppercase; 625 | font-family: "Poppins", sans-serif; 626 | color: #18d26e; 627 | margin-bottom: 10px; 628 | } 629 | 630 | .resume .resume-item h5 { 631 | font-size: 16px; 632 | background: rgba(255, 255, 255, 0.15); 633 | padding: 5px 15px; 634 | display: inline-block; 635 | font-weight: 600; 636 | margin-bottom: 10px; 637 | } 638 | 639 | .resume .resume-item ul { 640 | padding-left: 20px; 641 | } 642 | 643 | .resume .resume-item ul li { 644 | padding-bottom: 10px; 645 | } 646 | 647 | .resume .resume-item:last-child { 648 | padding-bottom: 0; 649 | } 650 | 651 | .resume .resume-item::before { 652 | content: ""; 653 | position: absolute; 654 | width: 16px; 655 | height: 16px; 656 | border-radius: 50px; 657 | left: -9px; 658 | top: 0; 659 | background: #18d26e; 660 | border: 2px solid #18d26e; 661 | } 662 | 663 | /*-------------------------------------------------------------- 664 | # Services 665 | --------------------------------------------------------------*/ 666 | .services .icon-box { 667 | text-align: center; 668 | background: rgba(204, 204, 204, 0.1); 669 | padding: 80px 20px; 670 | transition: all ease-in-out 0.3s; 671 | } 672 | 673 | .services .icon-box .icon { 674 | margin: 0 auto; 675 | width: 64px; 676 | height: 64px; 677 | background: #18d26e; 678 | border-radius: 5px; 679 | transition: all .3s ease-out 0s; 680 | display: flex; 681 | align-items: center; 682 | justify-content: center; 683 | margin-bottom: 20px; 684 | transform-style: preserve-3d; 685 | } 686 | 687 | .services .icon-box .icon i { 688 | color: #fff; 689 | font-size: 28px; 690 | } 691 | 692 | .services .icon-box .icon::before { 693 | position: absolute; 694 | content: ''; 695 | left: -8px; 696 | top: -8px; 697 | height: 100%; 698 | width: 100%; 699 | background: rgba(255, 255, 255, 0.15); 700 | border-radius: 5px; 701 | transition: all .3s ease-out 0s; 702 | transform: translateZ(-1px); 703 | } 704 | 705 | .services .icon-box h4 { 706 | font-weight: 700; 707 | margin-bottom: 15px; 708 | font-size: 24px; 709 | } 710 | 711 | .services .icon-box h4 a { 712 | color: #fff; 713 | } 714 | 715 | .services .icon-box p { 716 | line-height: 24px; 717 | font-size: 14px; 718 | margin-bottom: 0; 719 | } 720 | 721 | .services .icon-box:hover { 722 | background: #18d26e; 723 | border-color: #18d26e; 724 | } 725 | 726 | .services .icon-box:hover .icon { 727 | background: #fff; 728 | } 729 | 730 | .services .icon-box:hover .icon i { 731 | color: #18d26e; 732 | } 733 | 734 | .services .icon-box:hover .icon::before { 735 | background: #35e888; 736 | } 737 | 738 | .services .icon-box:hover h4 a, .services .icon-box:hover p { 739 | color: #fff; 740 | } 741 | 742 | /*-------------------------------------------------------------- 743 | # Portfolio 744 | --------------------------------------------------------------*/ 745 | .portfolio .portfolio-item { 746 | margin-bottom: 30px; 747 | } 748 | 749 | .portfolio #portfolio-flters { 750 | padding: 0; 751 | margin: 0 auto 15px auto; 752 | list-style: none; 753 | text-align: center; 754 | border-radius: 50px; 755 | padding: 2px 15px; 756 | } 757 | 758 | .portfolio #portfolio-flters li { 759 | cursor: pointer; 760 | display: inline-block; 761 | padding: 8px 16px 10px 16px; 762 | font-size: 14px; 763 | font-weight: 600; 764 | line-height: 1; 765 | text-transform: uppercase; 766 | color: #fff; 767 | background: rgba(255, 255, 255, 0.1); 768 | margin: 0 3px 10px 3px; 769 | transition: all 0.3s ease-in-out; 770 | border-radius: 4px; 771 | } 772 | 773 | .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active { 774 | background: #18d26e; 775 | } 776 | 777 | .portfolio #portfolio-flters li:last-child { 778 | margin-right: 0; 779 | } 780 | 781 | .portfolio .portfolio-wrap { 782 | transition: 0.3s; 783 | position: relative; 784 | overflow: hidden; 785 | z-index: 1; 786 | background: rgba(0, 0, 0, 0.6); 787 | } 788 | 789 | .portfolio .portfolio-wrap::before { 790 | content: ""; 791 | background: rgba(0, 0, 0, 0.6); 792 | position: absolute; 793 | left: 30px; 794 | right: 30px; 795 | top: 30px; 796 | bottom: 30px; 797 | transition: all ease-in-out 0.3s; 798 | z-index: 2; 799 | opacity: 0; 800 | } 801 | 802 | .portfolio .portfolio-wrap .portfolio-info { 803 | opacity: 0; 804 | position: absolute; 805 | top: 0; 806 | left: 0; 807 | right: 0; 808 | bottom: 0; 809 | text-align: center; 810 | z-index: 3; 811 | transition: all ease-in-out 0.3s; 812 | display: flex; 813 | flex-direction: column; 814 | justify-content: center; 815 | align-items: center; 816 | } 817 | 818 | .portfolio .portfolio-wrap .portfolio-info::before { 819 | display: block; 820 | content: ""; 821 | width: 48px; 822 | height: 48px; 823 | position: absolute; 824 | top: 35px; 825 | left: 35px; 826 | border-top: 3px solid #fff; 827 | border-left: 3px solid #fff; 828 | transition: all 0.5s ease 0s; 829 | z-index: 9994; 830 | } 831 | 832 | .portfolio .portfolio-wrap .portfolio-info::after { 833 | display: block; 834 | content: ""; 835 | width: 48px; 836 | height: 48px; 837 | position: absolute; 838 | bottom: 35px; 839 | right: 35px; 840 | border-bottom: 3px solid #fff; 841 | border-right: 3px solid #fff; 842 | transition: all 0.5s ease 0s; 843 | z-index: 9994; 844 | } 845 | 846 | .portfolio .portfolio-wrap .portfolio-info h4 { 847 | font-size: 20px; 848 | color: #fff; 849 | font-weight: 600; 850 | } 851 | 852 | .portfolio .portfolio-wrap .portfolio-info p { 853 | color: #ffffff; 854 | font-size: 14px; 855 | text-transform: uppercase; 856 | padding: 0; 857 | margin: 0; 858 | } 859 | 860 | .portfolio .portfolio-wrap .portfolio-links { 861 | text-align: center; 862 | z-index: 4; 863 | } 864 | 865 | .portfolio .portfolio-wrap .portfolio-links a { 866 | color: #fff; 867 | margin: 0 2px; 868 | font-size: 28px; 869 | display: inline-block; 870 | transition: 0.3s; 871 | } 872 | 873 | .portfolio .portfolio-wrap .portfolio-links a:hover { 874 | color: #63eda3; 875 | } 876 | 877 | .portfolio .portfolio-wrap:hover::before { 878 | top: 0; 879 | left: 0; 880 | right: 0; 881 | bottom: 0; 882 | opacity: 1; 883 | } 884 | 885 | .portfolio .portfolio-wrap:hover .portfolio-info { 886 | opacity: 1; 887 | } 888 | 889 | .portfolio .portfolio-wrap:hover .portfolio-info::before { 890 | top: 15px; 891 | left: 15px; 892 | } 893 | 894 | .portfolio .portfolio-wrap:hover .portfolio-info::after { 895 | bottom: 15px; 896 | right: 15px; 897 | } 898 | 899 | /*-------------------------------------------------------------- 900 | # Portfolio Details 901 | --------------------------------------------------------------*/ 902 | .portfolio-details { 903 | padding-top: 40px; 904 | background: rgba(0, 0, 0, 0.8); 905 | position: fixed; 906 | left: 0; 907 | right: 0; 908 | top: 0; 909 | bottom: 0; 910 | overflow-y: auto; 911 | } 912 | 913 | .portfolio-details .container { 914 | padding-top: 20px; 915 | padding-bottom: 40px; 916 | } 917 | 918 | .portfolio-details .portfolio-title { 919 | font-size: 26px; 920 | font-weight: 700; 921 | margin-bottom: 20px; 922 | } 923 | 924 | .portfolio-details .portfolio-info { 925 | padding-top: 45px; 926 | } 927 | 928 | .portfolio-details .portfolio-info h3 { 929 | font-size: 22px; 930 | font-weight: 400; 931 | margin-bottom: 20px; 932 | } 933 | 934 | .portfolio-details .portfolio-info ul { 935 | list-style: none; 936 | padding: 0; 937 | font-size: 15px; 938 | } 939 | 940 | .portfolio-details .portfolio-info ul li + li { 941 | margin-top: 10px; 942 | } 943 | 944 | .portfolio-details .portfolio-info p { 945 | font-size: 15px; 946 | padding: 15px 0 0 0; 947 | } 948 | 949 | @media (max-width: 992px) { 950 | .portfolio-details .portfolio-info { 951 | padding-top: 20px; 952 | } 953 | } 954 | 955 | .portfolio-details .swiper-pagination { 956 | margin-top: 20px; 957 | position: relative; 958 | } 959 | 960 | .portfolio-details .swiper-pagination .swiper-pagination-bullet { 961 | width: 12px; 962 | height: 12px; 963 | opacity: 1; 964 | background-color: rgba(255, 255, 255, 0.3); 965 | } 966 | 967 | .portfolio-details .swiper-pagination .swiper-pagination-bullet-active { 968 | background-color: #18d26e; 969 | } 970 | 971 | /*-------------------------------------------------------------- 972 | # Contact 973 | --------------------------------------------------------------*/ 974 | .contact .info-box { 975 | color: #444444; 976 | padding: 20px; 977 | width: 100%; 978 | background: rgba(255, 255, 255, 0.08); 979 | } 980 | 981 | .contact .info-box i.bx { 982 | font-size: 24px; 983 | color: #18d26e; 984 | border-radius: 50%; 985 | padding: 14px; 986 | float: left; 987 | background: rgba(255, 255, 255, 0.1); 988 | } 989 | 990 | .contact .info-box h3 { 991 | font-size: 20px; 992 | color: rgba(255, 255, 255, 0.5); 993 | font-weight: 700; 994 | margin: 10px 0 8px 68px; 995 | } 996 | 997 | .contact .info-box p { 998 | padding: 0; 999 | color: #fff; 1000 | line-height: 24px; 1001 | font-size: 14px; 1002 | margin: 0 0 0 68px; 1003 | } 1004 | 1005 | .contact .info-box .social-links { 1006 | margin: 5px 0 0 68px; 1007 | display: flex; 1008 | } 1009 | 1010 | .contact .info-box .social-links a { 1011 | font-size: 18px; 1012 | display: inline-block; 1013 | color: #fff; 1014 | line-height: 1; 1015 | margin-right: 12px; 1016 | transition: 0.3s; 1017 | } 1018 | 1019 | .contact .info-box .social-links a:hover { 1020 | color: #18d26e; 1021 | } 1022 | 1023 | .contact .php-email-form { 1024 | padding: 30px; 1025 | background: rgba(255, 255, 255, 0.08); 1026 | } 1027 | 1028 | .contact .php-email-form .error-message { 1029 | display: none; 1030 | background: rgba(255, 255, 255, 0.08); 1031 | background: #ed3c0d; 1032 | text-align: left; 1033 | padding: 15px; 1034 | font-weight: 600; 1035 | } 1036 | 1037 | .contact .php-email-form .error-message br + br { 1038 | margin-top: 25px; 1039 | } 1040 | 1041 | .contact .php-email-form .sent-message { 1042 | display: none; 1043 | background: rgba(255, 255, 255, 0.08); 1044 | background: #18d26e; 1045 | text-align: center; 1046 | padding: 15px; 1047 | font-weight: 600; 1048 | } 1049 | 1050 | .contact .php-email-form .loading { 1051 | display: none; 1052 | background: rgba(255, 255, 255, 0.08); 1053 | text-align: center; 1054 | padding: 15px; 1055 | } 1056 | 1057 | .contact .php-email-form .loading:before { 1058 | content: ""; 1059 | display: inline-block; 1060 | border-radius: 50%; 1061 | width: 24px; 1062 | height: 24px; 1063 | margin: 0 10px -6px 0; 1064 | border: 3px solid #18d26e; 1065 | border-top-color: #eee; 1066 | -webkit-animation: animate-loading 1s linear infinite; 1067 | animation: animate-loading 1s linear infinite; 1068 | } 1069 | 1070 | .contact .php-email-form input, .contact .php-email-form textarea { 1071 | border-radius: 0; 1072 | box-shadow: none; 1073 | font-size: 14px; 1074 | background: rgba(255, 255, 255, 0.08); 1075 | border: 0; 1076 | transition: 0.3s; 1077 | color: #fff; 1078 | } 1079 | 1080 | .contact .php-email-form input:focus, .contact .php-email-form textarea:focus { 1081 | background-color: rgba(255, 255, 255, 0.11); 1082 | } 1083 | 1084 | .contact .php-email-form input::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder { 1085 | color: rgba(255, 255, 255, 0.3); 1086 | opacity: 1; 1087 | } 1088 | 1089 | .contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder { 1090 | color: rgba(255, 255, 255, 0.3); 1091 | opacity: 1; 1092 | } 1093 | 1094 | .contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder { 1095 | color: rgba(255, 255, 255, 0.3); 1096 | opacity: 1; 1097 | } 1098 | 1099 | .contact .php-email-form input { 1100 | padding: 10px 15px; 1101 | } 1102 | 1103 | .contact .php-email-form textarea { 1104 | padding: 12px 15px; 1105 | } 1106 | 1107 | .contact .php-email-form button[type="submit"] { 1108 | background: #18d26e; 1109 | border: 0; 1110 | padding: 10px 30px; 1111 | color: #fff; 1112 | transition: 0.4s; 1113 | border-radius: 4px; 1114 | } 1115 | 1116 | .contact .php-email-form button[type="submit"]:hover { 1117 | background: #15bb62; 1118 | } 1119 | 1120 | @-webkit-keyframes animate-loading { 1121 | 0% { 1122 | transform: rotate(0deg); 1123 | } 1124 | 100% { 1125 | transform: rotate(360deg); 1126 | } 1127 | } 1128 | 1129 | @keyframes animate-loading { 1130 | 0% { 1131 | transform: rotate(0deg); 1132 | } 1133 | 100% { 1134 | transform: rotate(360deg); 1135 | } 1136 | } 1137 | 1138 | /*-------------------------------------------------------------- 1139 | # Credits 1140 | --------------------------------------------------------------*/ 1141 | .credits { 1142 | position: fixed; 1143 | right: 0; 1144 | left: 0; 1145 | bottom: 0; 1146 | padding: 15px; 1147 | text-align: right; 1148 | font-size: 10px; 1149 | color: #fff; 1150 | z-index: 999999; 1151 | } 1152 | 1153 | @media (max-width: 992px) { 1154 | .credits { 1155 | text-align: center; 1156 | padding: 10px; 1157 | background: rgba(0, 0, 0, 0.8); 1158 | } 1159 | } 1160 | 1161 | .credits a { 1162 | color: #18d26e; 1163 | transition: 0.3s; 1164 | } 1165 | 1166 | .credits a:hover { 1167 | color: #fff; 1168 | } 1169 | -------------------------------------------------------------------------------- /assets/vendor/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["../scss/bootstrap-reboot.scss","../scss/_reboot.scss","dist/css/bootstrap-reboot.css","../scss/vendor/_rfs.scss","../scss/mixins/_border-radius.scss"],"names":[],"mappings":"AAAA;;;;;;ACeA,ECNA,QADA,SDUE,WAAA,WAaE,8CAJJ,MAKM,gBAAA,QAaN,KACE,OAAA,EACA,YAAA,SAAA,CAAA,aAAA,CAAA,UAAA,CAAA,MAAA,CAAA,gBAAA,CAAA,KAAA,CAAA,WAAA,CAAA,iBAAA,CAAA,UAAA,CAAA,mBAAA,CAAA,gBAAA,CAAA,iBAAA,CAAA,mBE4MI,UAAA,KF1MJ,YAAA,IACA,YAAA,IACA,MAAA,QAEA,iBAAA,KACA,yBAAA,KACA,4BAAA,YASF,GACE,OAAA,KAAA,EACA,MAAA,QACA,iBAAA,aACA,OAAA,EACA,QAAA,IAGF,eACE,OAAA,IAUF,GAAA,GAAA,GAAA,GAAA,GAAA,GACE,WAAA,EACA,cAAA,MAGA,YAAA,IACA,YAAA,IAIF,GEkKQ,UAAA,uBAlKJ,0BFAJ,GEyKQ,UAAA,QFpKR,GE6JQ,UAAA,sBAlKJ,0BFKJ,GEoKQ,UAAA,MF/JR,GEwJQ,UAAA,oBAlKJ,0BFUJ,GE+JQ,UAAA,SF1JR,GEmJQ,UAAA,sBAlKJ,0BFeJ,GE0JQ,UAAA,QFrJR,GE0IM,UAAA,QFrIN,GEqIM,UAAA,KF1HN,EACE,WAAA,EACA,cAAA,KC/BF,6BD0CA,YAEE,wBAAA,UAAA,OAAA,gBAAA,UAAA,OACA,OAAA,KACA,iCAAA,KAAA,yBAAA,KAMF,QACE,cAAA,KACA,WAAA,OACA,YAAA,QAMF,GC9CA,GDgDE,aAAA,KC1CF,GD6CA,GC9CA,GDiDE,WAAA,EACA,cAAA,KAGF,MC7CA,MACA,MAFA,MDkDE,cAAA,EAGF,GACE,YAAA,IAKF,GACE,cAAA,MACA,YAAA,EAMF,WACE,OAAA,EAAA,EAAA,KAQF,ECxDA,OD0DE,YAAA,OAQF,MEsCM,UAAA,OF/BN,KACE,QAAA,KACA,iBAAA,QASF,ICtEA,IDwEE,SAAA,SEkBI,UAAA,MFhBJ,YAAA,EACA,eAAA,SAGF,IAAM,OAAA,OACN,IAAM,IAAA,MAKN,EACE,MAAA,QACA,gBAAA,UAEA,QACE,MAAA,QAWF,2BAAA,iCAEE,MAAA,QACA,gBAAA,KC1EJ,KACA,IDgFA,IC/EA,KDmFE,YAAA,cAAA,CAAA,KAAA,CAAA,MAAA,CAAA,QAAA,CAAA,iBAAA,CAAA,aAAA,CAAA,UExBI,UAAA,IF0BJ,UAAA,IACA,aAAA,cAOF,IACE,QAAA,MACA,WAAA,EACA,cAAA,KACA,SAAA,KEtCI,UAAA,OF2CJ,SE3CI,UAAA,QF6CF,MAAA,QACA,WAAA,OAIJ,KElDM,UAAA,OFoDJ,MAAA,QACA,UAAA,WAGA,OACE,MAAA,QAIJ,IACE,QAAA,MAAA,ME9DI,UAAA,OFgEJ,MAAA,KACA,iBAAA,QGzSE,cAAA,MH4SF,QACE,QAAA,EErEE,UAAA,IFuEF,YAAA,IASJ,OACE,OAAA,EAAA,EAAA,KAMF,ICnGA,IDqGE,eAAA,OAQF,MACE,aAAA,OACA,gBAAA,SAGF,QACE,YAAA,MACA,eAAA,MACA,MAAA,QACA,WAAA,KAOF,GAEE,WAAA,QACA,WAAA,qBC1GF,MAGA,GAFA,MAGA,GDyGA,MC3GA,GDiHE,aAAA,QACA,aAAA,MACA,aAAA,EAQF,MACE,QAAA,aAMF,OAEE,cAAA,EAQF,iCACE,QAAA,ECxHF,OD6HA,MC3HA,SADA,OAEA,SD+HE,OAAA,EACA,YAAA,QEpKI,UAAA,QFsKJ,YAAA,QAIF,OC9HA,ODgIE,eAAA,KAKF,cACE,OAAA,QAGF,OAGE,UAAA,OAGA,gBACE,QAAA,EAOJ,0CACE,QAAA,KCpIF,cACA,aACA,cD0IA,OAIE,mBAAA,OC1IF,6BACA,4BACA,6BD2II,sBACE,OAAA,QAON,mBACE,QAAA,EACA,aAAA,KAKF,SACE,OAAA,SAUF,SACE,UAAA,EACA,QAAA,EACA,OAAA,EACA,OAAA,EAQF,OACE,MAAA,KACA,MAAA,KACA,QAAA,EACA,cAAA,MEzPM,UAAA,sBF4PN,YAAA,QE9ZE,0BFuZJ,OE9OQ,UAAA,QFuPN,SACE,MAAA,KClJJ,kCDyJA,uCC1JA,mCADA,+BAGA,oCAJA,6BAKA,mCD8JE,QAAA,EAGF,4BACE,OAAA,KASF,cACE,eAAA,KACA,mBAAA,UAmBF,4BACE,mBAAA,KAKF,+BACE,QAAA,EAMF,uBACE,KAAA,QAMF,6BACE,KAAA,QACA,mBAAA,OAKF,OACE,QAAA,aAKF,OACE,OAAA,EAOF,QACE,QAAA,UACA,OAAA,QAQF,SACE,eAAA,SAQF,SACE,QAAA","sourcesContent":["/*!\n * Bootstrap Reboot v5.0.0-beta3 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)\n */\n\n@import \"functions\";\n@import \"variables\";\n// Prevent the usage of custom properties since we don't add them to `:root` in reboot\n$font-family-base: $font-family-sans-serif; // stylelint-disable-line scss/dollar-variable-default\n$font-family-code: $font-family-monospace; // stylelint-disable-line scss/dollar-variable-default\n@import \"mixins\";\n@import \"reboot\";\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n font-size: $font-size-root;\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n @include font-size($font-size-base);\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: $body-text-align;\n background-color: $body-bg; // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n// 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n background-color: currentColor;\n border: 0;\n opacity: $hr-opacity;\n}\n\nhr:not([size]) {\n height: $hr-height; // 2\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-bs-original-title] { // 1\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n text-decoration-skip-ink: none; // 4\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n direction: ltr #{\"/* rtl:ignore */\"};\n unicode-bidi: bidi-override;\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-`