├── README.md ├── css ├── _about.css ├── _price.css ├── _courses.css ├── _feature.css ├── _gallery.css ├── _service.css ├── _instagram.css ├── breadcrumb.css ├── _about.css.map ├── _courses.css.map ├── _feature.css.map ├── _gallery.css.map ├── _instagram.css.map ├── _price.css.map ├── _service.css.map ├── _testimonials.css ├── breadcrumb.css.map ├── _testimonials.css.map └── responsive.css ├── img ├── logo.png ├── banner-2.jpg ├── favicon.png ├── personal.jpg ├── skills │ ├── html.png │ ├── image1.png │ ├── image14.png │ ├── image15.png │ ├── image16.png │ ├── image2.png │ ├── image3.png │ ├── image8.png │ ├── image9.png │ ├── music.png │ ├── creative.jpg │ ├── rsz_untitled_design_21.png │ ├── rsz_untitled_design_22.png │ ├── rsz_untitled_design_23.png │ ├── rsz_untitled_design_24.png │ ├── rsz_untitled_design_31.png │ ├── rsz_untitled_design_32.png │ ├── rsz_untitled_design_35.png │ ├── rsz_1untitled_design_18.png │ ├── rsz_rsz_untitled_design_.png │ └── rsz_rsz_untitled_design_11.png ├── blog │ └── personal.jpg ├── project │ ├── bomb.jpg │ ├── ebook.jpg │ ├── fbhack.jpg │ ├── ghunt.jpg │ ├── insta.jpg │ ├── john.jpg │ ├── mysql.jpg │ ├── osint.jpg │ ├── port.jpg │ ├── termux.jpg │ ├── wabot.jpg │ ├── zoom.jpg │ ├── location.jpg │ ├── malware.jpg │ ├── payload.jpg │ ├── phishing.jpg │ ├── plugins.jpg │ ├── telegram.jpg │ ├── OSINT-Tools.jpg │ ├── android pin.jpg │ ├── androidhack.jpg │ ├── bruteforce.jpg │ ├── camerahack.jpg │ ├── instahack.jpg │ ├── interesting.jpg │ ├── ip-tracker.jpg │ ├── phoneinfoga.jpg │ ├── windows11.jpg │ ├── Hacking-tools.jpg │ ├── hack-windows.jpg │ └── texttohandwriting.jpg ├── banner │ ├── banner-2.jpg │ └── banner │ │ └── banner-2.jpg └── microsoftcertificate.jpg ├── flaticon ├── Flaticon.eot ├── Flaticon.ttf ├── Flaticon.woff ├── _flaticon.css.map ├── flaticon.css ├── _flaticon.css └── _flaticon.scss ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff └── fontawesome-webfont.woff2 ├── emoji ├── Untitled design.png └── Untitled design1.png ├── vendors ├── linericon │ ├── fonts │ │ ├── Linearicons-Free.eot │ │ ├── Linearicons-Free.ttf │ │ ├── Linearicons-Free.woff │ │ └── Linearicons-Free.woff2 │ └── style.css ├── owl-carousel │ ├── assets │ │ ├── ajax-loader.gif │ │ └── owl.carousel.css │ └── owl.carousel.min.css ├── bootstrap-icons │ └── fonts │ │ ├── bootstrap-icons.woff │ │ └── bootstrap-icons.woff2 ├── counter-up │ ├── jquery.counterup.min.js │ └── jquery.waypoints.min.js ├── nice-select │ ├── js │ │ ├── jquery.nice-select.min.js │ │ └── jquery.nice-select.js │ └── css │ │ ├── nice-select.css │ │ └── style.css ├── bootstrap-datepicker │ ├── bootstrap-select.css │ └── bootstrap-datetimepicker.min.css ├── lightbox │ ├── simpleLightbox.min.js │ └── simpleLightbox.css ├── isotope │ └── imagesloaded.pkgd.min.js ├── animate-css │ └── wow.min.js └── popup │ └── magnific-popup.css ├── scss ├── _variables.scss ├── _testimonials.scss ├── _predefine.scss ├── _gallery.scss ├── _footer.scss ├── style.scss ├── _button.scss ├── breadcrumb.scss ├── _contact.scss ├── _header.scss └── _feature.scss ├── js ├── mail-script.js ├── contact.js ├── jquery.ajaxchimp.min.js └── custom.js └── about-me.html /README.md: -------------------------------------------------------------------------------- 1 | # portfolio2 2 | -------------------------------------------------------------------------------- /css/_about.css: -------------------------------------------------------------------------------- 1 | 2 | /*# sourceMappingURL=_about.css.map */ -------------------------------------------------------------------------------- /css/_price.css: -------------------------------------------------------------------------------- 1 | 2 | /*# sourceMappingURL=_price.css.map */ -------------------------------------------------------------------------------- /css/_courses.css: -------------------------------------------------------------------------------- 1 | 2 | /*# sourceMappingURL=_courses.css.map */ -------------------------------------------------------------------------------- /css/_feature.css: -------------------------------------------------------------------------------- 1 | 2 | /*# sourceMappingURL=_feature.css.map */ -------------------------------------------------------------------------------- /css/_gallery.css: -------------------------------------------------------------------------------- 1 | 2 | /*# sourceMappingURL=_gallery.css.map */ -------------------------------------------------------------------------------- /css/_service.css: -------------------------------------------------------------------------------- 1 | 2 | /*# sourceMappingURL=_service.css.map */ -------------------------------------------------------------------------------- /css/_instagram.css: -------------------------------------------------------------------------------- 1 | 2 | /*# sourceMappingURL=_instagram.css.map */ -------------------------------------------------------------------------------- /css/breadcrumb.css: -------------------------------------------------------------------------------- 1 | 2 | /*# sourceMappingURL=breadcrumb.css.map */ -------------------------------------------------------------------------------- /css/_about.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":""} -------------------------------------------------------------------------------- /css/_courses.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":""} -------------------------------------------------------------------------------- /css/_feature.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":""} -------------------------------------------------------------------------------- /css/_gallery.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":""} -------------------------------------------------------------------------------- /css/_instagram.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":""} -------------------------------------------------------------------------------- /css/_price.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":""} -------------------------------------------------------------------------------- /css/_service.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":""} -------------------------------------------------------------------------------- /css/_testimonials.css: -------------------------------------------------------------------------------- 1 | 2 | /*# sourceMappingURL=_testimonials.css.map */ -------------------------------------------------------------------------------- /css/breadcrumb.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":""} -------------------------------------------------------------------------------- /css/_testimonials.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":[],"names":[],"mappings":""} -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/banner-2.jpg -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/personal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/personal.jpg -------------------------------------------------------------------------------- /img/skills/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/html.png -------------------------------------------------------------------------------- /flaticon/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/flaticon/Flaticon.eot -------------------------------------------------------------------------------- /flaticon/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/flaticon/Flaticon.ttf -------------------------------------------------------------------------------- /flaticon/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/flaticon/Flaticon.woff -------------------------------------------------------------------------------- /fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /img/blog/personal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/blog/personal.jpg -------------------------------------------------------------------------------- /img/project/bomb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/bomb.jpg -------------------------------------------------------------------------------- /img/project/ebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/ebook.jpg -------------------------------------------------------------------------------- /img/project/fbhack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/fbhack.jpg -------------------------------------------------------------------------------- /img/project/ghunt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/ghunt.jpg -------------------------------------------------------------------------------- /img/project/insta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/insta.jpg -------------------------------------------------------------------------------- /img/project/john.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/john.jpg -------------------------------------------------------------------------------- /img/project/mysql.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/mysql.jpg -------------------------------------------------------------------------------- /img/project/osint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/osint.jpg -------------------------------------------------------------------------------- /img/project/port.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/port.jpg -------------------------------------------------------------------------------- /img/project/termux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/termux.jpg -------------------------------------------------------------------------------- /img/project/wabot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/wabot.jpg -------------------------------------------------------------------------------- /img/project/zoom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/zoom.jpg -------------------------------------------------------------------------------- /img/skills/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/image1.png -------------------------------------------------------------------------------- /img/skills/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/image14.png -------------------------------------------------------------------------------- /img/skills/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/image15.png -------------------------------------------------------------------------------- /img/skills/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/image16.png -------------------------------------------------------------------------------- /img/skills/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/image2.png -------------------------------------------------------------------------------- /img/skills/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/image3.png -------------------------------------------------------------------------------- /img/skills/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/image8.png -------------------------------------------------------------------------------- /img/skills/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/image9.png -------------------------------------------------------------------------------- /img/skills/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/music.png -------------------------------------------------------------------------------- /img/banner/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/banner/banner-2.jpg -------------------------------------------------------------------------------- /img/project/location.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/location.jpg -------------------------------------------------------------------------------- /img/project/malware.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/malware.jpg -------------------------------------------------------------------------------- /img/project/payload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/payload.jpg -------------------------------------------------------------------------------- /img/project/phishing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/phishing.jpg -------------------------------------------------------------------------------- /img/project/plugins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/plugins.jpg -------------------------------------------------------------------------------- /img/project/telegram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/telegram.jpg -------------------------------------------------------------------------------- /img/skills/creative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/creative.jpg -------------------------------------------------------------------------------- /emoji/Untitled design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/emoji/Untitled design.png -------------------------------------------------------------------------------- /emoji/Untitled design1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/emoji/Untitled design1.png -------------------------------------------------------------------------------- /img/project/OSINT-Tools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/OSINT-Tools.jpg -------------------------------------------------------------------------------- /img/project/android pin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/android pin.jpg -------------------------------------------------------------------------------- /img/project/androidhack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/androidhack.jpg -------------------------------------------------------------------------------- /img/project/bruteforce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/bruteforce.jpg -------------------------------------------------------------------------------- /img/project/camerahack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/camerahack.jpg -------------------------------------------------------------------------------- /img/project/instahack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/instahack.jpg -------------------------------------------------------------------------------- /img/project/interesting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/interesting.jpg -------------------------------------------------------------------------------- /img/project/ip-tracker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/ip-tracker.jpg -------------------------------------------------------------------------------- /img/project/phoneinfoga.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/phoneinfoga.jpg -------------------------------------------------------------------------------- /img/project/windows11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/windows11.jpg -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /img/microsoftcertificate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/microsoftcertificate.jpg -------------------------------------------------------------------------------- /img/project/Hacking-tools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/Hacking-tools.jpg -------------------------------------------------------------------------------- /img/project/hack-windows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/hack-windows.jpg -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /img/banner/banner/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/banner/banner/banner-2.jpg -------------------------------------------------------------------------------- /img/project/texttohandwriting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/project/texttohandwriting.jpg -------------------------------------------------------------------------------- /img/skills/rsz_untitled_design_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/rsz_untitled_design_21.png -------------------------------------------------------------------------------- /img/skills/rsz_untitled_design_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/rsz_untitled_design_22.png -------------------------------------------------------------------------------- /img/skills/rsz_untitled_design_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/rsz_untitled_design_23.png -------------------------------------------------------------------------------- /img/skills/rsz_untitled_design_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/rsz_untitled_design_24.png -------------------------------------------------------------------------------- /img/skills/rsz_untitled_design_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/rsz_untitled_design_31.png -------------------------------------------------------------------------------- /img/skills/rsz_untitled_design_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/rsz_untitled_design_32.png -------------------------------------------------------------------------------- /img/skills/rsz_untitled_design_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/rsz_untitled_design_35.png -------------------------------------------------------------------------------- /img/skills/rsz_1untitled_design_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/rsz_1untitled_design_18.png -------------------------------------------------------------------------------- /img/skills/rsz_rsz_untitled_design_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/rsz_rsz_untitled_design_.png -------------------------------------------------------------------------------- /img/skills/rsz_rsz_untitled_design_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/img/skills/rsz_rsz_untitled_design_11.png -------------------------------------------------------------------------------- /vendors/linericon/fonts/Linearicons-Free.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/vendors/linericon/fonts/Linearicons-Free.eot -------------------------------------------------------------------------------- /vendors/linericon/fonts/Linearicons-Free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/vendors/linericon/fonts/Linearicons-Free.ttf -------------------------------------------------------------------------------- /vendors/owl-carousel/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/vendors/owl-carousel/assets/ajax-loader.gif -------------------------------------------------------------------------------- /vendors/linericon/fonts/Linearicons-Free.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/vendors/linericon/fonts/Linearicons-Free.woff -------------------------------------------------------------------------------- /vendors/linericon/fonts/Linearicons-Free.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/vendors/linericon/fonts/Linearicons-Free.woff2 -------------------------------------------------------------------------------- /vendors/bootstrap-icons/fonts/bootstrap-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/vendors/bootstrap-icons/fonts/bootstrap-icons.woff -------------------------------------------------------------------------------- /vendors/bootstrap-icons/fonts/bootstrap-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALBINPRAVEEN/portfolio2/HEAD/vendors/bootstrap-icons/fonts/bootstrap-icons.woff2 -------------------------------------------------------------------------------- /flaticon/_flaticon.css.map: -------------------------------------------------------------------------------- 1 | {"version":3,"sources":["_flaticon.scss","_flaticon.css"],"names":[],"mappings":"AAAI;;;MAGE;AAEF;EACF,wBAAuB;EACvB,2BAA0B;EAC1B,6LAGiD;EACjD,oBAAmB;EACnB,mBAAkB;CCHnB;;ADMD;EACE;IACE,wBAAuB;IACvB,kDAAiD;GCHlD;CACF;;ADMG;EACI,sBAAqB;EAC3B,wBAAuB;EACvB,mBAAkB;EAClB,oBAAmB;EACnB,qBAAoB;EACpB,eAAc;EACd,yBAAwB;EACxB,mCAAkC;EAClC,qBAAoB;EACpB,mCAAkC;EAClC,oCAAmC;EACnC,4BAA2B;CACxB;;AAED;EAA2B,iBAAgB;CAAI;;AACnD;EAA0B,iBAAgB;CAAI;;AAC9C;EAAwB,iBAAgB;CAAI"} -------------------------------------------------------------------------------- /scss/_variables.scss: -------------------------------------------------------------------------------- 1 | /*font Variables*/ 2 | $rob: 'Roboto', sans-serif; 3 | $hee: 'Heebo', sans-serif; 4 | 5 | 6 | /*Color Variables*/ 7 | $baseColor: #766dff; 8 | $dip: #222222; 9 | $pfont: #777777; 10 | 11 | 12 | /*=================== fonts ====================*/ 13 | @import url('https://fonts.googleapis.com/css?family=Heebo:300,400,700,900|Roboto:300,400,500,700'); 14 | 15 | // Mixins 16 | @mixin transition($property: all, $duration: 300ms, $animate: linear, $delay:0s){ 17 | transition: $property $duration $animate $delay; 18 | } 19 | 20 | // Placeholder Mixins 21 | 22 | @mixin placeholder { 23 | &.placeholder { @content; } 24 | &:-moz-placeholder { @content; } 25 | &::-moz-placeholder { @content; } 26 | &::-webkit-input-placeholder { @content; } 27 | } 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /flaticon/flaticon.css: -------------------------------------------------------------------------------- 1 | /* 2 | Flaticon icon font: Flaticon 3 | Creation date: 26/06/2018 17:19 4 | */ 5 | 6 | @font-face { 7 | font-family: "Flaticon"; 8 | src: url("./Flaticon.eot"); 9 | src: url("./Flaticon.eot?#iefix") format("embedded-opentype"), 10 | url("./Flaticon.woff") format("woff"), 11 | url("./Flaticon.ttf") format("truetype"), 12 | url("./Flaticon.svg#Flaticon") format("svg"); 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | 17 | @media screen and (-webkit-min-device-pixel-ratio:0) { 18 | @font-face { 19 | font-family: "Flaticon"; 20 | src: url("./Flaticon.svg#Flaticon") format("svg"); 21 | } 22 | } 23 | 24 | [class^="flaticon-"]:before, [class*=" flaticon-"]:before, 25 | [class^="flaticon-"]:after, [class*=" flaticon-"]:after { 26 | font-family: Flaticon; 27 | font-size: 20px; 28 | font-style: normal; 29 | margin-left: 20px; 30 | } 31 | 32 | .flaticon-skyline:before { content: "\f100"; } 33 | .flaticon-sketch:before { content: "\f101"; } 34 | .flaticon-city:before { content: "\f102"; } -------------------------------------------------------------------------------- /flaticon/_flaticon.css: -------------------------------------------------------------------------------- 1 | /* 2 | Flaticon icon font: Flaticon 3 | Creation date: 26/06/2018 17:19 4 | */ 5 | @font-face { 6 | font-family: "Flaticon"; 7 | src: url("./Flaticon.eot"); 8 | src: url("./Flaticon.eot?#iefix") format("embedded-opentype"), url("./Flaticon.woff") format("woff"), url("./Flaticon.ttf") format("truetype"), url("./Flaticon.svg#Flaticon") format("svg"); 9 | font-weight: normal; 10 | font-style: normal; 11 | } 12 | 13 | @media screen and (-webkit-min-device-pixel-ratio: 0) { 14 | @font-face { 15 | font-family: "Flaticon"; 16 | src: url("./Flaticon.svg#Flaticon") format("svg"); 17 | } 18 | } 19 | 20 | .fi:before { 21 | display: inline-block; 22 | font-family: "Flaticon"; 23 | font-style: normal; 24 | font-weight: normal; 25 | font-variant: normal; 26 | line-height: 1; 27 | text-decoration: inherit; 28 | text-rendering: optimizeLegibility; 29 | text-transform: none; 30 | -moz-osx-font-smoothing: grayscale; 31 | -webkit-font-smoothing: antialiased; 32 | font-smoothing: antialiased; 33 | } 34 | 35 | .flaticon-skyline:before { 36 | content: "\f100"; 37 | } 38 | 39 | .flaticon-sketch:before { 40 | content: "\f101"; 41 | } 42 | 43 | .flaticon-city:before { 44 | content: "\f102"; 45 | } 46 | 47 | /*# sourceMappingURL=_flaticon.css.map */ -------------------------------------------------------------------------------- /js/mail-script.js: -------------------------------------------------------------------------------- 1 | // ------- Mail Send ajax 2 | 3 | $(document).ready(function() { 4 | var form = $('#myForm'); // contact form 5 | var submit = $('.submit-btn'); // submit button 6 | var alert = $('.alert-msg'); // alert div for show alert message 7 | 8 | // form submit event 9 | form.on('submit', function(e) { 10 | e.preventDefault(); // prevent default form submit 11 | 12 | $.ajax({ 13 | url: 'mail.php', // form action url 14 | type: 'POST', // form submit method get/post 15 | dataType: 'html', // request type html/json/xml 16 | data: form.serialize(), // serialize form data 17 | beforeSend: function() { 18 | alert.fadeOut(); 19 | submit.html('Sending....'); // change submit button text 20 | }, 21 | success: function(data) { 22 | alert.html(data).fadeIn(); // fade in response data 23 | form.trigger('reset'); // reset form 24 | submit.attr("style", "display: none !important");; // reset submit button text 25 | }, 26 | error: function(e) { 27 | console.log(e) 28 | } 29 | }); 30 | }); 31 | }); -------------------------------------------------------------------------------- /flaticon/_flaticon.scss: -------------------------------------------------------------------------------- 1 | /* 2 | Flaticon icon font: Flaticon 3 | Creation date: 26/06/2018 17:19 4 | */ 5 | 6 | @font-face { 7 | font-family: "Flaticon"; 8 | src: url("./Flaticon.eot"); 9 | src: url("./Flaticon.eot?#iefix") format("embedded-opentype"), 10 | url("./Flaticon.woff") format("woff"), 11 | url("./Flaticon.ttf") format("truetype"), 12 | url("./Flaticon.svg#Flaticon") format("svg"); 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | 17 | @media screen and (-webkit-min-device-pixel-ratio:0) { 18 | @font-face { 19 | font-family: "Flaticon"; 20 | src: url("./Flaticon.svg#Flaticon") format("svg"); 21 | } 22 | } 23 | 24 | .fi:before{ 25 | display: inline-block; 26 | font-family: "Flaticon"; 27 | font-style: normal; 28 | font-weight: normal; 29 | font-variant: normal; 30 | line-height: 1; 31 | text-decoration: inherit; 32 | text-rendering: optimizeLegibility; 33 | text-transform: none; 34 | -moz-osx-font-smoothing: grayscale; 35 | -webkit-font-smoothing: antialiased; 36 | font-smoothing: antialiased; 37 | } 38 | 39 | .flaticon-skyline:before { content: "\f100"; } 40 | .flaticon-sketch:before { content: "\f101"; } 41 | .flaticon-city:before { content: "\f102"; } 42 | 43 | $font-Flaticon-skyline: "\f100"; 44 | $font-Flaticon-sketch: "\f101"; 45 | $font-Flaticon-city: "\f102"; -------------------------------------------------------------------------------- /scss/_testimonials.scss: -------------------------------------------------------------------------------- 1 | /* Testimonials Area css 2 | ============================================================================================ */ 3 | .testimonials_area{ 4 | background: #f9f9ff; 5 | &.testi_two{ 6 | background: #fff; 7 | .testi_inner{ 8 | margin-top: -20px; 9 | margin-bottom: -20px; 10 | } 11 | .owl-item { 12 | padding: 20px 0px; 13 | } 14 | .testi_item{ 15 | background: #f9f9ff; 16 | border-color: #f9f9ff; 17 | @include transition; 18 | &:hover{ 19 | background: #fff; 20 | border-color: #fff; 21 | box-shadow: 0px 10px 30px 0px rgba(153, 153, 153, 0.1); 22 | } 23 | } 24 | } 25 | } 26 | .testi_inner{ 27 | .col-lg-3{ 28 | vertical-align: middle; 29 | align-self: center; 30 | } 31 | } 32 | .test_title{ 33 | h2{ 34 | color: $dip; 35 | font-size: 36px; 36 | font-family: $rob; 37 | font-weight: bold; 38 | margin-bottom: 12px; 39 | } 40 | p{ 41 | margin-bottom: 0px; 42 | } 43 | } 44 | .testi_item{ 45 | border: 1px solid #eeeeee; 46 | border-radius: 10px; 47 | background: #fff; 48 | padding: 40px 28px; 49 | p{ 50 | font-style: italic; 51 | } 52 | h4{ 53 | color: $dip; 54 | font-size: 18px; 55 | text-transform: uppercase; 56 | } 57 | a{ 58 | color: #ffc000; 59 | } 60 | } 61 | /* End Testimonials Area css 62 | ============================================================================================ */ -------------------------------------------------------------------------------- /scss/_predefine.scss: -------------------------------------------------------------------------------- 1 | .list{ 2 | list-style: none; 3 | margin: 0px; 4 | padding: 0px; 5 | } 6 | 7 | a{ 8 | text-decoration:none; 9 | transition: all 0.3s ease-in-out; 10 | &:hover, &:focus{ 11 | text-decoration:none; 12 | outline: none; 13 | } 14 | } 15 | .row.m0{ 16 | margin: 0px; 17 | } 18 | 19 | body{ 20 | line-height: 26px; 21 | font-size: 16px; 22 | font-family: $rob; 23 | font-weight: normal; 24 | color: $pfont; 25 | } 26 | h1, h2, h3, h4, h5, h6{ 27 | font-family: $hee; 28 | font-weight: bold; 29 | } 30 | 31 | button:focus{ 32 | outline: none; 33 | box-shadow: none; 34 | } 35 | .p0{ 36 | padding-left: 0px; 37 | padding-right: 0px; 38 | } 39 | .p_120{ 40 | padding-top: 120px; 41 | padding-bottom: 120px; 42 | } 43 | .p_100{ 44 | padding-top: 100px; 45 | padding-bottom: 100px; 46 | } 47 | .pad_top{ 48 | padding-top: 120px; 49 | } 50 | .pad_bt{ 51 | padding-bottom: 120px; 52 | } 53 | .mt-25{ 54 | margin-top: 25px; 55 | } 56 | .container{ 57 | @media(min-width:1200px){ 58 | max-width: 1170px; 59 | } 60 | } 61 | @media(min-width: 1620px){ 62 | .box_1620{ 63 | max-width: 1620px; 64 | margin: auto; 65 | width: 100%; 66 | padding-left: 0px; 67 | padding-right: 0px; 68 | } 69 | } 70 | 71 | 72 | /* Main Title Area css 73 | ============================================================================================ */ 74 | .main_title{ 75 | text-align: center; 76 | max-width: 670px; 77 | margin: 0px auto 75px; 78 | h2{ 79 | font-family: $hee; 80 | font-size: 36px; 81 | color: $dip; 82 | margin-bottom: 15px; 83 | text-transform: uppercase; 84 | } 85 | p{ 86 | font-size: 16px; 87 | font-family: $rob; 88 | font-weight: normal; 89 | line-height: 26px; 90 | color: $pfont; 91 | margin-bottom: 0px; 92 | } 93 | } 94 | 95 | /* End Main Title Area css 96 | ============================================================================================ */ 97 | 98 | 99 | 100 | -------------------------------------------------------------------------------- /vendors/counter-up/jquery.counterup.min.js: -------------------------------------------------------------------------------- 1 | (function($){"use strict";$.fn.counterUp=function(options){var settings=$.extend({time:400,delay:10,offset:100,beginAt:0,formatter:false,context:"window",callback:function(){}},options),s;return this.each(function(){var $this=$(this),counter={time:$(this).data("counterup-time")||settings.time,delay:$(this).data("counterup-delay")||settings.delay,offset:$(this).data("counterup-offset")||settings.offset,beginAt:$(this).data("counterup-beginat")||settings.beginAt,context:$(this).data("counterup-context")||settings.context};var counterUpper=function(){var nums=[];var divisions=counter.time/counter.delay;var num=$(this).attr("data-num")?$(this).attr("data-num"):$this.text();var isComma=/[0-9]+,[0-9]+/.test(num);num=num.replace(/,/g,"");var decimalPlaces=(num.split(".")[1]||[]).length;if(counter.beginAt>num)counter.beginAt=num;var isTime=/[0-9]+:[0-9]+:[0-9]+/.test(num);if(isTime){var times=num.split(":"),m=1;s=0;while(times.length>0){s+=m*parseInt(times.pop(),10);m*=60}}for(var i=divisions;i>=counter.beginAt/num*divisions;i--){var newNum=parseFloat(num/divisions*i).toFixed(decimalPlaces);if(isTime){newNum=parseInt(s/divisions*i);var hours=parseInt(newNum/3600)%24;var minutes=parseInt(newNum/60)%60;var seconds=parseInt(newNum%60,10);newNum=(hours<10?"0"+hours:hours)+":"+(minutes<10?"0"+minutes:minutes)+":"+(seconds<10?"0"+seconds:seconds)}if(isComma){while(/(\d+)(\d{3})/.test(newNum.toString())){newNum=newNum.toString().replace(/(\d+)(\d{3})/,"$1"+","+"$2")}}if(settings.formatter){newNum=settings.formatter.call(this,newNum)}nums.unshift(newNum)}$this.data("counterup-nums",nums);$this.text(counter.beginAt);var f=function(){if(!$this.data("counterup-nums")){settings.callback.call(this);return}$this.html($this.data("counterup-nums").shift());if($this.data("counterup-nums").length){setTimeout($this.data("counterup-func"),counter.delay)}else{$this.data("counterup-nums",null);$this.data("counterup-func",null);settings.callback.call(this)}};$this.data("counterup-func",f);setTimeout($this.data("counterup-func"),counter.delay)};$this.waypoint(function(direction){counterUpper();this.destroy()},{offset:counter.offset+"%",context:counter.context})})}})(jQuery); 2 | -------------------------------------------------------------------------------- /scss/_gallery.scss: -------------------------------------------------------------------------------- 1 | /* Gallery Area css 2 | ============================================================================================ */ 3 | .home_gallery_area{ 4 | 5 | } 6 | .isotope_fillter{ 7 | margin-bottom: 50px; 8 | .gallery_filter{ 9 | text-align: center; 10 | li{ 11 | display: inline-block; 12 | margin-right: 45px; 13 | &:last-child{ 14 | margin-right: 0px; 15 | } 16 | a{ 17 | font-size: 12px; 18 | font-family: $rob; 19 | font-weight: 500; 20 | color: $dip; 21 | @include transition; 22 | text-transform: uppercase; 23 | } 24 | &:hover, &.active{ 25 | a{ 26 | color: $baseColor; 27 | } 28 | } 29 | } 30 | } 31 | } 32 | .gallery_f_inner{ 33 | margin-bottom: -45px; 34 | } 35 | .h_gallery_item{ 36 | display: inline-block; 37 | margin-bottom: 45px; 38 | .g_img_item{ 39 | position: relative; 40 | text-align: center; 41 | overflow: hidden; 42 | border-radius: 5px; 43 | &:before{ 44 | content: ""; 45 | width: 100%; 46 | height: 100%; 47 | left: 0px; 48 | top: 0px; 49 | background-image: -moz-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 50 | background-image: -webkit-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 51 | background-image: -ms-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 52 | position: absolute; 53 | opacity: 0; 54 | transition: all 300ms ease; 55 | } 56 | .light{ 57 | position: absolute; 58 | left: 0px; 59 | top: 50%; 60 | transform: translateY(-50%); 61 | width: 100%; 62 | text-align: center; 63 | opacity: 0; 64 | } 65 | } 66 | .g_item_text{ 67 | text-align: center; 68 | h4{ 69 | color: $dip; 70 | font-size: 21px; 71 | margin-top: 22px; 72 | @include transition; 73 | } 74 | p{ 75 | margin-bottom: 0px; 76 | } 77 | } 78 | &:hover{ 79 | .g_img_item{ 80 | &:before{ 81 | opacity: .85; 82 | } 83 | .light{ 84 | opacity: 1; 85 | } 86 | } 87 | .g_item_text{ 88 | h4{ 89 | &:hover{ 90 | color: $baseColor; 91 | } 92 | } 93 | } 94 | } 95 | } 96 | .more_btn{ 97 | text-align: center; 98 | margin-top: 80px; 99 | } 100 | /* End Gallery Area css 101 | ============================================================================================ */ 102 | 103 | -------------------------------------------------------------------------------- /scss/_footer.scss: -------------------------------------------------------------------------------- 1 | /* Footer Area css 2 | ============================================================================================ */ 3 | .footer_area{ 4 | background: #000; 5 | } 6 | .footer_inner{ 7 | 8 | } 9 | .f_widget{} 10 | .f_title{ 11 | margin-bottom: 35px; 12 | h3{ 13 | color: #fff; 14 | font-size: 18px; 15 | font-weight: bold; 16 | font-family: $hee; 17 | margin-bottom: 0px; 18 | } 19 | } 20 | .ab_widget{ 21 | p{ 22 | font-size: 14px; 23 | line-height: 24px; 24 | font-family: $rob; 25 | color: $pfont; 26 | margin-bottom: 30px; 27 | a{ 28 | color: $baseColor; 29 | } 30 | & + p{ 31 | margin-bottom: 0px; 32 | } 33 | } 34 | } 35 | .news_widget{ 36 | padding-right: 15px; 37 | p{ 38 | font-size: 14px; 39 | line-height: 24px; 40 | font-family: $rob; 41 | color: $pfont; 42 | margin-bottom: 15px; 43 | } 44 | .input-group{ 45 | input{ 46 | height: 40px; 47 | background: transparent; 48 | border-radius: 0px; 49 | width: 80%; 50 | border: none; 51 | padding: 0px 15px; 52 | border: 1px solid #1e233b; 53 | font-size: 14px; 54 | font-family: $rob; 55 | color: #cccccc; 56 | outline: none; 57 | box-shadow: none; 58 | @include placeholder{ 59 | font-size: 14px; 60 | font-family: $rob; 61 | font-weight: normal; 62 | color: #cccccc; 63 | } 64 | } 65 | .sub-btn{ 66 | border-radius: 0px; 67 | background-image: -moz-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 68 | background-image: -webkit-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 69 | background-image: -ms-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 70 | outline: none !important; 71 | box-shadow: none !important; 72 | padding: 0px; 73 | border: none; 74 | width: 42px; 75 | cursor: pointer; 76 | color: #fff; 77 | } 78 | } 79 | } 80 | .social_widget{ 81 | p{ 82 | font-size: 14px; 83 | line-height: 24px; 84 | font-family: $rob; 85 | color: $pfont; 86 | margin-bottom: 10px; 87 | } 88 | .list{ 89 | li{ 90 | margin-right: 17px; 91 | display: inline-block; 92 | a{ 93 | color: #cccccc; 94 | font-size: 14px; 95 | @include transition; 96 | } 97 | &:last-child{ 98 | margin-right: 0px; 99 | } 100 | &:hover{ 101 | a{ 102 | color: $baseColor; 103 | } 104 | } 105 | } 106 | } 107 | } 108 | .copy_right_text{ 109 | text-align: center; 110 | margin-top: 60px; 111 | p{ 112 | a{ 113 | color: $baseColor; 114 | } 115 | } 116 | } 117 | 118 | /* End Footer Area css 119 | ============================================================================================ */ -------------------------------------------------------------------------------- /vendors/owl-carousel/owl.carousel.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.2.1 3 | * Copyright 2013-2017 David Deutsch 4 | * Licensed under () 5 | */ 6 | .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} -------------------------------------------------------------------------------- /vendors/nice-select/js/jquery.nice-select.min.js: -------------------------------------------------------------------------------- 1 | /* jQuery Nice Select - v1.0 2 | https://github.com/hernansartorio/jquery-nice-select 3 | Made by Hernán Sartorio */ 4 | !function(e){e.fn.niceSelect=function(t){function s(t){t.after(e("
").addClass("nice-select").addClass(t.attr("class")||"").addClass(t.attr("disabled")?"disabled":"").attr("tabindex",t.attr("disabled")?null:"0").html(''));var s=t.next(),n=t.find("option"),i=t.find("option:selected");s.find(".current").html(i.data("display")||i.text()),n.each(function(t){var n=e(this),i=n.data("display");s.find("ul").append(e("
  • ").attr("data-value",n.val()).attr("data-display",i||null).addClass("option"+(n.is(":selected")?" selected":"")+(n.is(":disabled")?" disabled":"")).html(n.text()))})}if("string"==typeof t)return"update"==t?this.each(function(){var t=e(this),n=e(this).next(".nice-select"),i=n.hasClass("open");n.length&&(n.remove(),s(t),i&&t.next().trigger("click"))}):"destroy"==t?(this.each(function(){var t=e(this),s=e(this).next(".nice-select");s.length&&(s.remove(),t.css("display",""))}),0==e(".nice-select").length&&e(document).off(".nice_select")):console.log('Method "'+t+'" does not exist.'),this;this.hide(),this.each(function(){var t=e(this);t.next().hasClass("nice-select")||s(t)}),e(document).off(".nice_select"),e(document).on("click.nice_select",".nice-select",function(t){var s=e(this);e(".nice-select").not(s).removeClass("open"),s.toggleClass("open"),s.hasClass("open")?(s.find(".option"),s.find(".focus").removeClass("focus"),s.find(".selected").addClass("focus")):s.focus()}),e(document).on("click.nice_select",function(t){0===e(t.target).closest(".nice-select").length&&e(".nice-select").removeClass("open").find(".option")}),e(document).on("click.nice_select",".nice-select .option:not(.disabled)",function(t){var s=e(this),n=s.closest(".nice-select");n.find(".selected").removeClass("selected"),s.addClass("selected");var i=s.data("display")||s.text();n.find(".current").text(i),n.prev("select").val(s.data("value")).trigger("change")}),e(document).on("keydown.nice_select",".nice-select",function(t){var s=e(this),n=e(s.find(".focus")||s.find(".list .option.selected"));if(32==t.keyCode||13==t.keyCode)return s.hasClass("open")?n.trigger("click"):s.trigger("click"),!1;if(40==t.keyCode){if(s.hasClass("open")){var i=n.nextAll(".option:not(.disabled)").first();i.length>0&&(s.find(".focus").removeClass("focus"),i.addClass("focus"))}else s.trigger("click");return!1}if(38==t.keyCode){if(s.hasClass("open")){var l=n.prevAll(".option:not(.disabled)").first();l.length>0&&(s.find(".focus").removeClass("focus"),l.addClass("focus"))}else s.trigger("click");return!1}if(27==t.keyCode)s.hasClass("open")&&s.trigger("click");else if(9==t.keyCode&&s.hasClass("open"))return!1});var n=document.createElement("a").style;return n.cssText="pointer-events:auto","auto"!==n.pointerEvents&&e("html").addClass("no-csspointerevents"),this}}(jQuery); -------------------------------------------------------------------------------- /scss/style.scss: -------------------------------------------------------------------------------- 1 | /*---------------------------------------------------- 2 | @File: Default Styles 3 | @Author: Rocky Ahmed 4 | @URL: http://wethemez.com 5 | Author E-mail: rockybd1995@gmail.com 6 | 7 | This file contains the styling for the actual theme, this 8 | is the file you need to edit to change the look of the 9 | theme. 10 | ---------------------------------------------------- */ 11 | 12 | /*===================================================================== 13 | @Template Name: Builder Construction 14 | @Author: Rocky Ahmed 15 | @Developed By: Rocky Ahmed 16 | @Developer URL: http://rocky.wethemez.com 17 | Author E-mail: rockybd1995@gmail.com 18 | 19 | @Default Styles 20 | 21 | Table of Content: 22 | 01/ Variables 23 | 02/ predefin 24 | 03/ header 25 | 04/ button 26 | 05/ banner 27 | 06/ breadcrumb 28 | 07/ about 29 | 08/ team 30 | 09/ project 31 | 10/ price 32 | 11/ team 33 | 12/ blog 34 | 13/ video 35 | 14/ features 36 | 15/ career 37 | 16/ contact 38 | 17/ footer 39 | 40 | =====================================================================*/ 41 | 42 | /*----------------------------------------------------*/ 43 | @import "variables"; 44 | /*---------------------------------------------------- */ 45 | 46 | /*----------------------------------------------------*/ 47 | @import "predefine"; 48 | /*---------------------------------------------------- */ 49 | 50 | /*----------------------------------------------------*/ 51 | @import "header"; 52 | /*---------------------------------------------------- */ 53 | 54 | /*----------------------------------------------------*/ 55 | @import "breadcrumb"; 56 | /*---------------------------------------------------- */ 57 | 58 | /*----------------------------------------------------*/ 59 | @import "blog"; 60 | /*---------------------------------------------------- */ 61 | 62 | /*----------------------------------------------------*/ 63 | @import "contact"; 64 | /*---------------------------------------------------- */ 65 | 66 | /*----------------------------------------------------*/ 67 | @import "elements"; 68 | /*---------------------------------------------------- */ 69 | 70 | /*----------------------------------------------------*/ 71 | @import "button"; 72 | /*---------------------------------------------------- */ 73 | 74 | /*----------------------------------------------------*/ 75 | @import "feature"; 76 | /*---------------------------------------------------- */ 77 | 78 | /*----------------------------------------------------*/ 79 | @import "gallery"; 80 | /*---------------------------------------------------- */ 81 | 82 | /*----------------------------------------------------*/ 83 | @import "testimonials"; 84 | /*---------------------------------------------------- */ 85 | 86 | /*----------------------------------------------------*/ 87 | @import "footer"; 88 | /*---------------------------------------------------- */ 89 | 90 | 91 | 92 | 93 | 94 | -------------------------------------------------------------------------------- /scss/_button.scss: -------------------------------------------------------------------------------- 1 | /* Main Button Area css 2 | ============================================================================================ */ 3 | .main_btn{ 4 | display: inline-block; 5 | background-image: linear-gradient(to right, #766dff 0%, #86e8ff 48%, #766dff 100%); 6 | background-size: 200% auto; 7 | padding: 0px 40px; 8 | color: #fff; 9 | font-family: $rob; 10 | font-size: 13px; 11 | font-weight: 500; 12 | line-height: 48px; 13 | border-radius: 0px; 14 | outline: none !important; 15 | box-shadow: none !important; 16 | text-align: center; 17 | cursor: pointer; 18 | border-radius: 5px; 19 | @include transition; 20 | &:hover{ 21 | background-position: right center; 22 | color: #fff; 23 | } 24 | } 25 | .main_btn2{ 26 | display: inline-block; 27 | background: #f9f9ff; 28 | padding: 0px 45px; 29 | color: $dip; 30 | font-family: $rob; 31 | font-size: 13px; 32 | font-weight: 500; 33 | line-height: 48px; 34 | border-radius: 5px; 35 | outline: none !important; 36 | box-shadow: none !important; 37 | text-align: center; 38 | border: 1px solid #eeeeee; 39 | cursor: pointer; 40 | @include transition; 41 | &:hover{ 42 | background: $baseColor; 43 | color: #fff; 44 | border-color: $baseColor; 45 | box-shadow: 0px 10px 20px 0px rgba(250, 51, 63, 0.25); 46 | } 47 | } 48 | .submit_btn{ 49 | width: auto; 50 | display: inline-block; 51 | background: $baseColor; 52 | padding: 0px 50px; 53 | color: #fff; 54 | font-family: $rob; 55 | font-size: 13px; 56 | font-weight: 500; 57 | line-height: 50px; 58 | border-radius: 5px; 59 | outline: none !important; 60 | box-shadow: none !important; 61 | text-align: center; 62 | border: 1px solid $baseColor; 63 | cursor: pointer; 64 | @include transition; 65 | &:hover{ 66 | background: transparent; 67 | color: $baseColor; 68 | } 69 | } 70 | 71 | .white_bg_btn{ 72 | display: inline-block; 73 | background: #f9f9ff; 74 | padding: 0px 35px; 75 | color: $dip; 76 | font-family: $rob; 77 | font-size: 13px; 78 | font-weight: 500; 79 | line-height: 34px; 80 | border-radius: 0px; 81 | outline: none !important; 82 | box-shadow: none !important; 83 | text-align: center; 84 | cursor: pointer; 85 | @include transition; 86 | &:hover{ 87 | background-image: -moz-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 88 | background-image: -webkit-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 89 | background-image: -ms-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 90 | color: #fff; 91 | border: none; 92 | } 93 | } 94 | .black_btn{ 95 | padding: 0px 44px; 96 | line-height: 50px; 97 | background: $dip; 98 | color: $baseColor; 99 | display: inline-block; 100 | border-radius: 5px; 101 | font-size: 13px; 102 | font-family: $rob; 103 | font-weight: 500; 104 | @include transition; 105 | &:hover{ 106 | background: $baseColor; 107 | color: $dip; 108 | } 109 | } 110 | /* End Main Button Area css 111 | ============================================================================================ */ -------------------------------------------------------------------------------- /js/contact.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | 3 | (function($) { 4 | "use strict"; 5 | 6 | 7 | jQuery.validator.addMethod('answercheck', function (value, element) { 8 | return this.optional(element) || /^\bcat\b$/.test(value) 9 | }, "type the correct answer -_-"); 10 | 11 | // validate contactForm form 12 | $(function() { 13 | $('#contactForm').validate({ 14 | rules: { 15 | name: { 16 | required: true, 17 | minlength: 2 18 | }, 19 | subject: { 20 | required: true, 21 | minlength: 4 22 | }, 23 | number: { 24 | required: true, 25 | minlength: 5 26 | }, 27 | email: { 28 | required: true, 29 | email: true 30 | }, 31 | message: { 32 | required: true, 33 | minlength: 20 34 | } 35 | }, 36 | messages: { 37 | name: { 38 | required: "come on, you have a name, don't you?", 39 | minlength: "your name must consist of at least 2 characters" 40 | }, 41 | subject: { 42 | required: "come on, you have a subject, don't you?", 43 | minlength: "your subject must consist of at least 4 characters" 44 | }, 45 | number: { 46 | required: "come on, you have a number, don't you?", 47 | minlength: "your Number must consist of at least 5 characters" 48 | }, 49 | email: { 50 | required: "no email, no message" 51 | }, 52 | message: { 53 | required: "um...yea, you have to write something to send this form.", 54 | minlength: "thats all? really?" 55 | } 56 | }, 57 | submitHandler: function(form) { 58 | $(form).ajaxSubmit({ 59 | type:"POST", 60 | data: $(form).serialize(), 61 | url:"contact_process.php", 62 | success: function() { 63 | $('#contactForm :input').attr('disabled', 'disabled'); 64 | $('#contactForm').fadeTo( "slow", 1, function() { 65 | $(this).find(':input').attr('disabled', 'disabled'); 66 | $(this).find('label').css('cursor','default'); 67 | $('#success').fadeIn() 68 | $('.modal').modal('hide'); 69 | $('#success').modal('show'); 70 | }) 71 | }, 72 | error: function() { 73 | $('#contactForm').fadeTo( "slow", 1, function() { 74 | $('#error').fadeIn() 75 | $('.modal').modal('hide'); 76 | $('#error').modal('show'); 77 | }) 78 | } 79 | }) 80 | } 81 | }) 82 | }) 83 | 84 | })(jQuery) 85 | }) -------------------------------------------------------------------------------- /vendors/bootstrap-datepicker/bootstrap-select.css: -------------------------------------------------------------------------------- 1 | select { 2 | display: none; } 3 | 4 | .nice-select { 5 | -webkit-tap-highlight-color: transparent; 6 | background-color: #fff; 7 | border-radius: 5px; 8 | border: solid 1px #e8e8e8; 9 | box-sizing: border-box; 10 | clear: both; 11 | cursor: pointer; 12 | display: block; 13 | float: left; 14 | font-family: inherit; 15 | font-size: 14px; 16 | font-weight: normal; 17 | height: 42px; 18 | line-height: 40px; 19 | outline: none; 20 | padding-left: 18px; 21 | padding-right: 30px; 22 | position: relative; 23 | text-align: left !important; 24 | transition: all 0.2s ease-in-out; 25 | -webkit-user-select: none; 26 | -moz-user-select: none; 27 | -ms-user-select: none; 28 | user-select: none; 29 | white-space: nowrap; 30 | width: auto; } 31 | .nice-select:hover { 32 | border-color: #dbdbdb; } 33 | .nice-select:active, .nice-select.open, .nice-select:focus { 34 | border-color: #999; } 35 | .nice-select:after { 36 | border-bottom: 2px solid #999; 37 | border-right: 2px solid #999; 38 | content: ''; 39 | display: block; 40 | height: 5px; 41 | margin-top: -4px; 42 | pointer-events: none; 43 | position: absolute; 44 | right: 12px; 45 | top: 50%; 46 | -webkit-transform-origin: 66% 66%; 47 | transform-origin: 66% 66%; 48 | -webkit-transform: rotate(45deg); 49 | transform: rotate(45deg); 50 | transition: all 0.15s ease-in-out; 51 | width: 5px; } 52 | .nice-select.open:after { 53 | -webkit-transform: rotate(-135deg); 54 | transform: rotate(-135deg); } 55 | .nice-select.open .list { 56 | opacity: 1; 57 | pointer-events: auto; 58 | -webkit-transform: scale(1) translateY(0); 59 | transform: scale(1) translateY(0); } 60 | .nice-select.disabled { 61 | border-color: #ededed; 62 | color: #999; 63 | pointer-events: none; } 64 | .nice-select.disabled:after { 65 | border-color: #cccccc; } 66 | .nice-select.wide { 67 | width: 100%; } 68 | .nice-select.wide .list { 69 | left: 0 !important; 70 | right: 0 !important; } 71 | .nice-select.right { 72 | float: right; } 73 | .nice-select.right .list { 74 | left: auto; 75 | right: 0; } 76 | .nice-select.small { 77 | font-size: 12px; 78 | height: 36px; 79 | line-height: 34px; } 80 | .nice-select.small:after { 81 | height: 4px; 82 | width: 4px; } 83 | .nice-select.small .option { 84 | line-height: 34px; 85 | min-height: 34px; } 86 | .nice-select .list { 87 | background-color: #fff; 88 | border-radius: 5px; 89 | box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11); 90 | box-sizing: border-box; 91 | margin-top: 4px; 92 | opacity: 0; 93 | overflow: hidden; 94 | padding: 0; 95 | pointer-events: none; 96 | position: absolute; 97 | top: 100%; 98 | left: 0; 99 | -webkit-transform-origin: 50% 0; 100 | transform-origin: 50% 0; 101 | -webkit-transform: scale(0.75) translateY(-21px); 102 | transform: scale(0.75) translateY(-21px); 103 | transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; 104 | z-index: 9; } 105 | .nice-select .list:hover .option:not(:hover) { 106 | background-color: transparent !important; } 107 | .nice-select .option { 108 | cursor: pointer; 109 | font-weight: 400; 110 | line-height: 40px; 111 | list-style: none; 112 | min-height: 40px; 113 | outline: none; 114 | padding-left: 18px; 115 | padding-right: 29px; 116 | text-align: left; 117 | transition: all 0.2s; } 118 | .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus { 119 | background-color: #f6f6f6; } 120 | .nice-select .option.selected { 121 | font-weight: bold; } -------------------------------------------------------------------------------- /scss/breadcrumb.scss: -------------------------------------------------------------------------------- 1 | /* Home Banner Area css 2 | ============================================================================================ */ 3 | .home_banner_area{ 4 | position: relative; 5 | z-index: 1; 6 | background-image: -moz-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 7 | background-image: -webkit-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 8 | background-image: -ms-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 9 | margin-bottom: 200px; 10 | .box_1620{ 11 | min-height: 700px; 12 | border-radius: 12px; 13 | position: relative; 14 | bottom: -200px; 15 | background: #fff; 16 | padding: 30px; 17 | box-shadow: 0px 20px 80px 0px rgba(153, 153, 153, 0.3); 18 | } 19 | .banner_inner{ 20 | position: relative; 21 | width: 100%; 22 | min-height: 700px; 23 | display: flex; 24 | // .overlay{ 25 | // background: url(../img/banner/home-banner.jpg) no-repeat scroll center center; 26 | // position: absolute; 27 | // left: 0; 28 | // right: 0; 29 | // top: 0; 30 | // height: 121%; 31 | // bottom: 0; 32 | // z-index: -1; 33 | // } 34 | .banner_content{ 35 | color: $dip; 36 | vertical-align: middle; 37 | align-self: center; 38 | text-align: left; 39 | .media{ 40 | .d-flex{ 41 | padding-right: 125px; 42 | } 43 | .media-body{ 44 | vertical-align: middle; 45 | align-self: center; 46 | } 47 | } 48 | } 49 | } 50 | 51 | } 52 | 53 | .blog_banner{ 54 | min-height: 780px; 55 | position: relative; 56 | z-index: 1; 57 | overflow: hidden; 58 | margin-bottom: 0px; 59 | .banner_inner{ 60 | background: #04091e; 61 | position: relative; 62 | overflow: hidden; 63 | width: 100%; 64 | min-height: 780px; 65 | z-index: 1; 66 | .overlay{ 67 | background: url(../img/banner/banner-2.jpg) no-repeat scroll center center; 68 | opacity: .5; 69 | height: 125%; 70 | position: absolute; 71 | left: 0px; 72 | top: 0px; 73 | width: 100%; 74 | z-index: -1; 75 | } 76 | .blog_b_text{ 77 | max-width: 700px; 78 | margin: auto; 79 | color: #fff; 80 | h2{ 81 | font-size: 60px; 82 | font-weight: bold; 83 | font-family: $hee; 84 | line-height: 66px; 85 | margin-bottom: 15px; 86 | text-transform: uppercase; 87 | } 88 | p{ 89 | font-size: 16px; 90 | margin-bottom: 35px; 91 | } 92 | .white_bg_btn{ 93 | line-height: 42px; 94 | padding: 0px 45px; 95 | border-radius: 5px; 96 | } 97 | } 98 | } 99 | } 100 | 101 | .banner_box{ 102 | max-width: 1620px; 103 | margin: auto; 104 | } 105 | .banner_area{ 106 | position: relative; 107 | z-index: 1; 108 | min-height: 350px; 109 | background-image: -moz-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 110 | background-image: -webkit-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 111 | background-image: -ms-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 112 | margin-bottom: 120px; 113 | .box_1620{ 114 | background: #fff; 115 | min-height: 360px; 116 | border-radius: 12px; 117 | position: relative; 118 | bottom: -120px; 119 | box-shadow: 0px 20px 80px 0px rgba(153, 153, 153, 0.3); 120 | } 121 | .banner_inner{ 122 | position: relative; 123 | overflow: hidden; 124 | width: 100%; 125 | min-height: 360px; 126 | z-index: 1; 127 | // .overlay{ 128 | // background: url(../img/banner/banner.jpg) no-repeat scroll center center; 129 | // position: absolute; 130 | // left: 0; 131 | // right: 0; 132 | // top: 0; 133 | // height: 125%; 134 | // bottom: 0; 135 | // z-index: -1; 136 | // opacity: .6; 137 | // } 138 | .banner_content{ 139 | h2{ 140 | color: $dip; 141 | font-size: 48px; 142 | font-family: $hee; 143 | margin-bottom: 0px; 144 | font-weight: bold; 145 | } 146 | .page_link{ 147 | a{ 148 | font-size: 14px; 149 | color: $dip; 150 | font-family: $rob; 151 | margin-right: 32px; 152 | position: relative; 153 | &:before{ 154 | content: "\e87a"; 155 | font-family: 'Linearicons-Free'; 156 | position: absolute; 157 | right: -25px; 158 | top: 50%; 159 | transform: translateY(-50%); 160 | } 161 | &:last-child{ 162 | margin-right: 0px; 163 | &:before{ 164 | display: none; 165 | } 166 | } 167 | &:hover{ 168 | color: $baseColor; 169 | } 170 | } 171 | } 172 | } 173 | } 174 | } 175 | 176 | /* End Home Banner Area css 177 | ============================================================================================ */ -------------------------------------------------------------------------------- /vendors/nice-select/css/nice-select.css: -------------------------------------------------------------------------------- 1 | .nice-select { 2 | -webkit-tap-highlight-color: transparent; 3 | background-color: #fff; 4 | border-radius: 5px; 5 | border: solid 1px #e8e8e8; 6 | box-sizing: border-box; 7 | clear: both; 8 | cursor: pointer; 9 | display: block; 10 | float: left; 11 | font-family: inherit; 12 | font-size: 14px; 13 | font-weight: normal; 14 | height: 42px; 15 | line-height: 40px; 16 | outline: none; 17 | padding-left: 18px; 18 | padding-right: 30px; 19 | position: relative; 20 | text-align: left !important; 21 | -webkit-transition: all 0.2s ease-in-out; 22 | transition: all 0.2s ease-in-out; 23 | -webkit-user-select: none; 24 | -moz-user-select: none; 25 | -ms-user-select: none; 26 | user-select: none; 27 | white-space: nowrap; 28 | width: auto; } 29 | .nice-select:hover { 30 | border-color: #dbdbdb; } 31 | .nice-select:active, .nice-select.open, .nice-select:focus { 32 | border-color: #999; } 33 | .nice-select:after { 34 | border-bottom: 2px solid #999; 35 | border-right: 2px solid #999; 36 | content: ''; 37 | display: block; 38 | height: 5px; 39 | margin-top: -4px; 40 | pointer-events: none; 41 | position: absolute; 42 | right: 12px; 43 | top: 50%; 44 | -webkit-transform-origin: 66% 66%; 45 | -ms-transform-origin: 66% 66%; 46 | transform-origin: 66% 66%; 47 | -webkit-transform: rotate(45deg); 48 | -ms-transform: rotate(45deg); 49 | transform: rotate(45deg); 50 | -webkit-transition: all 0.15s ease-in-out; 51 | transition: all 0.15s ease-in-out; 52 | width: 5px; } 53 | .nice-select.open:after { 54 | -webkit-transform: rotate(-135deg); 55 | -ms-transform: rotate(-135deg); 56 | transform: rotate(-135deg); } 57 | .nice-select.open .list { 58 | opacity: 1; 59 | pointer-events: auto; 60 | -webkit-transform: scale(1) translateY(0); 61 | -ms-transform: scale(1) translateY(0); 62 | transform: scale(1) translateY(0); } 63 | .nice-select.disabled { 64 | border-color: #ededed; 65 | color: #999; 66 | pointer-events: none; } 67 | .nice-select.disabled:after { 68 | border-color: #cccccc; } 69 | .nice-select.wide { 70 | width: 100%; } 71 | .nice-select.wide .list { 72 | left: 0 !important; 73 | right: 0 !important; } 74 | .nice-select.right { 75 | float: right; } 76 | .nice-select.right .list { 77 | left: auto; 78 | right: 0; } 79 | .nice-select.small { 80 | font-size: 12px; 81 | height: 36px; 82 | line-height: 34px; } 83 | .nice-select.small:after { 84 | height: 4px; 85 | width: 4px; } 86 | .nice-select.small .option { 87 | line-height: 34px; 88 | min-height: 34px; } 89 | .nice-select .list { 90 | background-color: #fff; 91 | border-radius: 5px; 92 | box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11); 93 | box-sizing: border-box; 94 | margin-top: 4px; 95 | opacity: 0; 96 | overflow: hidden; 97 | padding: 0; 98 | pointer-events: none; 99 | position: absolute; 100 | top: 100%; 101 | left: 0; 102 | -webkit-transform-origin: 50% 0; 103 | -ms-transform-origin: 50% 0; 104 | transform-origin: 50% 0; 105 | -webkit-transform: scale(0.75) translateY(-21px); 106 | -ms-transform: scale(0.75) translateY(-21px); 107 | transform: scale(0.75) translateY(-21px); 108 | -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; 109 | transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; 110 | z-index: 9; } 111 | .nice-select .list:hover .option:not(:hover) { 112 | background-color: transparent !important; } 113 | .nice-select .option { 114 | cursor: pointer; 115 | font-weight: 400; 116 | line-height: 40px; 117 | list-style: none; 118 | min-height: 40px; 119 | outline: none; 120 | padding-left: 18px; 121 | padding-right: 29px; 122 | text-align: left; 123 | -webkit-transition: all 0.2s; 124 | transition: all 0.2s; } 125 | .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus { 126 | background-color: #f6f6f6; } 127 | .nice-select .option.selected { 128 | font-weight: bold; } 129 | .nice-select .option.disabled { 130 | background-color: transparent; 131 | color: #999; 132 | cursor: default; } 133 | 134 | .no-csspointerevents .nice-select .list { 135 | display: none; } 136 | 137 | .no-csspointerevents .nice-select.open .list { 138 | display: block; } 139 | -------------------------------------------------------------------------------- /vendors/owl-carousel/assets/owl.carousel.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.2.1 3 | * Copyright 2013-2017 David Deutsch 4 | * Licensed under () 5 | */ 6 | /* 7 | * Owl Carousel - Core 8 | */ 9 | .owl-carousel { 10 | display: none; 11 | width: 100%; 12 | -webkit-tap-highlight-color: transparent; 13 | /* position relative and z-index fix webkit rendering fonts issue */ 14 | position: relative; 15 | z-index: 1; } 16 | .owl-carousel .owl-stage { 17 | position: relative; 18 | -ms-touch-action: pan-Y; 19 | -moz-backface-visibility: hidden; 20 | /* fix firefox animation glitch */ } 21 | .owl-carousel .owl-stage:after { 22 | content: "."; 23 | display: block; 24 | clear: both; 25 | visibility: hidden; 26 | line-height: 0; 27 | height: 0; } 28 | .owl-carousel .owl-stage-outer { 29 | position: relative; 30 | overflow: hidden; 31 | /* fix for flashing background */ 32 | -webkit-transform: translate3d(0px, 0px, 0px); } 33 | .owl-carousel .owl-wrapper, 34 | .owl-carousel .owl-item { 35 | -webkit-backface-visibility: hidden; 36 | -moz-backface-visibility: hidden; 37 | -ms-backface-visibility: hidden; 38 | -webkit-transform: translate3d(0, 0, 0); 39 | -moz-transform: translate3d(0, 0, 0); 40 | -ms-transform: translate3d(0, 0, 0); } 41 | .owl-carousel .owl-item { 42 | position: relative; 43 | min-height: 1px; 44 | float: left; 45 | -webkit-backface-visibility: hidden; 46 | -webkit-tap-highlight-color: transparent; 47 | -webkit-touch-callout: none; } 48 | .owl-carousel .owl-item img { 49 | display: block; 50 | width: 100%; } 51 | .owl-carousel .owl-nav.disabled, 52 | .owl-carousel .owl-dots.disabled { 53 | display: none; } 54 | .owl-carousel .owl-nav .owl-prev, 55 | .owl-carousel .owl-nav .owl-next, 56 | .owl-carousel .owl-dot { 57 | cursor: pointer; 58 | cursor: hand; 59 | -webkit-user-select: none; 60 | -khtml-user-select: none; 61 | -moz-user-select: none; 62 | -ms-user-select: none; 63 | user-select: none; } 64 | .owl-carousel.owl-loaded { 65 | display: block; } 66 | .owl-carousel.owl-loading { 67 | opacity: 0; 68 | display: block; } 69 | .owl-carousel.owl-hidden { 70 | opacity: 0; } 71 | .owl-carousel.owl-refresh .owl-item { 72 | visibility: hidden; } 73 | .owl-carousel.owl-drag .owl-item { 74 | -webkit-user-select: none; 75 | -moz-user-select: none; 76 | -ms-user-select: none; 77 | user-select: none; } 78 | .owl-carousel.owl-grab { 79 | cursor: move; 80 | cursor: grab; } 81 | .owl-carousel.owl-rtl { 82 | direction: rtl; } 83 | .owl-carousel.owl-rtl .owl-item { 84 | float: right; } 85 | 86 | /* No Js */ 87 | .no-js .owl-carousel { 88 | display: block; } 89 | 90 | /* 91 | * Owl Carousel - Animate Plugin 92 | */ 93 | .owl-carousel .animated { 94 | animation-duration: 1000ms; 95 | animation-fill-mode: both; } 96 | 97 | .owl-carousel .owl-animated-in { 98 | z-index: 0; } 99 | 100 | .owl-carousel .owl-animated-out { 101 | z-index: 1; } 102 | 103 | .owl-carousel .fadeOut { 104 | animation-name: fadeOut; } 105 | 106 | @keyframes fadeOut { 107 | 0% { 108 | opacity: 1; } 109 | 100% { 110 | opacity: 0; } } 111 | 112 | /* 113 | * Owl Carousel - Auto Height Plugin 114 | */ 115 | .owl-height { 116 | transition: height 500ms ease-in-out; } 117 | 118 | /* 119 | * Owl Carousel - Lazy Load Plugin 120 | */ 121 | .owl-carousel .owl-item .owl-lazy { 122 | opacity: 0; 123 | transition: opacity 400ms ease; } 124 | 125 | .owl-carousel .owl-item img.owl-lazy { 126 | transform-style: preserve-3d; } 127 | 128 | /* 129 | * Owl Carousel - Video Plugin 130 | */ 131 | .owl-carousel .owl-video-wrapper { 132 | position: relative; 133 | height: 100%; 134 | background: #000; } 135 | 136 | .owl-carousel .owl-video-play-icon { 137 | position: absolute; 138 | height: 80px; 139 | width: 80px; 140 | left: 50%; 141 | top: 50%; 142 | margin-left: -40px; 143 | margin-top: -40px; 144 | background: url("owl.video.play.png") no-repeat; 145 | cursor: pointer; 146 | z-index: 1; 147 | -webkit-backface-visibility: hidden; 148 | transition: transform 100ms ease; } 149 | 150 | .owl-carousel .owl-video-play-icon:hover { 151 | -ms-transform: scale(1.3, 1.3); 152 | transform: scale(1.3, 1.3); } 153 | 154 | .owl-carousel .owl-video-playing .owl-video-tn, 155 | .owl-carousel .owl-video-playing .owl-video-play-icon { 156 | display: none; } 157 | 158 | .owl-carousel .owl-video-tn { 159 | opacity: 0; 160 | height: 100%; 161 | background-position: center center; 162 | background-repeat: no-repeat; 163 | background-size: contain; 164 | transition: opacity 400ms ease; } 165 | 166 | .owl-carousel .owl-video-frame { 167 | position: relative; 168 | z-index: 1; 169 | height: 100%; 170 | width: 100%; } 171 | -------------------------------------------------------------------------------- /js/jquery.ajaxchimp.min.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 'use strict'; 3 | 4 | $.ajaxChimp = { 5 | responses: { 6 | 'We have sent you a confirmation email' : 0, 7 | 'Please enter a valid email' : 1, 8 | 'An email address must contain a single @' : 2, 9 | 'The domain portion of the email address is invalid (the portion after the @: )' : 3, 10 | 'The username portion of the email address is invalid (the portion before the @: )' : 4, 11 | 'This email address looks fake or invalid. Please enter a real email address' : 5 12 | }, 13 | translations: { 14 | 'en': null 15 | }, 16 | init: function (selector, options) { 17 | $(selector).ajaxChimp(options); 18 | } 19 | }; 20 | 21 | $.fn.ajaxChimp = function (options) { 22 | $(this).each(function(i, elem) { 23 | var form = $(elem); 24 | var email = form.find('input[type=email]'); 25 | var label = form.find('.info'); 26 | 27 | var settings = $.extend({ 28 | 'url': form.attr('action'), 29 | 'language': 'en' 30 | }, options); 31 | 32 | var url = settings.url.replace('/post?', '/post-json?').concat('&c=?'); 33 | 34 | form.attr('novalidate', 'true'); 35 | email.attr('name', 'EMAIL'); 36 | 37 | form.submit(function () { 38 | var msg; 39 | function successCallback(resp) { 40 | if (resp.result === 'success') { 41 | msg = 'We have sent you a confirmation email'; 42 | label.removeClass('error').addClass('valid'); 43 | email.removeClass('error').addClass('valid'); 44 | } else { 45 | email.removeClass('valid').addClass('error'); 46 | label.removeClass('valid').addClass('error'); 47 | var index = -1; 48 | try { 49 | var parts = resp.msg.split(' - ', 2); 50 | if (parts[1] === undefined) { 51 | msg = resp.msg; 52 | } else { 53 | var i = parseInt(parts[0], 10); 54 | if (i.toString() === parts[0]) { 55 | index = parts[0]; 56 | msg = parts[1]; 57 | } else { 58 | index = -1; 59 | msg = resp.msg; 60 | } 61 | } 62 | } 63 | catch (e) { 64 | index = -1; 65 | msg = resp.msg; 66 | } 67 | } 68 | 69 | // Translate and display message 70 | if ( 71 | settings.language !== 'en' 72 | && $.ajaxChimp.responses[msg] !== undefined 73 | && $.ajaxChimp.translations 74 | && $.ajaxChimp.translations[settings.language] 75 | && $.ajaxChimp.translations[settings.language][$.ajaxChimp.responses[msg]] 76 | ) { 77 | msg = $.ajaxChimp.translations[settings.language][$.ajaxChimp.responses[msg]]; 78 | } 79 | label.html(msg); 80 | 81 | label.show(2000); 82 | if (settings.callback) { 83 | settings.callback(resp); 84 | } 85 | } 86 | 87 | var data = {}; 88 | var dataArray = form.serializeArray(); 89 | $.each(dataArray, function (index, item) { 90 | data[item.name] = item.value; 91 | }); 92 | 93 | $.ajax({ 94 | url: url, 95 | data: data, 96 | success: successCallback, 97 | dataType: 'jsonp', 98 | error: function (resp, text) { 99 | console.log('mailchimp ajax submit error: ' + text); 100 | } 101 | }); 102 | 103 | // Translate and display submit message 104 | var submitMsg = 'Submitting...'; 105 | if( 106 | settings.language !== 'en' 107 | && $.ajaxChimp.translations 108 | && $.ajaxChimp.translations[settings.language] 109 | && $.ajaxChimp.translations[settings.language]['submit'] 110 | ) { 111 | submitMsg = $.ajaxChimp.translations[settings.language]['submit']; 112 | } 113 | label.html(submitMsg).show(2000); 114 | 115 | return false; 116 | }); 117 | }); 118 | return this; 119 | }; 120 | })(jQuery); -------------------------------------------------------------------------------- /vendors/lightbox/simpleLightbox.min.js: -------------------------------------------------------------------------------- 1 | !function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){function b(a){this.init.apply(this,arguments)}var c=0,d=a("html"),e=a(document),f=a(window);return b.defaults={elementClass:"",elementLoadingClass:"slbLoading",htmlClass:"slbActive",closeBtnClass:"",nextBtnClass:"",prevBtnClass:"",loadingTextClass:"",closeBtnCaption:"Close",nextBtnCaption:"Next",prevBtnCaption:"Previous",loadingCaption:"Loading...",bindToItems:!0,closeOnOverlayClick:!0,closeOnEscapeKey:!0,nextOnImageClick:!0,showCaptions:!0,captionAttribute:"title",urlAttribute:"href",startAt:0,loadingTimeout:100,appendTarget:"body",beforeSetContent:null,beforeClose:null,beforeDestroy:null,videoRegex:new RegExp(/youtube.com|vimeo.com/)},a.extend(b.prototype,{init:function(d){this.options=a.extend({},b.defaults,d),this.ens=".slb"+ ++c,this.items=[],this.captions=[];var e=this;this.options.$items?(this.$items=this.options.$items,this.$items.each(function(){var b=a(this);e.items.push(b.attr(e.options.urlAttribute)),e.captions.push(b.attr(e.options.captionAttribute))}),this.options.bindToItems&&this.$items.on("click"+this.ens,function(b){b.preventDefault(),e.showPosition(e.$items.index(a(b.currentTarget)))})):this.options.items&&(this.items=this.options.items),this.options.captions&&(this.captions=this.options.captions)},next:function(){return this.showPosition(this.currentPosition+1)},prev:function(){return this.showPosition(this.currentPosition-1)},normalizePosition:function(a){return a>=this.items.length?a=0:a<0&&(a=this.items.length-1),a},showPosition:function(a){return this.currentPosition=this.normalizePosition(a),this.setupLightboxHtml().prepareItem(this.currentPosition,this.setContent).show()},loading:function(a){var b=this;a?this.loadingTimeout=setTimeout(function(){b.$el.addClass(b.options.elementLoadingClass),b.$content.html('

    '+b.options.loadingCaption+"

    "),b.show()},this.options.loadingTimeout):(this.$el&&this.$el.removeClass(this.options.elementLoadingClass),clearTimeout(this.loadingTimeout))},prepareItem:function(b,c){var d=this,e=this.items[b];if(this.loading(!0),this.options.videoRegex.test(e))c.call(d,a('
    '));else{var f=a('
    ');this.$currentImage=f.find(".slbImage"),this.options.showCaptions&&this.captions[b]&&f.append('
    '+this.captions[b]+"
    "),this.loadImage(e,function(){d.setImageDimensions(),c.call(d,f),d.loadImage(d.items[d.normalizePosition(d.currentPosition+1)])})}return this},loadImage:function(a,b){if(!this.options.videoRegex.test(a)){var c=new Image;b&&(c.onload=b),c.src=a}},setupLightboxHtml:function(){var b=this.options;return this.$el||(this.$el=a('
    '),this.items.length>1&&a('
    ").appendTo(this.$el.find(".slbContentOuter")),this.$content=this.$el.find(".slbContent")),this.$content.empty(),this},show:function(){return this.modalInDom||(this.$el.appendTo(a(this.options.appendTarget)),d.addClass(this.options.htmlClass),this.setupLightboxEvents(),this.modalInDom=!0),this},setContent:function(b){var c=a(b);return this.loading(!1),this.setupLightboxHtml(),this.options.beforeSetContent&&this.options.beforeSetContent(c,this),this.$content.html(c),this},setImageDimensions:function(){this.$currentImage&&this.$currentImage.css("max-height",f.height()+"px")},setupLightboxEvents:function(){var b=this;this.lightboxEventsSetuped||(this.$el.on("click"+this.ens,function(c){var d=a(c.target);d.is(".slbCloseBtn")||b.options.closeOnOverlayClick&&d.is(".slbWrap")?b.close():d.is(".slbArrow")?d.hasClass("next")?b.next():b.prev():b.options.nextOnImageClick&&b.items.length>1&&d.is(".slbImage")&&b.next()}),e.on("keyup"+this.ens,function(a){b.options.closeOnEscapeKey&&27===a.keyCode&&b.close(),b.items.length>1&&((39===a.keyCode||68===a.keyCode)&&b.next(),(37===a.keyCode||65===a.keyCode)&&b.prev())}),f.on("resize"+this.ens,function(){b.setImageDimensions()}),this.lightboxEventsSetuped=!0)},close:function(){this.modalInDom&&(this.options.beforeClose&&this.options.beforeClose(this),this.$el&&this.$el.off(this.ens),e.off(this.ens),f.off(this.ens),this.lightboxEventsSetuped=!1,this.$el.detach(),d.removeClass(this.options.htmlClass),this.modalInDom=!1)},destroy:function(){this.close(),this.options.beforeDestroy&&this.options.beforeDestroy(this),this.$items&&this.$items.off(this.ens),this.$el&&this.$el.remove()}}),b.open=function(a){var c=new b(a);return a.content?c.setContent(a.content).show():c.showPosition(c.options.startAt)},a.fn.simpleLightbox=function(c){var d,e=this;return this.each(function(){a.data(this,"simpleLightbox")||(d=d||new b(a.extend({},c,{$items:e})),a.data(this,"simpleLightbox",d))})},a.simpleLightbox=a.SimpleLightbox=b,a}); -------------------------------------------------------------------------------- /vendors/isotope/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * imagesLoaded PACKAGED v4.1.4 3 | * JavaScript is all like "You images are done yet or what?" 4 | * MIT License 5 | */ 6 | 7 | !function(e,t){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",t):"object"==typeof module&&module.exports?module.exports=t():e.EvEmitter=t()}("undefined"!=typeof window?window:this,function(){function e(){}var t=e.prototype;return t.on=function(e,t){if(e&&t){var i=this._events=this._events||{},n=i[e]=i[e]||[];return n.indexOf(t)==-1&&n.push(t),this}},t.once=function(e,t){if(e&&t){this.on(e,t);var i=this._onceEvents=this._onceEvents||{},n=i[e]=i[e]||{};return n[t]=!0,this}},t.off=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){var n=i.indexOf(t);return n!=-1&&i.splice(n,1),this}},t.emitEvent=function(e,t){var i=this._events&&this._events[e];if(i&&i.length){i=i.slice(0),t=t||[];for(var n=this._onceEvents&&this._onceEvents[e],o=0;o') 59 | .addClass('nice-select') 60 | .addClass($select.attr('class') || '') 61 | .addClass($select.attr('disabled') ? 'disabled' : '') 62 | .attr('tabindex', $select.attr('disabled') ? null : '0') 63 | .html('') 64 | ); 65 | 66 | var $dropdown = $select.next(); 67 | var $options = $select.find('option'); 68 | var $selected = $select.find('option:selected'); 69 | 70 | $dropdown.find('.current').html($selected.data('display') || $selected.text()); 71 | 72 | $options.each(function(i) { 73 | var $option = $(this); 74 | var display = $option.data('display'); 75 | 76 | $dropdown.find('ul').append($('
  • ') 77 | .attr('data-value', $option.val()) 78 | .attr('data-display', (display || null)) 79 | .addClass('option' + 80 | ($option.is(':selected') ? ' selected' : '') + 81 | ($option.is(':disabled') ? ' disabled' : '')) 82 | .html($option.text()) 83 | ); 84 | }); 85 | } 86 | 87 | /* Event listeners */ 88 | 89 | // Unbind existing events in case that the plugin has been initialized before 90 | $(document).off('.nice_select'); 91 | 92 | // Open/close 93 | $(document).on('click.nice_select', '.nice-select', function(event) { 94 | var $dropdown = $(this); 95 | 96 | $('.nice-select').not($dropdown).removeClass('open'); 97 | $dropdown.toggleClass('open'); 98 | 99 | if ($dropdown.hasClass('open')) { 100 | $dropdown.find('.option'); 101 | $dropdown.find('.focus').removeClass('focus'); 102 | $dropdown.find('.selected').addClass('focus'); 103 | } else { 104 | $dropdown.focus(); 105 | } 106 | }); 107 | 108 | // Close when clicking outside 109 | $(document).on('click.nice_select', function(event) { 110 | if ($(event.target).closest('.nice-select').length === 0) { 111 | $('.nice-select').removeClass('open').find('.option'); 112 | } 113 | }); 114 | 115 | // Option click 116 | $(document).on('click.nice_select', '.nice-select .option:not(.disabled)', function(event) { 117 | var $option = $(this); 118 | var $dropdown = $option.closest('.nice-select'); 119 | 120 | $dropdown.find('.selected').removeClass('selected'); 121 | $option.addClass('selected'); 122 | 123 | var text = $option.data('display') || $option.text(); 124 | $dropdown.find('.current').text(text); 125 | 126 | $dropdown.prev('select').val($option.data('value')).trigger('change'); 127 | }); 128 | 129 | // Keyboard events 130 | $(document).on('keydown.nice_select', '.nice-select', function(event) { 131 | var $dropdown = $(this); 132 | var $focused_option = $($dropdown.find('.focus') || $dropdown.find('.list .option.selected')); 133 | 134 | // Space or Enter 135 | if (event.keyCode == 32 || event.keyCode == 13) { 136 | if ($dropdown.hasClass('open')) { 137 | $focused_option.trigger('click'); 138 | } else { 139 | $dropdown.trigger('click'); 140 | } 141 | return false; 142 | // Down 143 | } else if (event.keyCode == 40) { 144 | if (!$dropdown.hasClass('open')) { 145 | $dropdown.trigger('click'); 146 | } else { 147 | var $next = $focused_option.nextAll('.option:not(.disabled)').first(); 148 | if ($next.length > 0) { 149 | $dropdown.find('.focus').removeClass('focus'); 150 | $next.addClass('focus'); 151 | } 152 | } 153 | return false; 154 | // Up 155 | } else if (event.keyCode == 38) { 156 | if (!$dropdown.hasClass('open')) { 157 | $dropdown.trigger('click'); 158 | } else { 159 | var $prev = $focused_option.prevAll('.option:not(.disabled)').first(); 160 | if ($prev.length > 0) { 161 | $dropdown.find('.focus').removeClass('focus'); 162 | $prev.addClass('focus'); 163 | } 164 | } 165 | return false; 166 | // Esc 167 | } else if (event.keyCode == 27) { 168 | if ($dropdown.hasClass('open')) { 169 | $dropdown.trigger('click'); 170 | } 171 | // Tab 172 | } else if (event.keyCode == 9) { 173 | if ($dropdown.hasClass('open')) { 174 | return false; 175 | } 176 | } 177 | }); 178 | 179 | // Detect CSS pointer-events support, for IE <= 10. From Modernizr. 180 | var style = document.createElement('a').style; 181 | style.cssText = 'pointer-events:auto'; 182 | if (style.pointerEvents !== 'auto') { 183 | $('html').addClass('no-csspointerevents'); 184 | } 185 | 186 | return this; 187 | 188 | }; 189 | 190 | }(jQuery)); -------------------------------------------------------------------------------- /scss/_header.scss: -------------------------------------------------------------------------------- 1 | //header_area css 2 | .header_area{ 3 | position: absolute; 4 | width: 100%; 5 | top: 0; 6 | left:0; 7 | z-index: 99; 8 | transition: background 0.4s, all 0.3s linear; 9 | .navbar{ 10 | background: transparent; 11 | padding: 0px; 12 | border: 0px; 13 | border-radius: 0px; 14 | .nav{ 15 | .nav-item{ 16 | margin-right: 45px; 17 | .nav-link{ 18 | font: 500 12px/120px $rob; 19 | text-transform: uppercase; 20 | color: #fff; 21 | padding: 0px; 22 | display: inline-block; 23 | &:after{ 24 | display: none; 25 | } 26 | } 27 | &:hover, &.active{ 28 | .nav-link{ 29 | color: #fff; 30 | } 31 | } 32 | &.submenu{ 33 | position: relative; 34 | ul{ 35 | border: none; 36 | padding: 0px; 37 | border-radius: 0px; 38 | box-shadow: none; 39 | margin: 0px; 40 | background: #fff; 41 | box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1); 42 | @media (min-width: 992px){ 43 | position: absolute; 44 | top: 120%; 45 | left: 0px; 46 | min-width: 200px; 47 | text-align: left; 48 | opacity: 0; 49 | transition: all 300ms ease-in; 50 | visibility: hidden; 51 | display: block; 52 | border: none; 53 | padding: 0px; 54 | border-radius: 0px; 55 | } 56 | &:before{ 57 | content: ""; 58 | width: 0; 59 | height: 0; 60 | border-style: solid; 61 | border-width: 10px 10px 0 10px; 62 | border-color: #eeeeee transparent transparent transparent; 63 | position: absolute; 64 | right: 24px; 65 | top: 45px; 66 | z-index: 3; 67 | opacity: 0; 68 | transition: all 400ms linear; 69 | } 70 | .nav-item{ 71 | display: block; 72 | float: none; 73 | margin-right: 0px; 74 | border-bottom: 1px solid #ededed; 75 | margin-left: 0px; 76 | transition: all 0.4s linear; 77 | .nav-link{ 78 | line-height: 45px; 79 | color: $dip; 80 | padding: 0px 30px; 81 | transition: all 150ms linear; 82 | display: block; 83 | margin-right: 0px; 84 | } 85 | &:last-child{ 86 | border-bottom: none; 87 | } 88 | &:hover{ 89 | .nav-link{ 90 | background: $baseColor; 91 | color: #fff; 92 | } 93 | } 94 | } 95 | } 96 | &:hover{ 97 | ul{ 98 | @media (min-width: 992px){ 99 | visibility: visible; 100 | opacity: 1; 101 | top: 100%; 102 | } 103 | .nav-item{ 104 | margin-top: 0px; 105 | } 106 | } 107 | } 108 | } 109 | &:last-child{ 110 | margin-right: 0px; 111 | } 112 | } 113 | } 114 | .search{ 115 | font-size: 12px; 116 | line-height: 60px; 117 | display: inline-block; 118 | color: $dip; 119 | margin-left: 80px; 120 | i{ 121 | font-weight: 600; 122 | } 123 | } 124 | } 125 | // & + section, & + row, & + div{ 126 | // margin-top: 120px; 127 | // } 128 | &.navbar_fixed{ 129 | .main_menu{ 130 | position: fixed; 131 | width: 100%; 132 | top: -70px; 133 | left: 0; 134 | right: 0; 135 | background: #000; 136 | transform: translateY(70px); 137 | transition: transform 500ms ease, background 500ms ease; 138 | -webkit-transition: transform 500ms ease, background 500ms ease; 139 | box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1); 140 | .navbar{ 141 | .nav{ 142 | .nav-item{ 143 | .nav-link{ 144 | line-height: 70px; 145 | } 146 | } 147 | } 148 | } 149 | } 150 | } 151 | } 152 | 153 | .top_menu{ 154 | background: #f9f9ff; 155 | .header_social{ 156 | li{ 157 | display: inline-block; 158 | margin-right: 15px; 159 | a{ 160 | font-size: 14px; 161 | color: $pfont; 162 | display: inline-block; 163 | line-height: 42px; 164 | @include transition; 165 | } 166 | &:last-child{ 167 | margin-right: 0px; 168 | } 169 | &:hover{ 170 | a{ 171 | color: $baseColor; 172 | } 173 | } 174 | } 175 | } 176 | .dn_btn{ 177 | line-height: 42px; 178 | display: inline-block; 179 | font-size: 12px; 180 | margin-right: 30px; 181 | font-family: $rob; 182 | font-weight: normal; 183 | color: $pfont; 184 | @include transition; 185 | &:hover{ 186 | color: $baseColor; 187 | } 188 | &:last-child{ 189 | margin-right: 0px; 190 | } 191 | } 192 | .lan_pack{ 193 | height: 30px; 194 | border: 1px solid #eeeeee; 195 | border-radius: 3px; 196 | line-height: 28px; 197 | font-size: 12px; 198 | font-family: $rob; 199 | font-weight: 500; 200 | padding-left: 19px; 201 | padding-right: 36px; 202 | color: $pfont; 203 | background: #f9f9ff; 204 | margin-right: 5px; 205 | margin-top: 8px; 206 | .current{ 207 | color: $pfont; 208 | } 209 | &:after{ 210 | content: "\f0d7"; 211 | border: none !important; 212 | font: normal normal normal 12px/1 FontAwesome; 213 | transform: rotate(0deg); 214 | height: auto; 215 | margin-top: -6px; 216 | right: 20px; 217 | } 218 | } 219 | } 220 | -------------------------------------------------------------------------------- /vendors/animate-css/wow.min.js: -------------------------------------------------------------------------------- 1 | /*! WOW - v1.1.3 - 2016-05-06 2 | * Copyright (c) 2016 Matthieu Aussaguel;*/(function(){var a,b,c,d,e,f=function(a,b){return function(){return a.apply(b,arguments)}},g=[].indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(b in this&&this[b]===a)return b;return-1};b=function(){function a(){}return a.prototype.extend=function(a,b){var c,d;for(c in b)d=b[c],null==a[c]&&(a[c]=d);return a},a.prototype.isMobile=function(a){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(a)},a.prototype.createEvent=function(a,b,c,d){var e;return null==b&&(b=!1),null==c&&(c=!1),null==d&&(d=null),null!=document.createEvent?(e=document.createEvent("CustomEvent"),e.initCustomEvent(a,b,c,d)):null!=document.createEventObject?(e=document.createEventObject(),e.eventType=a):e.eventName=a,e},a.prototype.emitEvent=function(a,b){return null!=a.dispatchEvent?a.dispatchEvent(b):b in(null!=a)?a[b]():"on"+b in(null!=a)?a["on"+b]():void 0},a.prototype.addEvent=function(a,b,c){return null!=a.addEventListener?a.addEventListener(b,c,!1):null!=a.attachEvent?a.attachEvent("on"+b,c):a[b]=c},a.prototype.removeEvent=function(a,b,c){return null!=a.removeEventListener?a.removeEventListener(b,c,!1):null!=a.detachEvent?a.detachEvent("on"+b,c):delete a[b]},a.prototype.innerHeight=function(){return"innerHeight"in window?window.innerHeight:document.documentElement.clientHeight},a}(),c=this.WeakMap||this.MozWeakMap||(c=function(){function a(){this.keys=[],this.values=[]}return a.prototype.get=function(a){var b,c,d,e,f;for(f=this.keys,b=d=0,e=f.length;e>d;b=++d)if(c=f[b],c===a)return this.values[b]},a.prototype.set=function(a,b){var c,d,e,f,g;for(g=this.keys,c=e=0,f=g.length;f>e;c=++e)if(d=g[c],d===a)return void(this.values[c]=b);return this.keys.push(a),this.values.push(b)},a}()),a=this.MutationObserver||this.WebkitMutationObserver||this.MozMutationObserver||(a=function(){function a(){"undefined"!=typeof console&&null!==console&&console.warn("MutationObserver is not supported by your browser."),"undefined"!=typeof console&&null!==console&&console.warn("WOW.js cannot detect dom mutations, please call .sync() after loading new content.")}return a.notSupported=!0,a.prototype.observe=function(){},a}()),d=this.getComputedStyle||function(a,b){return this.getPropertyValue=function(b){var c;return"float"===b&&(b="styleFloat"),e.test(b)&&b.replace(e,function(a,b){return b.toUpperCase()}),(null!=(c=a.currentStyle)?c[b]:void 0)||null},this},e=/(\-([a-z]){1})/g,this.WOW=function(){function e(a){null==a&&(a={}),this.scrollCallback=f(this.scrollCallback,this),this.scrollHandler=f(this.scrollHandler,this),this.resetAnimation=f(this.resetAnimation,this),this.start=f(this.start,this),this.scrolled=!0,this.config=this.util().extend(a,this.defaults),null!=a.scrollContainer&&(this.config.scrollContainer=document.querySelector(a.scrollContainer)),this.animationNameCache=new c,this.wowEvent=this.util().createEvent(this.config.boxClass)}return e.prototype.defaults={boxClass:"wow",animateClass:"animated",offset:0,mobile:!0,live:!0,callback:null,scrollContainer:null},e.prototype.init=function(){var a;return this.element=window.document.documentElement,"interactive"===(a=document.readyState)||"complete"===a?this.start():this.util().addEvent(document,"DOMContentLoaded",this.start),this.finished=[]},e.prototype.start=function(){var b,c,d,e;if(this.stopped=!1,this.boxes=function(){var a,c,d,e;for(d=this.element.querySelectorAll("."+this.config.boxClass),e=[],a=0,c=d.length;c>a;a++)b=d[a],e.push(b);return e}.call(this),this.all=function(){var a,c,d,e;for(d=this.boxes,e=[],a=0,c=d.length;c>a;a++)b=d[a],e.push(b);return e}.call(this),this.boxes.length)if(this.disabled())this.resetStyle();else for(e=this.boxes,c=0,d=e.length;d>c;c++)b=e[c],this.applyStyle(b,!0);return this.disabled()||(this.util().addEvent(this.config.scrollContainer||window,"scroll",this.scrollHandler),this.util().addEvent(window,"resize",this.scrollHandler),this.interval=setInterval(this.scrollCallback,50)),this.config.live?new a(function(a){return function(b){var c,d,e,f,g;for(g=[],c=0,d=b.length;d>c;c++)f=b[c],g.push(function(){var a,b,c,d;for(c=f.addedNodes||[],d=[],a=0,b=c.length;b>a;a++)e=c[a],d.push(this.doSync(e));return d}.call(a));return g}}(this)).observe(document.body,{childList:!0,subtree:!0}):void 0},e.prototype.stop=function(){return this.stopped=!0,this.util().removeEvent(this.config.scrollContainer||window,"scroll",this.scrollHandler),this.util().removeEvent(window,"resize",this.scrollHandler),null!=this.interval?clearInterval(this.interval):void 0},e.prototype.sync=function(b){return a.notSupported?this.doSync(this.element):void 0},e.prototype.doSync=function(a){var b,c,d,e,f;if(null==a&&(a=this.element),1===a.nodeType){for(a=a.parentNode||a,e=a.querySelectorAll("."+this.config.boxClass),f=[],c=0,d=e.length;d>c;c++)b=e[c],g.call(this.all,b)<0?(this.boxes.push(b),this.all.push(b),this.stopped||this.disabled()?this.resetStyle():this.applyStyle(b,!0),f.push(this.scrolled=!0)):f.push(void 0);return f}},e.prototype.show=function(a){return this.applyStyle(a),a.className=a.className+" "+this.config.animateClass,null!=this.config.callback&&this.config.callback(a),this.util().emitEvent(a,this.wowEvent),this.util().addEvent(a,"animationend",this.resetAnimation),this.util().addEvent(a,"oanimationend",this.resetAnimation),this.util().addEvent(a,"webkitAnimationEnd",this.resetAnimation),this.util().addEvent(a,"MSAnimationEnd",this.resetAnimation),a},e.prototype.applyStyle=function(a,b){var c,d,e;return d=a.getAttribute("data-wow-duration"),c=a.getAttribute("data-wow-delay"),e=a.getAttribute("data-wow-iteration"),this.animate(function(f){return function(){return f.customStyle(a,b,d,c,e)}}(this))},e.prototype.animate=function(){return"requestAnimationFrame"in window?function(a){return window.requestAnimationFrame(a)}:function(a){return a()}}(),e.prototype.resetStyle=function(){var a,b,c,d,e;for(d=this.boxes,e=[],b=0,c=d.length;c>b;b++)a=d[b],e.push(a.style.visibility="visible");return e},e.prototype.resetAnimation=function(a){var b;return a.type.toLowerCase().indexOf("animationend")>=0?(b=a.target||a.srcElement,b.className=b.className.replace(this.config.animateClass,"").trim()):void 0},e.prototype.customStyle=function(a,b,c,d,e){return b&&this.cacheAnimationName(a),a.style.visibility=b?"hidden":"visible",c&&this.vendorSet(a.style,{animationDuration:c}),d&&this.vendorSet(a.style,{animationDelay:d}),e&&this.vendorSet(a.style,{animationIterationCount:e}),this.vendorSet(a.style,{animationName:b?"none":this.cachedAnimationName(a)}),a},e.prototype.vendors=["moz","webkit"],e.prototype.vendorSet=function(a,b){var c,d,e,f;d=[];for(c in b)e=b[c],a[""+c]=e,d.push(function(){var b,d,g,h;for(g=this.vendors,h=[],b=0,d=g.length;d>b;b++)f=g[b],h.push(a[""+f+c.charAt(0).toUpperCase()+c.substr(1)]=e);return h}.call(this));return d},e.prototype.vendorCSS=function(a,b){var c,e,f,g,h,i;for(h=d(a),g=h.getPropertyCSSValue(b),f=this.vendors,c=0,e=f.length;e>c;c++)i=f[c],g=g||h.getPropertyCSSValue("-"+i+"-"+b);return g},e.prototype.animationName=function(a){var b;try{b=this.vendorCSS(a,"animation-name").cssText}catch(c){b=d(a).getPropertyValue("animation-name")}return"none"===b?"":b},e.prototype.cacheAnimationName=function(a){return this.animationNameCache.set(a,this.animationName(a))},e.prototype.cachedAnimationName=function(a){return this.animationNameCache.get(a)},e.prototype.scrollHandler=function(){return this.scrolled=!0},e.prototype.scrollCallback=function(){var a;return!this.scrolled||(this.scrolled=!1,this.boxes=function(){var b,c,d,e;for(d=this.boxes,e=[],b=0,c=d.length;c>b;b++)a=d[b],a&&(this.isVisible(a)?this.show(a):e.push(a));return e}.call(this),this.boxes.length||this.config.live)?void 0:this.stop()},e.prototype.offsetTop=function(a){for(var b;void 0===a.offsetTop;)a=a.parentNode;for(b=a.offsetTop;a=a.offsetParent;)b+=a.offsetTop;return b},e.prototype.isVisible=function(a){var b,c,d,e,f;return c=a.getAttribute("data-wow-offset")||this.config.offset,f=this.config.scrollContainer&&this.config.scrollContainer.scrollTop||window.pageYOffset,e=f+Math.min(this.element.clientHeight,this.util().innerHeight())-c,d=this.offsetTop(a),b=d+a.clientHeight,e>=d&&b>=f},e.prototype.util=function(){return null!=this._util?this._util:this._util=new b},e.prototype.disabled=function(){return!this.config.mobile&&this.util().isMobile(navigator.userAgent)},e}()}).call(this); -------------------------------------------------------------------------------- /vendors/counter-up/jquery.waypoints.min.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(){"use strict";function t(o){if(!o)throw new Error("No options passed to Waypoint constructor");if(!o.element)throw new Error("No element option passed to Waypoint constructor");if(!o.handler)throw new Error("No handler option passed to Waypoint constructor");this.key="waypoint-"+e,this.options=t.Adapter.extend({},t.defaults,o),this.element=this.options.element,this.adapter=new t.Adapter(this.element),this.callback=o.handler,this.axis=this.options.horizontal?"horizontal":"vertical",this.enabled=this.options.enabled,this.triggerPoint=null,this.group=t.Group.findOrCreate({name:this.options.group,axis:this.axis}),this.context=t.Context.findOrCreateByElement(this.options.context),t.offsetAliases[this.options.offset]&&(this.options.offset=t.offsetAliases[this.options.offset]),this.group.add(this),this.context.add(this),i[this.key]=this,e+=1}var e=0,i={};t.prototype.queueTrigger=function(t){this.group.queueTrigger(this,t)},t.prototype.trigger=function(t){this.enabled&&this.callback&&this.callback.apply(this,t)},t.prototype.destroy=function(){this.context.remove(this),this.group.remove(this),delete i[this.key]},t.prototype.disable=function(){return this.enabled=!1,this},t.prototype.enable=function(){return this.context.refresh(),this.enabled=!0,this},t.prototype.next=function(){return this.group.next(this)},t.prototype.previous=function(){return this.group.previous(this)},t.invokeAll=function(t){var e=[];for(var o in i)e.push(i[o]);for(var n=0,r=e.length;r>n;n++)e[n][t]()},t.destroyAll=function(){t.invokeAll("destroy")},t.disableAll=function(){t.invokeAll("disable")},t.enableAll=function(){t.Context.refreshAll();for(var e in i)i[e].enabled=!0;return this},t.refreshAll=function(){t.Context.refreshAll()},t.viewportHeight=function(){return window.innerHeight||document.documentElement.clientHeight},t.viewportWidth=function(){return document.documentElement.clientWidth},t.adapters=[],t.defaults={context:window,continuous:!0,enabled:!0,group:"default",horizontal:!1,offset:0},t.offsetAliases={"bottom-in-view":function(){return this.context.innerHeight()-this.adapter.outerHeight()},"right-in-view":function(){return this.context.innerWidth()-this.adapter.outerWidth()}},window.Waypoint=t}(),function(){"use strict";function t(t){window.setTimeout(t,1e3/60)}function e(t){this.element=t,this.Adapter=n.Adapter,this.adapter=new this.Adapter(t),this.key="waypoint-context-"+i,this.didScroll=!1,this.didResize=!1,this.oldScroll={x:this.adapter.scrollLeft(),y:this.adapter.scrollTop()},this.waypoints={vertical:{},horizontal:{}},t.waypointContextKey=this.key,o[t.waypointContextKey]=this,i+=1,n.windowContext||(n.windowContext=!0,n.windowContext=new e(window)),this.createThrottledScrollHandler(),this.createThrottledResizeHandler()}var i=0,o={},n=window.Waypoint,r=window.onload;e.prototype.add=function(t){var e=t.options.horizontal?"horizontal":"vertical";this.waypoints[e][t.key]=t,this.refresh()},e.prototype.checkEmpty=function(){var t=this.Adapter.isEmptyObject(this.waypoints.horizontal),e=this.Adapter.isEmptyObject(this.waypoints.vertical),i=this.element==this.element.window;t&&e&&!i&&(this.adapter.off(".waypoints"),delete o[this.key])},e.prototype.createThrottledResizeHandler=function(){function t(){e.handleResize(),e.didResize=!1}var e=this;this.adapter.on("resize.waypoints",function(){e.didResize||(e.didResize=!0,n.requestAnimationFrame(t))})},e.prototype.createThrottledScrollHandler=function(){function t(){e.handleScroll(),e.didScroll=!1}var e=this;this.adapter.on("scroll.waypoints",function(){(!e.didScroll||n.isTouch)&&(e.didScroll=!0,n.requestAnimationFrame(t))})},e.prototype.handleResize=function(){n.Context.refreshAll()},e.prototype.handleScroll=function(){var t={},e={horizontal:{newScroll:this.adapter.scrollLeft(),oldScroll:this.oldScroll.x,forward:"right",backward:"left"},vertical:{newScroll:this.adapter.scrollTop(),oldScroll:this.oldScroll.y,forward:"down",backward:"up"}};for(var i in e){var o=e[i],n=o.newScroll>o.oldScroll,r=n?o.forward:o.backward;for(var s in this.waypoints[i]){var a=this.waypoints[i][s];if(null!==a.triggerPoint){var l=o.oldScroll=a.triggerPoint,p=l&&h,u=!l&&!h;(p||u)&&(a.queueTrigger(r),t[a.group.id]=a.group)}}}for(var c in t)t[c].flushTriggers();this.oldScroll={x:e.horizontal.newScroll,y:e.vertical.newScroll}},e.prototype.innerHeight=function(){return this.element==this.element.window?n.viewportHeight():this.adapter.innerHeight()},e.prototype.remove=function(t){delete this.waypoints[t.axis][t.key],this.checkEmpty()},e.prototype.innerWidth=function(){return this.element==this.element.window?n.viewportWidth():this.adapter.innerWidth()},e.prototype.destroy=function(){var t=[];for(var e in this.waypoints)for(var i in this.waypoints[e])t.push(this.waypoints[e][i]);for(var o=0,n=t.length;n>o;o++)t[o].destroy()},e.prototype.refresh=function(){var t,e=this.element==this.element.window,i=e?void 0:this.adapter.offset(),o={};this.handleScroll(),t={horizontal:{contextOffset:e?0:i.left,contextScroll:e?0:this.oldScroll.x,contextDimension:this.innerWidth(),oldScroll:this.oldScroll.x,forward:"right",backward:"left",offsetProp:"left"},vertical:{contextOffset:e?0:i.top,contextScroll:e?0:this.oldScroll.y,contextDimension:this.innerHeight(),oldScroll:this.oldScroll.y,forward:"down",backward:"up",offsetProp:"top"}};for(var r in t){var s=t[r];for(var a in this.waypoints[r]){var l,h,p,u,c,d=this.waypoints[r][a],f=d.options.offset,w=d.triggerPoint,y=0,g=null==w;d.element!==d.element.window&&(y=d.adapter.offset()[s.offsetProp]),"function"==typeof f?f=f.apply(d):"string"==typeof f&&(f=parseFloat(f),d.options.offset.indexOf("%")>-1&&(f=Math.ceil(s.contextDimension*f/100))),l=s.contextScroll-s.contextOffset,d.triggerPoint=Math.floor(y+l-f),h=w=s.oldScroll,u=h&&p,c=!h&&!p,!g&&u?(d.queueTrigger(s.backward),o[d.group.id]=d.group):!g&&c?(d.queueTrigger(s.forward),o[d.group.id]=d.group):g&&s.oldScroll>=d.triggerPoint&&(d.queueTrigger(s.forward),o[d.group.id]=d.group)}}return n.requestAnimationFrame(function(){for(var t in o)o[t].flushTriggers()}),this},e.findOrCreateByElement=function(t){return e.findByElement(t)||new e(t)},e.refreshAll=function(){for(var t in o)o[t].refresh()},e.findByElement=function(t){return o[t.waypointContextKey]},window.onload=function(){r&&r(),e.refreshAll()},n.requestAnimationFrame=function(e){var i=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||t;i.call(window,e)},n.Context=e}(),function(){"use strict";function t(t,e){return t.triggerPoint-e.triggerPoint}function e(t,e){return e.triggerPoint-t.triggerPoint}function i(t){this.name=t.name,this.axis=t.axis,this.id=this.name+"-"+this.axis,this.waypoints=[],this.clearTriggerQueues(),o[this.axis][this.name]=this}var o={vertical:{},horizontal:{}},n=window.Waypoint;i.prototype.add=function(t){this.waypoints.push(t)},i.prototype.clearTriggerQueues=function(){this.triggerQueues={up:[],down:[],left:[],right:[]}},i.prototype.flushTriggers=function(){for(var i in this.triggerQueues){var o=this.triggerQueues[i],n="up"===i||"left"===i;o.sort(n?e:t);for(var r=0,s=o.length;s>r;r+=1){var a=o[r];(a.options.continuous||r===o.length-1)&&a.trigger([i])}}this.clearTriggerQueues()},i.prototype.next=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints),o=i===this.waypoints.length-1;return o?null:this.waypoints[i+1]},i.prototype.previous=function(e){this.waypoints.sort(t);var i=n.Adapter.inArray(e,this.waypoints);return i?this.waypoints[i-1]:null},i.prototype.queueTrigger=function(t,e){this.triggerQueues[e].push(t)},i.prototype.remove=function(t){var e=n.Adapter.inArray(t,this.waypoints);e>-1&&this.waypoints.splice(e,1)},i.prototype.first=function(){return this.waypoints[0]},i.prototype.last=function(){return this.waypoints[this.waypoints.length-1]},i.findOrCreate=function(t){return o[t.axis][t.name]||new i(t)},n.Group=i}(),function(){"use strict";function t(t){this.$element=e(t)}var e=window.jQuery,i=window.Waypoint;e.each(["innerHeight","innerWidth","off","offset","on","outerHeight","outerWidth","scrollLeft","scrollTop"],function(e,i){t.prototype[i]=function(){var t=Array.prototype.slice.call(arguments);return this.$element[i].apply(this.$element,t)}}),e.each(["extend","inArray","isEmptyObject"],function(i,o){t[o]=e[o]}),i.adapters.push({name:"jquery",Adapter:t}),i.Adapter=t}(),function(){"use strict";function t(t){return function(){var i=[],o=arguments[0];return t.isFunction(arguments[0])&&(o=t.extend({},arguments[1]),o.handler=arguments[0]),this.each(function(){var n=t.extend({},o,{element:this});"string"==typeof n.context&&(n.context=t(this).closest(n.context)[0]),i.push(new e(n))}),i}}var e=window.Waypoint;window.jQuery&&(window.jQuery.fn.waypoint=t(window.jQuery)),window.Zepto&&(window.Zepto.fn.waypoint=t(window.Zepto))}(); -------------------------------------------------------------------------------- /vendors/popup/magnific-popup.css: -------------------------------------------------------------------------------- 1 | /* Magnific Popup CSS */ 2 | .mfp-bg { 3 | top: 0; 4 | left: 0; 5 | width: 100%; 6 | height: 100%; 7 | z-index: 1042; 8 | overflow: hidden; 9 | position: fixed; 10 | background: #0b0b0b; 11 | opacity: 0.8; } 12 | 13 | .mfp-wrap { 14 | top: 0; 15 | left: 0; 16 | width: 100%; 17 | height: 100%; 18 | z-index: 1043; 19 | position: fixed; 20 | outline: none !important; 21 | -webkit-backface-visibility: hidden; } 22 | 23 | .mfp-container { 24 | text-align: center; 25 | position: absolute; 26 | width: 100%; 27 | height: 100%; 28 | left: 0; 29 | top: 0; 30 | padding: 0 8px; 31 | box-sizing: border-box; } 32 | 33 | .mfp-container:before { 34 | content: ''; 35 | display: inline-block; 36 | height: 100%; 37 | vertical-align: middle; } 38 | 39 | .mfp-align-top .mfp-container:before { 40 | display: none; } 41 | 42 | .mfp-content { 43 | position: relative; 44 | display: inline-block; 45 | vertical-align: middle; 46 | margin: 0 auto; 47 | text-align: left; 48 | z-index: 1045; } 49 | 50 | .mfp-inline-holder .mfp-content, 51 | .mfp-ajax-holder .mfp-content { 52 | width: 100%; 53 | cursor: auto; } 54 | 55 | .mfp-ajax-cur { 56 | cursor: progress; } 57 | 58 | .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close { 59 | cursor: -moz-zoom-out; 60 | cursor: -webkit-zoom-out; 61 | cursor: zoom-out; } 62 | 63 | .mfp-zoom { 64 | cursor: pointer; 65 | cursor: -webkit-zoom-in; 66 | cursor: -moz-zoom-in; 67 | cursor: zoom-in; } 68 | 69 | .mfp-auto-cursor .mfp-content { 70 | cursor: auto; } 71 | 72 | .mfp-close, 73 | .mfp-arrow, 74 | .mfp-preloader, 75 | .mfp-counter { 76 | -webkit-user-select: none; 77 | -moz-user-select: none; 78 | user-select: none; } 79 | 80 | .mfp-loading.mfp-figure { 81 | display: none; } 82 | 83 | .mfp-hide { 84 | display: none !important; } 85 | 86 | .mfp-preloader { 87 | color: #CCC; 88 | position: absolute; 89 | top: 50%; 90 | width: auto; 91 | text-align: center; 92 | margin-top: -0.8em; 93 | left: 8px; 94 | right: 8px; 95 | z-index: 1044; } 96 | .mfp-preloader a { 97 | color: #CCC; } 98 | .mfp-preloader a:hover { 99 | color: #FFF; } 100 | 101 | .mfp-s-ready .mfp-preloader { 102 | display: none; } 103 | 104 | .mfp-s-error .mfp-content { 105 | display: none; } 106 | 107 | button.mfp-close, 108 | button.mfp-arrow { 109 | overflow: visible; 110 | cursor: pointer; 111 | background: transparent; 112 | border: 0; 113 | -webkit-appearance: none; 114 | display: block; 115 | outline: none; 116 | padding: 0; 117 | z-index: 1046; 118 | box-shadow: none; 119 | touch-action: manipulation; } 120 | 121 | button::-moz-focus-inner { 122 | padding: 0; 123 | border: 0; } 124 | 125 | .mfp-close { 126 | width: 44px; 127 | height: 44px; 128 | line-height: 44px; 129 | position: absolute; 130 | right: 0; 131 | top: 0; 132 | text-decoration: none; 133 | text-align: center; 134 | opacity: 0.65; 135 | padding: 0 0 18px 10px; 136 | color: #FFF; 137 | font-style: normal; 138 | font-size: 28px; 139 | font-family: Arial, Baskerville, monospace; } 140 | .mfp-close:hover, 141 | .mfp-close:focus { 142 | opacity: 1; } 143 | .mfp-close:active { 144 | top: 1px; } 145 | 146 | .mfp-close-btn-in .mfp-close { 147 | color: #333; } 148 | 149 | .mfp-image-holder .mfp-close, 150 | .mfp-iframe-holder .mfp-close { 151 | color: #FFF; 152 | right: -6px; 153 | text-align: right; 154 | padding-right: 6px; 155 | width: 100%; } 156 | 157 | .mfp-counter { 158 | position: absolute; 159 | top: 0; 160 | right: 0; 161 | color: #CCC; 162 | font-size: 12px; 163 | line-height: 18px; 164 | white-space: nowrap; } 165 | 166 | .mfp-arrow { 167 | position: absolute; 168 | opacity: 0.65; 169 | margin: 0; 170 | top: 50%; 171 | margin-top: -55px; 172 | padding: 0; 173 | width: 90px; 174 | height: 110px; 175 | -webkit-tap-highlight-color: transparent; } 176 | .mfp-arrow:active { 177 | margin-top: -54px; } 178 | .mfp-arrow:hover, 179 | .mfp-arrow:focus { 180 | opacity: 1; } 181 | .mfp-arrow:before, 182 | .mfp-arrow:after { 183 | content: ''; 184 | display: block; 185 | width: 0; 186 | height: 0; 187 | position: absolute; 188 | left: 0; 189 | top: 0; 190 | margin-top: 35px; 191 | margin-left: 35px; 192 | border: medium inset transparent; } 193 | .mfp-arrow:after { 194 | border-top-width: 13px; 195 | border-bottom-width: 13px; 196 | top: 8px; } 197 | .mfp-arrow:before { 198 | border-top-width: 21px; 199 | border-bottom-width: 21px; 200 | opacity: 0.7; } 201 | 202 | .mfp-arrow-left { 203 | left: 0; } 204 | .mfp-arrow-left:after { 205 | border-right: 17px solid #FFF; 206 | margin-left: 31px; } 207 | .mfp-arrow-left:before { 208 | margin-left: 25px; 209 | border-right: 27px solid #3F3F3F; } 210 | 211 | .mfp-arrow-right { 212 | right: 0; } 213 | .mfp-arrow-right:after { 214 | border-left: 17px solid #FFF; 215 | margin-left: 39px; } 216 | .mfp-arrow-right:before { 217 | border-left: 27px solid #3F3F3F; } 218 | 219 | .mfp-iframe-holder { 220 | padding-top: 40px; 221 | padding-bottom: 40px; } 222 | .mfp-iframe-holder .mfp-content { 223 | line-height: 0; 224 | width: 100%; 225 | max-width: 900px; } 226 | .mfp-iframe-holder .mfp-close { 227 | top: -40px; } 228 | 229 | .mfp-iframe-scaler { 230 | width: 100%; 231 | height: 0; 232 | overflow: hidden; 233 | padding-top: 56.25%; } 234 | .mfp-iframe-scaler iframe { 235 | position: absolute; 236 | display: block; 237 | top: 0; 238 | left: 0; 239 | width: 100%; 240 | height: 100%; 241 | box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); 242 | background: #000; } 243 | 244 | /* Main image in popup */ 245 | img.mfp-img { 246 | width: auto; 247 | max-width: 100%; 248 | height: auto; 249 | display: block; 250 | line-height: 0; 251 | box-sizing: border-box; 252 | padding: 40px 0 40px; 253 | margin: 0 auto; } 254 | 255 | /* The shadow behind the image */ 256 | .mfp-figure { 257 | line-height: 0; } 258 | .mfp-figure:after { 259 | content: ''; 260 | position: absolute; 261 | left: 0; 262 | top: 40px; 263 | bottom: 40px; 264 | display: block; 265 | right: 0; 266 | width: auto; 267 | height: auto; 268 | z-index: -1; 269 | box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); 270 | background: #444; } 271 | .mfp-figure small { 272 | color: #BDBDBD; 273 | display: block; 274 | font-size: 12px; 275 | line-height: 14px; } 276 | .mfp-figure figure { 277 | margin: 0; } 278 | 279 | .mfp-bottom-bar { 280 | margin-top: -36px; 281 | position: absolute; 282 | top: 100%; 283 | left: 0; 284 | width: 100%; 285 | cursor: auto; } 286 | 287 | .mfp-title { 288 | text-align: left; 289 | line-height: 18px; 290 | color: #F3F3F3; 291 | word-wrap: break-word; 292 | padding-right: 36px; } 293 | 294 | .mfp-image-holder .mfp-content { 295 | max-width: 100%; } 296 | 297 | .mfp-gallery .mfp-image-holder .mfp-figure { 298 | cursor: pointer; } 299 | 300 | @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { 301 | /** 302 | * Remove all paddings around the image on small screen 303 | */ 304 | .mfp-img-mobile .mfp-image-holder { 305 | padding-left: 0; 306 | padding-right: 0; } 307 | .mfp-img-mobile img.mfp-img { 308 | padding: 0; } 309 | .mfp-img-mobile .mfp-figure:after { 310 | top: 0; 311 | bottom: 0; } 312 | .mfp-img-mobile .mfp-figure small { 313 | display: inline; 314 | margin-left: 5px; } 315 | .mfp-img-mobile .mfp-bottom-bar { 316 | background: rgba(0, 0, 0, 0.6); 317 | bottom: 0; 318 | margin: 0; 319 | top: auto; 320 | padding: 3px 5px; 321 | position: fixed; 322 | box-sizing: border-box; } 323 | .mfp-img-mobile .mfp-bottom-bar:empty { 324 | padding: 0; } 325 | .mfp-img-mobile .mfp-counter { 326 | right: 5px; 327 | top: 3px; } 328 | .mfp-img-mobile .mfp-close { 329 | top: 0; 330 | right: 0; 331 | width: 35px; 332 | height: 35px; 333 | line-height: 35px; 334 | background: rgba(0, 0, 0, 0.6); 335 | position: fixed; 336 | text-align: center; 337 | padding: 0; } } 338 | 339 | @media all and (max-width: 900px) { 340 | .mfp-arrow { 341 | -webkit-transform: scale(0.75); 342 | transform: scale(0.75); } 343 | .mfp-arrow-left { 344 | -webkit-transform-origin: 0; 345 | transform-origin: 0; } 346 | .mfp-arrow-right { 347 | -webkit-transform-origin: 100%; 348 | transform-origin: 100%; } 349 | .mfp-container { 350 | padding-left: 6px; 351 | padding-right: 6px; } } 352 | -------------------------------------------------------------------------------- /scss/_feature.scss: -------------------------------------------------------------------------------- 1 | /* Welcome Area css 2 | ============================================================================================ */ 3 | .welcome_area{ 4 | } 5 | .welcome_inner{ 6 | .welcome_img{ 7 | background: #eeeeee; 8 | margin-left: 40px; 9 | padding-left: 30px; 10 | padding-right: 30px; 11 | padding-bottom: 30px; 12 | img{ 13 | margin-top: -30px; 14 | } 15 | } 16 | } 17 | .welcome_text{ 18 | h4{ 19 | color: $dip; 20 | font-family: $hee; 21 | font-size: 36px; 22 | margin-bottom: 18px; 23 | text-transform: uppercase; 24 | } 25 | p{ 26 | max-width: 495px; 27 | font-family: $rob; 28 | margin-bottom: 40px; 29 | } 30 | } 31 | .wel_item{ 32 | border: 1px solid #eeeeee; 33 | padding: 20px 20px; 34 | border-radius: 5px; 35 | i{ 36 | font-size: 24px; 37 | background: linear-gradient(to right, #766dff 0%, #86e7ff 70%); 38 | -webkit-background-clip: text; 39 | -webkit-text-fill-color: transparent; 40 | } 41 | h4{ 42 | font-size: 24px; 43 | font-family: $hee; 44 | font-weight: bold; 45 | color: $dip; 46 | margin-bottom: 5px; 47 | margin-top: 10px; 48 | } 49 | p{ 50 | font-size: 16px; 51 | font-family: $rob; 52 | color: $pfont; 53 | margin-bottom: 0px; 54 | } 55 | } 56 | 57 | .tools_expert{ 58 | padding: 20px 0px 0px 0px; 59 | .skill_main{ 60 | .skill_item{ 61 | margin-bottom: 18px; 62 | &:last-child{ 63 | margin-bottom: 0px; 64 | } 65 | h4{ 66 | text-align: none; 67 | font-size: 14px; 68 | font-family: $rob; 69 | font-weight: 500; 70 | color: $dip; 71 | margin-bottom: 15px; 72 | } 73 | .progress_br{ 74 | border: 1px solid #eeeeee; 75 | padding: 5px; 76 | border-radius: 10px; 77 | } 78 | .progress{ 79 | height: 10px; 80 | border-radius: 10px; 81 | background: #e8e8e8; 82 | .progress-bar{ 83 | width: 0%; 84 | transition: width .6s ease; 85 | height: 10px; 86 | border-radius: 5px; 87 | vertical-align: middle; 88 | align-self: center; 89 | background-image: -moz-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 90 | background-image: -webkit-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 91 | background-image: -ms-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 92 | } 93 | } 94 | } 95 | } 96 | } 97 | 98 | /* End Welcome Area css 99 | ============================================================================================ */ 100 | 101 | /* My Tabs Area css 102 | ============================================================================================ */ 103 | .mytabs_area{ 104 | background-image: -moz-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 105 | background-image: -webkit-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 106 | background-image: -ms-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 107 | } 108 | .tabs_inner{ 109 | .nav.nav-tabs{ 110 | display: block; 111 | text-align: center; 112 | border: none; 113 | margin-bottom: 120px; 114 | li{ 115 | display: inline-block; 116 | margin-right: 8px; 117 | a{ 118 | margin: 0px; 119 | line-height: 50px; 120 | border-radius: 5px; 121 | padding: 0px 40px; 122 | font-size: 13px; 123 | font-weight: 500; 124 | color: #fff; 125 | font-family: $rob; 126 | border: 1px solid #9ab5f5; 127 | background: rgba(255, 255, 255, .1); 128 | &.active{ 129 | background: #fff; 130 | color: $dip; 131 | } 132 | } 133 | } 134 | } 135 | .tab-content{ 136 | .tab-pane{ 137 | .list{ 138 | max-width: 460px; 139 | margin: auto; 140 | position: relative; 141 | padding-top: 40px; 142 | padding-bottom: 60px; 143 | &:before{ 144 | content: ""; 145 | height: 100%; 146 | width: 5px; 147 | background: rgba(255, 255, 255, .20); 148 | position: absolute; 149 | left: 46%; 150 | transform: translateX(-50%); 151 | top: -5px; 152 | } 153 | li{ 154 | margin-bottom: 60px; 155 | position: relative; 156 | span{ 157 | height: 15px; 158 | width: 15px; 159 | border-radius: 50%; 160 | display: block; 161 | background: rgba(255, 255, 255, .2); 162 | position: absolute; 163 | left: 46%; 164 | top: 30px; 165 | transform: translateX(-50%); 166 | &:before{ 167 | content: ''; 168 | height: 7px; 169 | width: 7px; 170 | background: #fff; 171 | border-radius: 50%; 172 | position: absolute; 173 | left: 52%; 174 | top: 4px; 175 | transform: translateX(-50%); 176 | } 177 | } 178 | &:last-child{ 179 | margin-bottom: 0px; 180 | } 181 | .media{ 182 | .d-flex{ 183 | padding-right: 100px; 184 | p{ 185 | color: rgba(255, 255, 255, .75); 186 | margin-bottom: 0px; 187 | padding-top: 20px; 188 | } 189 | } 190 | .media-body{ 191 | h4{ 192 | color: #fff; 193 | font-size: 21px; 194 | text-transform: uppercase; 195 | margin-bottom: 20px; 196 | } 197 | p{ 198 | color: rgba(255, 255, 255, .75); 199 | margin-bottom: 0px; 200 | } 201 | } 202 | } 203 | } 204 | } 205 | } 206 | } 207 | } 208 | /* End My Tabs Area css 209 | ============================================================================================ */ 210 | 211 | /* Feature Area css 212 | ============================================================================================ */ 213 | .feature_area{ 214 | background: #f9f9ff; 215 | &.feature_tow{ 216 | background: #fff; 217 | .feature_item{ 218 | background: #f9f9ff; 219 | &:hover{ 220 | background: #fff; 221 | } 222 | } 223 | } 224 | &.white_feature{ 225 | background: #fff; 226 | .feature_item{ 227 | background: #f9f9ff; 228 | &:hover{ 229 | background: #fff; 230 | } 231 | } 232 | } 233 | } 234 | .feature_inner{ 235 | margin-bottom: -30px; 236 | } 237 | .feature_item{ 238 | padding: 50px 35px; 239 | border-radius: 10px; 240 | @include transition; 241 | background: #fff; 242 | margin-bottom: 30px; 243 | i{ 244 | margin-bottom: 35px; 245 | display: block; 246 | &:before{ 247 | margin-left: 0px; 248 | font-size: 60px; 249 | color: #e1e1e1; 250 | line-height: 60px; 251 | } 252 | } 253 | h4{ 254 | color: $dip; 255 | font-size: 21px; 256 | font-family: $hee; 257 | font-weight: bold; 258 | margin-bottom: 20px; 259 | text-transform: uppercase; 260 | } 261 | p{ 262 | margin-bottom: 0px; 263 | } 264 | .main_btn{ 265 | padding: 0px 30px; 266 | line-height: 38px; 267 | } 268 | &:hover{ 269 | box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.08); 270 | border-color: #fff; 271 | background: #fff; 272 | i{ 273 | &:before{ 274 | background: linear-gradient(to right, #8490ff 0%, #62bdfc 70%); 275 | -webkit-background-clip: text; 276 | -webkit-text-fill-color: transparent; 277 | } 278 | } 279 | } 280 | } 281 | /* End Feature Area css 282 | ============================================================================================ */ 283 | 284 | /* Personal Profile Area css 285 | ============================================================================================ */ 286 | .profile_area{ 287 | .col-lg-7{ 288 | vertical-align: middle; 289 | align-self: center; 290 | } 291 | 292 | } 293 | .profile_inner{ 294 | border-bottom: 1px solid #eeeeee; 295 | .personal_text{ 296 | padding-left: 95px; 297 | } 298 | } 299 | 300 | .personal_text{ 301 | h6{ 302 | font-size: 14px; 303 | font-family: $rob; 304 | text-transform: uppercase; 305 | letter-spacing: 2.1px; 306 | font-weight: normal; 307 | margin-bottom: 12px; 308 | color: $dip; 309 | } 310 | h4{ 311 | font-size: 16px; 312 | font-weight: 500; 313 | font-family: $rob; 314 | text-transform: uppercase; 315 | margin-bottom: 20px; 316 | color: $dip; 317 | } 318 | h3{ 319 | font-size: 48px; 320 | text-transform: uppercase; 321 | margin-bottom: 15px; 322 | color: $dip; 323 | } 324 | p{ 325 | font-family: $rob; 326 | max-width: 540px; 327 | color: $pfont; 328 | margin-bottom: 40px; 329 | } 330 | .basic_info{ 331 | li{ 332 | margin-bottom: 15px; 333 | a{ 334 | position: relative; 335 | padding-left: 40px; 336 | font-size: 16px; 337 | color: $pfont; 338 | i{ 339 | position: absolute; 340 | left: 0px; 341 | top: 50%; 342 | transform: translateY(-50%); 343 | font-size: 20px; 344 | color: $baseColor; 345 | } 346 | } 347 | &:last-child{ 348 | margin-bottom: 0px; 349 | } 350 | } 351 | } 352 | .personal_social{ 353 | margin-top: 45px; 354 | li{ 355 | display: inline-block; 356 | margin-right: 7px; 357 | &:last-child{ 358 | margin-right: 0px; 359 | } 360 | a{ 361 | line-height: 40px; 362 | width: 40px; 363 | background: #e8e8e8; 364 | border-radius: 5px; 365 | display: inline-block; 366 | text-align: center; 367 | color: #fff; 368 | font-size: 16px; 369 | } 370 | &:hover{ 371 | a{ 372 | background-image: -moz-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 373 | background-image: -webkit-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 374 | background-image: -ms-linear-gradient( 0deg, rgb(118,109,255) 0%, rgb(136,243,255) 100%); 375 | } 376 | } 377 | } 378 | } 379 | } 380 | 381 | 382 | /* End Personal Profile Area css 383 | ============================================================================================ */ -------------------------------------------------------------------------------- /vendors/nice-select/css/style.css: -------------------------------------------------------------------------------- 1 | .nice-select { 2 | -webkit-tap-highlight-color: transparent; 3 | background-color: #fff; 4 | border-radius: 5px; 5 | border: solid 1px #e0e7ee; 6 | box-sizing: border-box; 7 | clear: both; 8 | cursor: pointer; 9 | display: block; 10 | float: left; 11 | font-family: inherit; 12 | font-size: 14px; 13 | font-weight: normal; 14 | height: 42px; 15 | line-height: 40px; 16 | outline: none; 17 | padding-left: 18px; 18 | padding-right: 30px; 19 | position: relative; 20 | text-align: left !important; 21 | -webkit-transition: all 0.2s ease-in-out; 22 | transition: all 0.2s ease-in-out; 23 | -webkit-user-select: none; 24 | -moz-user-select: none; 25 | -ms-user-select: none; 26 | user-select: none; 27 | white-space: nowrap; 28 | width: auto; } 29 | .nice-select:hover { 30 | border-color: #d0dae5; } 31 | .nice-select:active, .nice-select.open, .nice-select:focus { 32 | border-color: #88bfff; } 33 | .nice-select:after { 34 | border-bottom: 2px solid #90a1b5; 35 | border-right: 2px solid #90a1b5; 36 | content: ''; 37 | display: block; 38 | height: 5px; 39 | margin-top: -4px; 40 | pointer-events: none; 41 | position: absolute; 42 | right: 12px; 43 | top: 50%; 44 | -webkit-transform-origin: 66% 66%; 45 | -ms-transform-origin: 66% 66%; 46 | transform-origin: 66% 66%; 47 | -webkit-transform: rotate(45deg); 48 | -ms-transform: rotate(45deg); 49 | transform: rotate(45deg); 50 | -webkit-transition: all 0.15s ease-in-out; 51 | transition: all 0.15s ease-in-out; 52 | width: 5px; } 53 | .nice-select.open:after { 54 | -webkit-transform: rotate(-135deg); 55 | -ms-transform: rotate(-135deg); 56 | transform: rotate(-135deg); } 57 | .nice-select.open .list { 58 | opacity: 1; 59 | pointer-events: auto; 60 | -webkit-transform: scale(1) translateY(0); 61 | -ms-transform: scale(1) translateY(0); 62 | transform: scale(1) translateY(0); } 63 | .nice-select.disabled { 64 | border-color: #e7ecf2; 65 | color: #90a1b5; 66 | pointer-events: none; } 67 | .nice-select.disabled:after { 68 | border-color: #cdd5de; } 69 | .nice-select.wide { 70 | width: 100%; } 71 | .nice-select.wide .list { 72 | left: 0 !important; 73 | right: 0 !important; } 74 | .nice-select.right { 75 | float: right; } 76 | .nice-select.right .list { 77 | left: auto; 78 | right: 0; } 79 | .nice-select.small { 80 | font-size: 12px; 81 | height: 36px; 82 | line-height: 34px; } 83 | .nice-select.small:after { 84 | height: 4px; 85 | width: 4px; } 86 | .nice-select.small .option { 87 | line-height: 34px; 88 | min-height: 34px; } 89 | .nice-select .list { 90 | background-color: #fff; 91 | border-radius: 5px; 92 | box-shadow: 0 0 0 1px rgba(68, 88, 112, 0.11); 93 | box-sizing: border-box; 94 | margin-top: 4px; 95 | opacity: 0; 96 | overflow: hidden; 97 | padding: 0; 98 | pointer-events: none; 99 | position: absolute; 100 | top: 100%; 101 | left: 0; 102 | -webkit-transform-origin: 50% 0; 103 | -ms-transform-origin: 50% 0; 104 | transform-origin: 50% 0; 105 | -webkit-transform: scale(0.75) translateY(-21px); 106 | -ms-transform: scale(0.75) translateY(-21px); 107 | transform: scale(0.75) translateY(-21px); 108 | -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; 109 | transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; 110 | z-index: 9; } 111 | .nice-select .list:hover .option:not(:hover) { 112 | background-color: transparent !important; } 113 | .nice-select .option { 114 | cursor: pointer; 115 | font-weight: 400; 116 | line-height: 40px; 117 | list-style: none; 118 | min-height: 40px; 119 | outline: none; 120 | padding-left: 18px; 121 | padding-right: 29px; 122 | text-align: left; 123 | -webkit-transition: all 0.2s; 124 | transition: all 0.2s; } 125 | .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus { 126 | background-color: #f6f7f9; } 127 | .nice-select .option.selected { 128 | font-weight: bold; } 129 | .nice-select .option.disabled { 130 | background-color: transparent; 131 | color: #90a1b5; 132 | cursor: default; } 133 | 134 | .no-csspointerevents .nice-select .list { 135 | display: none; } 136 | 137 | .no-csspointerevents .nice-select.open .list { 138 | display: block; } 139 | 140 | code[class*="language-"], 141 | pre[class*="language-"] { 142 | border-radius: 2px; 143 | color: #445870; 144 | -webkit-hyphens: none; 145 | -ms-hyphens: none; 146 | hyphens: none; 147 | line-height: 1.5; 148 | -moz-tab-size: 4; 149 | -o-tab-size: 4; 150 | tab-size: 4; 151 | text-align: left; 152 | white-space: pre; 153 | word-break: normal; 154 | word-spacing: normal; 155 | word-wrap: normal; 156 | direction: ltr; 157 | font-family: Inconsolata, monospace; 158 | font-size: 13px; 159 | letter-spacing: 0; } 160 | 161 | /* Code blocks */ 162 | pre[class*="language-"] { 163 | padding: 18px 24px; 164 | margin: 0 0 24px; 165 | overflow: auto; } 166 | 167 | :not(pre) > code[class*="language-"], 168 | pre[class*="language-"] { 169 | background: #f6f7f9; } 170 | 171 | /* Inline code */ 172 | :not(pre) > code[class*="language-"] { 173 | padding: 0 2px 1px; } 174 | 175 | .token.comment, 176 | .token.prolog, 177 | .token.doctype, 178 | .token.cdata { 179 | color: #90a1b5; } 180 | 181 | .token.punctuation { 182 | color: #999; } 183 | 184 | .namespace { 185 | opacity: .7; } 186 | 187 | .token.property, 188 | .token.tag, 189 | .token.boolean, 190 | .token.number, 191 | .token.constant, 192 | .token.symbol, 193 | .token.deleted { 194 | color: #EC4444; } 195 | 196 | .token.selector, 197 | .token.attr-name, 198 | .token.string, 199 | .token.char, 200 | .token.builtin, 201 | .token.inserted { 202 | color: #4ABF60; } 203 | 204 | .token.operator, 205 | .token.entity, 206 | .token.url, 207 | .language-css .token.string, 208 | .style .token.string { 209 | color: #a67f59; 210 | background: rgba(255, 255, 255, 0.5); } 211 | 212 | .token.atrule, 213 | .token.attr-value, 214 | .token.keyword { 215 | color: #55a1fb; } 216 | 217 | .token.function { 218 | color: #DD4A68; } 219 | 220 | .token.regex, 221 | .token.important, 222 | .token.variable { 223 | color: #e90; } 224 | 225 | .token.important, 226 | .token.bold { 227 | font-weight: bold; } 228 | 229 | .token.italic { 230 | font-style: italic; } 231 | 232 | .token.entity { 233 | cursor: help; } 234 | 235 | body { 236 | -webkit-font-smoothing: antialiased; 237 | -moz-osx-font-smoothing: grayscale; 238 | color: #445870; 239 | font-family: 'Work Sans', sans-serif; 240 | font-size: 14px; 241 | font-weight: normal; 242 | letter-spacing: -0.25px; 243 | margin: 0; 244 | padding: 0 18px; } 245 | 246 | p { 247 | line-height: 1.6; 248 | margin: 0 0 1.6em; } 249 | 250 | h1 { 251 | font-size: 36px; 252 | font-weight: 300; 253 | letter-spacing: -2px; 254 | margin: 0 0 24px; } 255 | 256 | h2 { 257 | font-size: 22px; 258 | font-weight: 400; 259 | margin: 0 0 12px; 260 | padding-top: 48px; } 261 | 262 | h3 { 263 | font-size: 18px; 264 | font-weight: 400; 265 | margin: 0 0 12px; 266 | padding-top: 12px; } 267 | 268 | ul { 269 | margin: 0; 270 | padding-left: 16px; } 271 | 272 | a:not(.button) { 273 | color: #55a1fb; 274 | outline: none; 275 | text-decoration: none; 276 | -webkit-transition: all 0.2s ease-in-out; 277 | transition: all 0.2s ease-in-out; 278 | border-bottom: 1px solid transparent; } 279 | a:not(.button):hover, a:not(.button):focus { 280 | border-bottom: 1px solid #88bfff; } 281 | 282 | ::-moz-selection { 283 | background: #f3f4f7; } 284 | 285 | ::selection { 286 | background: #f3f4f7; } 287 | 288 | .container { 289 | margin: 96px auto 60px; 290 | max-width: 40em; } 291 | 292 | .box { 293 | background-color: #f6f7f9; 294 | border-radius: 2px; 295 | margin-bottom: 30px; 296 | padding: 24px 30px; } 297 | .box:before, .box:after { 298 | content: ""; 299 | display: table; } 300 | .box:after { 301 | clear: both; } 302 | 303 | label { 304 | color: #90a1b5; 305 | font-size: 11px; 306 | margin: 0 2px 4px; 307 | text-transform: uppercase; 308 | float: left; } 309 | label.right { 310 | float: right; } 311 | 312 | .button { 313 | -webkit-tap-highlight-color: transparent; 314 | background-color: #55a1fb; 315 | border-radius: 5px; 316 | border: none; 317 | box-sizing: border-box; 318 | color: #fff; 319 | cursor: pointer; 320 | display: inline-block; 321 | font-weight: 600; 322 | height: 42px; 323 | line-height: 42px; 324 | outline: none; 325 | padding: 0 24px; 326 | text-align: center; 327 | text-decoration: none; 328 | -webkit-transition: all 0.2s ease-in-out; 329 | transition: all 0.2s ease-in-out; 330 | white-space: nowrap; 331 | width: auto; } 332 | .button:hover, .button:focus { 333 | background-color: #4196fb; } 334 | .button:active, .button.nice-select.open { 335 | background-color: #2d8bfa; } 336 | .button.light { 337 | background-color: #fff; 338 | border: 1px solid #e0e7ee; 339 | color: #55a1fb; 340 | line-height: 40px; 341 | margin-left: 24px; } 342 | .button.light:hover { 343 | border-color: #d0dae5; } 344 | .button.light:active, .button.light.nice-select.open, .button.light:focus { 345 | border-color: #88bfff; } 346 | @media screen and (max-width: 360px) { 347 | .button { 348 | width: 100%; } 349 | .button.light { 350 | margin: 18px 0 0; } } 351 | 352 | .header { 353 | text-align: center; 354 | margin-bottom: 60px; } 355 | @media screen and (min-width: 600px) { 356 | .header { 357 | padding: 0 18px; } } 358 | .header p { 359 | color: #90a1b5; 360 | font-size: 18px; 361 | margin-bottom: 36px; } 362 | 363 | .footer { 364 | text-align: center; } 365 | .footer p { 366 | margin-bottom: 90px; } 367 | 368 | .credit { 369 | color: #90a1b5; 370 | clear: both; 371 | font-size: 12px; 372 | margin-top: 90px; } 373 | -------------------------------------------------------------------------------- /vendors/bootstrap-datepicker/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Datetimepicker for Bootstrap 3 | * 4 | * Copyright 2012 Stefan Petre 5 | * Improvements by Andrew Rowls 6 | * Licensed under the Apache License v2.0 7 | * http://www.apache.org/licenses/LICENSE-2.0 8 | * 9 | */.datetimepicker{padding:4px;margin-top:1px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;direction:ltr}.datetimepicker-inline{width:220px}.datetimepicker.datetimepicker-rtl{direction:rtl}.datetimepicker.datetimepicker-rtl table tr td span{float:right}.datetimepicker-dropdown,.datetimepicker-dropdown-left{top:0;left:0}[class*=" datetimepicker-dropdown"]:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute}[class*=" datetimepicker-dropdown"]:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute}[class*=" datetimepicker-dropdown-top"]:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,0.2);border-bottom:0}[class*=" datetimepicker-dropdown-top"]:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;border-bottom:0}.datetimepicker-dropdown-bottom-left:before{top:-7px;right:6px}.datetimepicker-dropdown-bottom-left:after{top:-6px;right:7px}.datetimepicker-dropdown-bottom-right:before{top:-7px;left:6px}.datetimepicker-dropdown-bottom-right:after{top:-6px;left:7px}.datetimepicker-dropdown-top-left:before{bottom:-7px;right:6px}.datetimepicker-dropdown-top-left:after{bottom:-6px;right:7px}.datetimepicker-dropdown-top-right:before{bottom:-7px;left:6px}.datetimepicker-dropdown-top-right:after{bottom:-6px;left:7px}.datetimepicker>div{display:none}.datetimepicker.minutes div.datetimepicker-minutes{display:block}.datetimepicker.hours div.datetimepicker-hours{display:block}.datetimepicker.days div.datetimepicker-days{display:block}.datetimepicker.months div.datetimepicker-months{display:block}.datetimepicker.years div.datetimepicker-years{display:block}.datetimepicker table{margin:0}.datetimepicker td,.datetimepicker th{text-align:center;width:20px;height:20px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border:0}.table-striped .datetimepicker table tr td,.table-striped .datetimepicker table tr th{background-color:transparent}.datetimepicker table tr td.minute:hover{background:#eee;cursor:pointer}.datetimepicker table tr td.hour:hover{background:#eee;cursor:pointer}.datetimepicker table tr td.day:hover{background:#eee;cursor:pointer}.datetimepicker table tr td.old,.datetimepicker table tr td.new{color:#999}.datetimepicker table tr td.disabled,.datetimepicker table tr td.disabled:hover{background:0;color:#999;cursor:default}.datetimepicker table tr td.today,.datetimepicker table tr td.today:hover,.datetimepicker table tr td.today.disabled,.datetimepicker table tr td.today.disabled:hover{background-color:#fde19a;background-image:-moz-linear-gradient(top,#fdd49a,#fdf59a);background-image:-ms-linear-gradient(top,#fdd49a,#fdf59a);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fdd49a),to(#fdf59a));background-image:-webkit-linear-gradient(top,#fdd49a,#fdf59a);background-image:-o-linear-gradient(top,#fdd49a,#fdf59a);background-image:linear-gradient(to bottom,#fdd49a,#fdf59a);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a',endColorstr='#fdf59a',GradientType=0);border-color:#fdf59a #fdf59a #fbed50;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.datetimepicker table tr td.today:hover,.datetimepicker table tr td.today:hover:hover,.datetimepicker table tr td.today.disabled:hover,.datetimepicker table tr td.today.disabled:hover:hover,.datetimepicker table tr td.today:active,.datetimepicker table tr td.today:hover:active,.datetimepicker table tr td.today.disabled:active,.datetimepicker table tr td.today.disabled:hover:active,.datetimepicker table tr td.today.active,.datetimepicker table tr td.today:hover.active,.datetimepicker table tr td.today.disabled.active,.datetimepicker table tr td.today.disabled:hover.active,.datetimepicker table tr td.today.disabled,.datetimepicker table tr td.today:hover.disabled,.datetimepicker table tr td.today.disabled.disabled,.datetimepicker table tr td.today.disabled:hover.disabled,.datetimepicker table tr td.today[disabled],.datetimepicker table tr td.today:hover[disabled],.datetimepicker table tr td.today.disabled[disabled],.datetimepicker table tr td.today.disabled:hover[disabled]{background-color:#fdf59a}.datetimepicker table tr td.today:active,.datetimepicker table tr td.today:hover:active,.datetimepicker table tr td.today.disabled:active,.datetimepicker table tr td.today.disabled:hover:active,.datetimepicker table tr td.today.active,.datetimepicker table tr td.today:hover.active,.datetimepicker table tr td.today.disabled.active,.datetimepicker table tr td.today.disabled:hover.active{background-color:#fbf069}.datetimepicker table tr td.active,.datetimepicker table tr td.active:hover,.datetimepicker table tr td.active.disabled,.datetimepicker table tr td.active.disabled:hover{background-color:#006dcc;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-ms-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc',endColorstr='#0044cc',GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.datetimepicker table tr td.active:hover,.datetimepicker table tr td.active:hover:hover,.datetimepicker table tr td.active.disabled:hover,.datetimepicker table tr td.active.disabled:hover:hover,.datetimepicker table tr td.active:active,.datetimepicker table tr td.active:hover:active,.datetimepicker table tr td.active.disabled:active,.datetimepicker table tr td.active.disabled:hover:active,.datetimepicker table tr td.active.active,.datetimepicker table tr td.active:hover.active,.datetimepicker table tr td.active.disabled.active,.datetimepicker table tr td.active.disabled:hover.active,.datetimepicker table tr td.active.disabled,.datetimepicker table tr td.active:hover.disabled,.datetimepicker table tr td.active.disabled.disabled,.datetimepicker table tr td.active.disabled:hover.disabled,.datetimepicker table tr td.active[disabled],.datetimepicker table tr td.active:hover[disabled],.datetimepicker table tr td.active.disabled[disabled],.datetimepicker table tr td.active.disabled:hover[disabled]{background-color:#04c}.datetimepicker table tr td.active:active,.datetimepicker table tr td.active:hover:active,.datetimepicker table tr td.active.disabled:active,.datetimepicker table tr td.active.disabled:hover:active,.datetimepicker table tr td.active.active,.datetimepicker table tr td.active:hover.active,.datetimepicker table tr td.active.disabled.active,.datetimepicker table tr td.active.disabled:hover.active{background-color:#039}.datetimepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.datetimepicker .datetimepicker-hours span{height:26px;line-height:26px}.datetimepicker .datetimepicker-hours table tr td span.hour_am,.datetimepicker .datetimepicker-hours table tr td span.hour_pm{width:14.6%}.datetimepicker .datetimepicker-hours fieldset legend,.datetimepicker .datetimepicker-minutes fieldset legend{margin-bottom:inherit;line-height:30px}.datetimepicker .datetimepicker-minutes span{height:26px;line-height:26px}.datetimepicker table tr td span:hover{background:#eee}.datetimepicker table tr td span.disabled,.datetimepicker table tr td span.disabled:hover{background:0;color:#999;cursor:default}.datetimepicker table tr td span.active,.datetimepicker table tr td span.active:hover,.datetimepicker table tr td span.active.disabled,.datetimepicker table tr td span.active.disabled:hover{background-color:#006dcc;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-ms-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc',endColorstr='#0044cc',GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.datetimepicker table tr td span.active:hover,.datetimepicker table tr td span.active:hover:hover,.datetimepicker table tr td span.active.disabled:hover,.datetimepicker table tr td span.active.disabled:hover:hover,.datetimepicker table tr td span.active:active,.datetimepicker table tr td span.active:hover:active,.datetimepicker table tr td span.active.disabled:active,.datetimepicker table tr td span.active.disabled:hover:active,.datetimepicker table tr td span.active.active,.datetimepicker table tr td span.active:hover.active,.datetimepicker table tr td span.active.disabled.active,.datetimepicker table tr td span.active.disabled:hover.active,.datetimepicker table tr td span.active.disabled,.datetimepicker table tr td span.active:hover.disabled,.datetimepicker table tr td span.active.disabled.disabled,.datetimepicker table tr td span.active.disabled:hover.disabled,.datetimepicker table tr td span.active[disabled],.datetimepicker table tr td span.active:hover[disabled],.datetimepicker table tr td span.active.disabled[disabled],.datetimepicker table tr td span.active.disabled:hover[disabled]{background-color:#04c}.datetimepicker table tr td span.active:active,.datetimepicker table tr td span.active:hover:active,.datetimepicker table tr td span.active.disabled:active,.datetimepicker table tr td span.active.disabled:hover:active,.datetimepicker table tr td span.active.active,.datetimepicker table tr td span.active:hover.active,.datetimepicker table tr td span.active.disabled.active,.datetimepicker table tr td span.active.disabled:hover.active{background-color:#039}.datetimepicker table tr td span.old{color:#999}.datetimepicker th.switch{width:145px}.datetimepicker th span.glyphicon{pointer-events:none}.datetimepicker thead tr:first-child th,.datetimepicker tfoot th{cursor:pointer}.datetimepicker thead tr:first-child th:hover,.datetimepicker tfoot th:hover{background:#eee}.input-append.date .add-on i,.input-prepend.date .add-on i,.input-group.date .input-group-addon span{cursor:pointer;width:14px;height:14px} -------------------------------------------------------------------------------- /js/custom.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | "use strict" 3 | var nav_offset_top = $('.header_area').height()+50; 4 | /*------------------------------------------------------------------------------- 5 | Navbar 6 | -------------------------------------------------------------------------------*/ 7 | 8 | //* Navbar Fixed 9 | function navbarFixed(){ 10 | if ( $('.header_area').length ){ 11 | $(window).scroll(function() { 12 | var scroll = $(window).scrollTop(); 13 | if (scroll >= nav_offset_top ) { 14 | $(".header_area").addClass("navbar_fixed"); 15 | } else { 16 | $(".header_area").removeClass("navbar_fixed"); 17 | } 18 | }); 19 | }; 20 | }; 21 | navbarFixed(); 22 | 23 | function testimonialSlider(){ 24 | if ( $('.testimonial_slider').length ){ 25 | $('.testimonial_slider').owlCarousel({ 26 | loop:true, 27 | margin: 30, 28 | items: 2, 29 | nav:false, 30 | autoplay: true, 31 | dots: true, 32 | smartSpeed: 1500, 33 | responsiveClass: true, 34 | responsive: { 35 | 0: { 36 | items: 1, 37 | }, 38 | 768: { 39 | items: 2, 40 | }, 41 | } 42 | }) 43 | } 44 | } 45 | testimonialSlider(); 46 | 47 | //------- Mailchimp js --------// 48 | 49 | function mailChimp(){ 50 | $('#mc_embed_signup').find('form').ajaxChimp(); 51 | } 52 | mailChimp(); 53 | 54 | /* ===== Parallax Effect===== */ 55 | 56 | function parallaxEffect() { 57 | $('.bg-parallax').parallax(); 58 | } 59 | parallaxEffect(); 60 | 61 | 62 | $('select').niceSelect(); 63 | $('#datetimepicker11,#datetimepicker1').datetimepicker({ 64 | daysOfWeekDisabled: [0, 6] 65 | }); 66 | 67 | /*---------gallery isotope js-----------*/ 68 | function galleryMasonry(){ 69 | if ( $('#gallery').length ){ 70 | $('#gallery').imagesLoaded( function() { 71 | // images have loaded 72 | // Activate isotope in container 73 | $("#gallery").isotope({ 74 | itemSelector: ".gallery_item", 75 | layoutMode: 'masonry', 76 | animationOptions: { 77 | duration: 750, 78 | easing: 'linear' 79 | } 80 | }); 81 | }) 82 | } 83 | } 84 | galleryMasonry(); 85 | 86 | /*----------------------------------------------------*/ 87 | /* Simple LightBox js 88 | /*----------------------------------------------------*/ 89 | $('.imageGallery1 .light').simpleLightbox(); 90 | 91 | /*----------------------------------------------------*/ 92 | /* Google map js 93 | /*----------------------------------------------------*/ 94 | 95 | if ( $('#mapBox').length ){ 96 | var $lat = $('#mapBox').data('lat'); 97 | var $lon = $('#mapBox').data('lon'); 98 | var $zoom = $('#mapBox').data('zoom'); 99 | var $marker = $('#mapBox').data('marker'); 100 | var $info = $('#mapBox').data('info'); 101 | var $markerLat = $('#mapBox').data('mlat'); 102 | var $markerLon = $('#mapBox').data('mlon'); 103 | var map = new GMaps({ 104 | el: '#mapBox', 105 | lat: $lat, 106 | lng: $lon, 107 | scrollwheel: false, 108 | scaleControl: true, 109 | streetViewControl: false, 110 | panControl: true, 111 | disableDoubleClickZoom: true, 112 | mapTypeControl: false, 113 | zoom: $zoom, 114 | styles: [ 115 | { 116 | "featureType": "water", 117 | "elementType": "geometry.fill", 118 | "stylers": [ 119 | { 120 | "color": "#dcdfe6" 121 | } 122 | ] 123 | }, 124 | { 125 | "featureType": "transit", 126 | "stylers": [ 127 | { 128 | "color": "#808080" 129 | }, 130 | { 131 | "visibility": "off" 132 | } 133 | ] 134 | }, 135 | { 136 | "featureType": "road.highway", 137 | "elementType": "geometry.stroke", 138 | "stylers": [ 139 | { 140 | "visibility": "on" 141 | }, 142 | { 143 | "color": "#dcdfe6" 144 | } 145 | ] 146 | }, 147 | { 148 | "featureType": "road.highway", 149 | "elementType": "geometry.fill", 150 | "stylers": [ 151 | { 152 | "color": "#ffffff" 153 | } 154 | ] 155 | }, 156 | { 157 | "featureType": "road.local", 158 | "elementType": "geometry.fill", 159 | "stylers": [ 160 | { 161 | "visibility": "on" 162 | }, 163 | { 164 | "color": "#ffffff" 165 | }, 166 | { 167 | "weight": 1.8 168 | } 169 | ] 170 | }, 171 | { 172 | "featureType": "road.local", 173 | "elementType": "geometry.stroke", 174 | "stylers": [ 175 | { 176 | "color": "#d7d7d7" 177 | } 178 | ] 179 | }, 180 | { 181 | "featureType": "poi", 182 | "elementType": "geometry.fill", 183 | "stylers": [ 184 | { 185 | "visibility": "on" 186 | }, 187 | { 188 | "color": "#ebebeb" 189 | } 190 | ] 191 | }, 192 | { 193 | "featureType": "administrative", 194 | "elementType": "geometry", 195 | "stylers": [ 196 | { 197 | "color": "#a7a7a7" 198 | } 199 | ] 200 | }, 201 | { 202 | "featureType": "road.arterial", 203 | "elementType": "geometry.fill", 204 | "stylers": [ 205 | { 206 | "color": "#ffffff" 207 | } 208 | ] 209 | }, 210 | { 211 | "featureType": "road.arterial", 212 | "elementType": "geometry.fill", 213 | "stylers": [ 214 | { 215 | "color": "#ffffff" 216 | } 217 | ] 218 | }, 219 | { 220 | "featureType": "landscape", 221 | "elementType": "geometry.fill", 222 | "stylers": [ 223 | { 224 | "visibility": "on" 225 | }, 226 | { 227 | "color": "#efefef" 228 | } 229 | ] 230 | }, 231 | { 232 | "featureType": "road", 233 | "elementType": "labels.text.fill", 234 | "stylers": [ 235 | { 236 | "color": "#696969" 237 | } 238 | ] 239 | }, 240 | { 241 | "featureType": "administrative", 242 | "elementType": "labels.text.fill", 243 | "stylers": [ 244 | { 245 | "visibility": "on" 246 | }, 247 | { 248 | "color": "#737373" 249 | } 250 | ] 251 | }, 252 | { 253 | "featureType": "poi", 254 | "elementType": "labels.icon", 255 | "stylers": [ 256 | { 257 | "visibility": "off" 258 | } 259 | ] 260 | }, 261 | { 262 | "featureType": "poi", 263 | "elementType": "labels", 264 | "stylers": [ 265 | { 266 | "visibility": "off" 267 | } 268 | ] 269 | }, 270 | { 271 | "featureType": "road.arterial", 272 | "elementType": "geometry.stroke", 273 | "stylers": [ 274 | { 275 | "color": "#d6d6d6" 276 | } 277 | ] 278 | }, 279 | { 280 | "featureType": "road", 281 | "elementType": "labels.icon", 282 | "stylers": [ 283 | { 284 | "visibility": "off" 285 | } 286 | ] 287 | }, 288 | {}, 289 | { 290 | "featureType": "poi", 291 | "elementType": "geometry.fill", 292 | "stylers": [ 293 | { 294 | "color": "#dadada" 295 | } 296 | ] 297 | } 298 | ] 299 | }); 300 | } 301 | 302 | })(jQuery) -------------------------------------------------------------------------------- /vendors/linericon/style.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Linearicons-Free'; 3 | src:url('fonts/Linearicons-Free.eot?w118d'); 4 | src:url('fonts/Linearicons-Free.eot?#iefixw118d') format('embedded-opentype'), 5 | url('fonts/Linearicons-Free.woff2?w118d') format('woff2'), 6 | url('fonts/Linearicons-Free.woff?w118d') format('woff'), 7 | url('fonts/Linearicons-Free.ttf?w118d') format('truetype'), 8 | url('fonts/Linearicons-Free.svg?w118d#Linearicons-Free') format('svg'); 9 | font-weight: normal; 10 | font-style: normal; 11 | } 12 | 13 | .lnr { 14 | font-family: 'Linearicons-Free'; 15 | speak: none; 16 | font-style: normal; 17 | font-weight: normal; 18 | font-variant: normal; 19 | text-transform: none; 20 | line-height: 1; 21 | 22 | /* Better Font Rendering =========== */ 23 | -webkit-font-smoothing: antialiased; 24 | -moz-osx-font-smoothing: grayscale; 25 | } 26 | 27 | .lnr-home:before { 28 | content: "\e800"; 29 | } 30 | .lnr-apartment:before { 31 | content: "\e801"; 32 | } 33 | .lnr-pencil:before { 34 | content: "\e802"; 35 | } 36 | .lnr-magic-wand:before { 37 | content: "\e803"; 38 | } 39 | .lnr-drop:before { 40 | content: "\e804"; 41 | } 42 | .lnr-lighter:before { 43 | content: "\e805"; 44 | } 45 | .lnr-poop:before { 46 | content: "\e806"; 47 | } 48 | .lnr-sun:before { 49 | content: "\e807"; 50 | } 51 | .lnr-moon:before { 52 | content: "\e808"; 53 | } 54 | .lnr-cloud:before { 55 | content: "\e809"; 56 | } 57 | .lnr-cloud-upload:before { 58 | content: "\e80a"; 59 | } 60 | .lnr-cloud-download:before { 61 | content: "\e80b"; 62 | } 63 | .lnr-cloud-sync:before { 64 | content: "\e80c"; 65 | } 66 | .lnr-cloud-check:before { 67 | content: "\e80d"; 68 | } 69 | .lnr-database:before { 70 | content: "\e80e"; 71 | } 72 | .lnr-lock:before { 73 | content: "\e80f"; 74 | } 75 | .lnr-cog:before { 76 | content: "\e810"; 77 | } 78 | .lnr-trash:before { 79 | content: "\e811"; 80 | } 81 | .lnr-dice:before { 82 | content: "\e812"; 83 | } 84 | .lnr-heart:before { 85 | content: "\e813"; 86 | } 87 | .lnr-star:before { 88 | content: "\e814"; 89 | } 90 | .lnr-star-half:before { 91 | content: "\e815"; 92 | } 93 | .lnr-star-empty:before { 94 | content: "\e816"; 95 | } 96 | .lnr-flag:before { 97 | content: "\e817"; 98 | } 99 | .lnr-envelope:before { 100 | content: "\e818"; 101 | } 102 | .lnr-paperclip:before { 103 | content: "\e819"; 104 | } 105 | .lnr-inbox:before { 106 | content: "\e81a"; 107 | } 108 | .lnr-eye:before { 109 | content: "\e81b"; 110 | } 111 | .lnr-printer:before { 112 | content: "\e81c"; 113 | } 114 | .lnr-file-empty:before { 115 | content: "\e81d"; 116 | } 117 | .lnr-file-add:before { 118 | content: "\e81e"; 119 | } 120 | .lnr-enter:before { 121 | content: "\e81f"; 122 | } 123 | .lnr-exit:before { 124 | content: "\e820"; 125 | } 126 | .lnr-graduation-hat:before { 127 | content: "\e821"; 128 | } 129 | .lnr-license:before { 130 | content: "\e822"; 131 | } 132 | .lnr-music-note:before { 133 | content: "\e823"; 134 | } 135 | .lnr-film-play:before { 136 | content: "\e824"; 137 | } 138 | .lnr-camera-video:before { 139 | content: "\e825"; 140 | } 141 | .lnr-camera:before { 142 | content: "\e826"; 143 | } 144 | .lnr-picture:before { 145 | content: "\e827"; 146 | } 147 | .lnr-book:before { 148 | content: "\e828"; 149 | } 150 | .lnr-bookmark:before { 151 | content: "\e829"; 152 | } 153 | .lnr-user:before { 154 | content: "\e82a"; 155 | } 156 | .lnr-users:before { 157 | content: "\e82b"; 158 | } 159 | .lnr-shirt:before { 160 | content: "\e82c"; 161 | } 162 | .lnr-store:before { 163 | content: "\e82d"; 164 | } 165 | .lnr-cart:before { 166 | content: "\e82e"; 167 | } 168 | .lnr-tag:before { 169 | content: "\e82f"; 170 | } 171 | .lnr-phone-handset:before { 172 | content: "\e830"; 173 | } 174 | .lnr-phone:before { 175 | content: "\e831"; 176 | } 177 | .lnr-pushpin:before { 178 | content: "\e832"; 179 | } 180 | .lnr-map-marker:before { 181 | content: "\e833"; 182 | } 183 | .lnr-map:before { 184 | content: "\e834"; 185 | } 186 | .lnr-location:before { 187 | content: "\e835"; 188 | } 189 | .lnr-calendar-full:before { 190 | content: "\e836"; 191 | } 192 | .lnr-keyboard:before { 193 | content: "\e837"; 194 | } 195 | .lnr-spell-check:before { 196 | content: "\e838"; 197 | } 198 | .lnr-screen:before { 199 | content: "\e839"; 200 | } 201 | .lnr-smartphone:before { 202 | content: "\e83a"; 203 | } 204 | .lnr-tablet:before { 205 | content: "\e83b"; 206 | } 207 | .lnr-laptop:before { 208 | content: "\e83c"; 209 | } 210 | .lnr-laptop-phone:before { 211 | content: "\e83d"; 212 | } 213 | .lnr-power-switch:before { 214 | content: "\e83e"; 215 | } 216 | .lnr-bubble:before { 217 | content: "\e83f"; 218 | } 219 | .lnr-heart-pulse:before { 220 | content: "\e840"; 221 | } 222 | .lnr-construction:before { 223 | content: "\e841"; 224 | } 225 | .lnr-pie-chart:before { 226 | content: "\e842"; 227 | } 228 | .lnr-chart-bars:before { 229 | content: "\e843"; 230 | } 231 | .lnr-gift:before { 232 | content: "\e844"; 233 | } 234 | .lnr-diamond:before { 235 | content: "\e845"; 236 | } 237 | .lnr-linearicons:before { 238 | content: "\e846"; 239 | } 240 | .lnr-dinner:before { 241 | content: "\e847"; 242 | } 243 | .lnr-coffee-cup:before { 244 | content: "\e848"; 245 | } 246 | .lnr-leaf:before { 247 | content: "\e849"; 248 | } 249 | .lnr-paw:before { 250 | content: "\e84a"; 251 | } 252 | .lnr-rocket:before { 253 | content: "\e84b"; 254 | } 255 | .lnr-briefcase:before { 256 | content: "\e84c"; 257 | } 258 | .lnr-bus:before { 259 | content: "\e84d"; 260 | } 261 | .lnr-car:before { 262 | content: "\e84e"; 263 | } 264 | .lnr-train:before { 265 | content: "\e84f"; 266 | } 267 | .lnr-bicycle:before { 268 | content: "\e850"; 269 | } 270 | .lnr-wheelchair:before { 271 | content: "\e851"; 272 | } 273 | .lnr-select:before { 274 | content: "\e852"; 275 | } 276 | .lnr-earth:before { 277 | content: "\e853"; 278 | } 279 | .lnr-smile:before { 280 | content: "\e854"; 281 | } 282 | .lnr-sad:before { 283 | content: "\e855"; 284 | } 285 | .lnr-neutral:before { 286 | content: "\e856"; 287 | } 288 | .lnr-mustache:before { 289 | content: "\e857"; 290 | } 291 | .lnr-alarm:before { 292 | content: "\e858"; 293 | } 294 | .lnr-bullhorn:before { 295 | content: "\e859"; 296 | } 297 | .lnr-volume-high:before { 298 | content: "\e85a"; 299 | } 300 | .lnr-volume-medium:before { 301 | content: "\e85b"; 302 | } 303 | .lnr-volume-low:before { 304 | content: "\e85c"; 305 | } 306 | .lnr-volume:before { 307 | content: "\e85d"; 308 | } 309 | .lnr-mic:before { 310 | content: "\e85e"; 311 | } 312 | .lnr-hourglass:before { 313 | content: "\e85f"; 314 | } 315 | .lnr-undo:before { 316 | content: "\e860"; 317 | } 318 | .lnr-redo:before { 319 | content: "\e861"; 320 | } 321 | .lnr-sync:before { 322 | content: "\e862"; 323 | } 324 | .lnr-history:before { 325 | content: "\e863"; 326 | } 327 | .lnr-clock:before { 328 | content: "\e864"; 329 | } 330 | .lnr-download:before { 331 | content: "\e865"; 332 | } 333 | .lnr-upload:before { 334 | content: "\e866"; 335 | } 336 | .lnr-enter-down:before { 337 | content: "\e867"; 338 | } 339 | .lnr-exit-up:before { 340 | content: "\e868"; 341 | } 342 | .lnr-bug:before { 343 | content: "\e869"; 344 | } 345 | .lnr-code:before { 346 | content: "\e86a"; 347 | } 348 | .lnr-link:before { 349 | content: "\e86b"; 350 | } 351 | .lnr-unlink:before { 352 | content: "\e86c"; 353 | } 354 | .lnr-thumbs-up:before { 355 | content: "\e86d"; 356 | } 357 | .lnr-thumbs-down:before { 358 | content: "\e86e"; 359 | } 360 | .lnr-magnifier:before { 361 | content: "\e86f"; 362 | } 363 | .lnr-cross:before { 364 | content: "\e870"; 365 | } 366 | .lnr-menu:before { 367 | content: "\e871"; 368 | } 369 | .lnr-list:before { 370 | content: "\e872"; 371 | } 372 | .lnr-chevron-up:before { 373 | content: "\e873"; 374 | } 375 | .lnr-chevron-down:before { 376 | content: "\e874"; 377 | } 378 | .lnr-chevron-left:before { 379 | content: "\e875"; 380 | } 381 | .lnr-chevron-right:before { 382 | content: "\e876"; 383 | } 384 | .lnr-arrow-up:before { 385 | content: "\e877"; 386 | } 387 | .lnr-arrow-down:before { 388 | content: "\e878"; 389 | } 390 | .lnr-arrow-left:before { 391 | content: "\e879"; 392 | } 393 | .lnr-arrow-right:before { 394 | content: "\e87a"; 395 | } 396 | .lnr-move:before { 397 | content: "\e87b"; 398 | } 399 | .lnr-warning:before { 400 | content: "\e87c"; 401 | } 402 | .lnr-question-circle:before { 403 | content: "\e87d"; 404 | } 405 | .lnr-menu-circle:before { 406 | content: "\e87e"; 407 | } 408 | .lnr-checkmark-circle:before { 409 | content: "\e87f"; 410 | } 411 | .lnr-cross-circle:before { 412 | content: "\e880"; 413 | } 414 | .lnr-plus-circle:before { 415 | content: "\e881"; 416 | } 417 | .lnr-circle-minus:before { 418 | content: "\e882"; 419 | } 420 | .lnr-arrow-up-circle:before { 421 | content: "\e883"; 422 | } 423 | .lnr-arrow-down-circle:before { 424 | content: "\e884"; 425 | } 426 | .lnr-arrow-left-circle:before { 427 | content: "\e885"; 428 | } 429 | .lnr-arrow-right-circle:before { 430 | content: "\e886"; 431 | } 432 | .lnr-chevron-up-circle:before { 433 | content: "\e887"; 434 | } 435 | .lnr-chevron-down-circle:before { 436 | content: "\e888"; 437 | } 438 | .lnr-chevron-left-circle:before { 439 | content: "\e889"; 440 | } 441 | .lnr-chevron-right-circle:before { 442 | content: "\e88a"; 443 | } 444 | .lnr-crop:before { 445 | content: "\e88b"; 446 | } 447 | .lnr-frame-expand:before { 448 | content: "\e88c"; 449 | } 450 | .lnr-frame-contract:before { 451 | content: "\e88d"; 452 | } 453 | .lnr-layers:before { 454 | content: "\e88e"; 455 | } 456 | .lnr-funnel:before { 457 | content: "\e88f"; 458 | } 459 | .lnr-text-format:before { 460 | content: "\e890"; 461 | } 462 | .lnr-text-format-remove:before { 463 | content: "\e891"; 464 | } 465 | .lnr-text-size:before { 466 | content: "\e892"; 467 | } 468 | .lnr-bold:before { 469 | content: "\e893"; 470 | } 471 | .lnr-italic:before { 472 | content: "\e894"; 473 | } 474 | .lnr-underline:before { 475 | content: "\e895"; 476 | } 477 | .lnr-strikethrough:before { 478 | content: "\e896"; 479 | } 480 | .lnr-highlight:before { 481 | content: "\e897"; 482 | } 483 | .lnr-text-align-left:before { 484 | content: "\e898"; 485 | } 486 | .lnr-text-align-center:before { 487 | content: "\e899"; 488 | } 489 | .lnr-text-align-right:before { 490 | content: "\e89a"; 491 | } 492 | .lnr-text-align-justify:before { 493 | content: "\e89b"; 494 | } 495 | .lnr-line-spacing:before { 496 | content: "\e89c"; 497 | } 498 | .lnr-indent-increase:before { 499 | content: "\e89d"; 500 | } 501 | .lnr-indent-decrease:before { 502 | content: "\e89e"; 503 | } 504 | .lnr-pilcrow:before { 505 | content: "\e89f"; 506 | } 507 | .lnr-direction-ltr:before { 508 | content: "\e8a0"; 509 | } 510 | .lnr-direction-rtl:before { 511 | content: "\e8a1"; 512 | } 513 | .lnr-page-break:before { 514 | content: "\e8a2"; 515 | } 516 | .lnr-sort-alpha-asc:before { 517 | content: "\e8a3"; 518 | } 519 | .lnr-sort-amount-asc:before { 520 | content: "\e8a4"; 521 | } 522 | .lnr-hand:before { 523 | content: "\e8a5"; 524 | } 525 | .lnr-pointer-up:before { 526 | content: "\e8a6"; 527 | } 528 | .lnr-pointer-right:before { 529 | content: "\e8a7"; 530 | } 531 | .lnr-pointer-down:before { 532 | content: "\e8a8"; 533 | } 534 | .lnr-pointer-left:before { 535 | content: "\e8a9"; 536 | } 537 | -------------------------------------------------------------------------------- /about-me.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 16 | 17 | 18 | 19 | 20 | ALBIN PRAVEEN 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 |
    42 | 65 |
    66 | 67 | 68 | 69 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 |
    93 |
    94 |

    About Me

    95 | 96 |

    97 | 98 | 99 | Hi, I'm Albin Praveen, An Penetration Tester, Copy Paste Developer, Cyber Security Enthusiast, CTF Player and Tech-Exhaust .I love open source, tech community, and building cool & fun things.
    100 |
    101 | I'm an XII Student and will be graduating from the school in the year 2021 and I am looking for full-time job opportunities.
    102 |
    103 | I love working and developing cool stuff with a great source. 104 |

    105 | 106 |
    107 |
    108 | 109 | 110 | 111 | 112 |
    113 |
    114 |
    115 |

    This is How I Create

    DIFFERENCE

    116 |

    I believe in Experiment and learn | Rather then learn and learn.

    117 |
    118 | 119 | 120 |
    121 |
    122 |
    123 | 124 |


    Programming

    125 |

    I started coding when i was 16. and after beginning i went into sporting in programming .I have been in Python and HTML as by basic

    126 |
    127 |
    128 |
    129 |
    130 | 131 |


    Cyber Security

    132 |

    I love Developing ,finding vulnerabiltiies, designing, creating a fully functional website with love, is what excites me , I can design fully functional website's. Cyber security is like a passion for me and with this i have learnt a lot about several things in internet and products.

    133 |
    134 |
    135 |
    136 |
    137 | 138 |


    Penetration Testing

    139 |

    I train my brain to learn and react , this is what lead you here . I love to find vulnerablity of a device ,system or a network.The TRYHACKME platform is where I practise cybersecurity and penetration testing.

    140 |
    141 |
    142 |
    143 |
    144 |
    145 |
    146 |
    147 | 148 |


    Technology

    149 |

    Trying and working on latest Tech stuff is my passion and i love feel it good to try new tech stuff on the top.

    150 |
    151 |
    152 | 153 | 154 |
    155 |
    156 | 157 |


    Creative Things

    158 |

    Sharing the way i grind and help other to learn and develop new skills and manner is what i wanted to do and by creating interesting videos i find it easy manner to help.

    159 |
    160 |
    161 |
    162 |
    163 | 164 |


    Greenery

    165 |

    Good weather and fresh air is most important to live fresh and think fresh, this is why i love to plant

    166 |
    167 |
    168 |
    169 |
    170 |
    171 |
    172 |
    173 | 174 |


    Gaming

    175 |

    Gaming in arcade environment boost our skills to live and improve out though process, i love to play games in weekend and every time i play i always try to learn from the situations.

    176 |
    177 |
    178 | 179 | 180 |
    181 |
    182 | 183 |


    Fitness And Meditation

    184 |

    A healthy brain reside in a healthy body, i love to practice healthy habits and Meditation is one of them and also eating healthy food to stabilize the body.

    185 |
    186 |
    187 |
    188 |
    189 | 190 |


    Music

    191 |

    Good weather and fresh air is most important to live fresh and think fresh, this is why i love to plant

    192 |
    193 |
    194 |
    195 |
    196 |
    197 |
    198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 |
    206 |
    207 | 254 |
    255 |
    256 | 257 | 258 | 259 |
    260 | 261 | Copyright © 2021 | Designed by ALBY 262 |
    263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | -------------------------------------------------------------------------------- /css/responsive.css: -------------------------------------------------------------------------------- 1 | @media (max-width:1619px){ 2 | /* Main Menu Area css 3 | ============================================================================================ */ 4 | .header_area .navbar .search { 5 | margin-left: 40px; 6 | } 7 | /* End Main Menu Area css 8 | ============================================================================================ */ 9 | .banner_area .box_1620 { 10 | border-radius: 0px; 11 | } 12 | } 13 | @media (max-width:1300px){ 14 | .testimonials_area .owl-prev, .testimonials_area .owl-next { 15 | right: auto; 16 | left: 50%; 17 | transform: translateX(-50%); 18 | bottom: 25px; 19 | top: auto; 20 | } 21 | .testimonials_area .owl-prev{ 22 | transform: rotate(90deg); 23 | } 24 | .testimonials_area .owl-next{ 25 | transform: rotate(90deg); 26 | margin-left: -40px; 27 | } 28 | } 29 | @media (max-width:1199px){ 30 | /* Main Menu Area css 31 | ============================================================================================ */ 32 | .header_area .navbar .nav .nav-item { 33 | margin-right: 28px; 34 | } 35 | /* End Main Menu Area css 36 | ============================================================================================ */ 37 | /* Home Banner Area css 38 | ============================================================================================ */ 39 | .home_banner_area { 40 | min-height: 728px; 41 | margin-bottom: 120px; 42 | } 43 | .home_banner_area .banner_inner { 44 | min-height: 650px; 45 | } 46 | .header_area .navbar .nav .nav-item.submenu ul { 47 | left: auto; 48 | right: 0px; 49 | } 50 | /* End Home Banner Area css 51 | ============================================================================================ */ 52 | .banner_content .media{ 53 | display: block; 54 | } 55 | .home_banner_area .banner_content{ 56 | max-width: 500px; 57 | margin: auto; 58 | } 59 | .home_banner_area .banner_inner .banner_content .media .d-flex { 60 | padding-right: 0px; 61 | display: block; 62 | width: 100%; 63 | } 64 | .home_banner_area .banner_inner .banner_content .media .d-flex img { 65 | width: 100%; 66 | height: 100%; 67 | } 68 | .home_banner_area .banner_inner .banner_content .media .media-body { 69 | margin-top: 30px; 70 | } 71 | .home_banner_area .box_1620 { 72 | bottom: -130px; 73 | } 74 | .profile_inner .personal_text { 75 | padding-left: 0px; 76 | } 77 | .home_banner_area.blog_banner .banner_inner{ 78 | min-height: 728px; 79 | } 80 | .home_banner_area.blog_banner { 81 | margin-bottom: 0px; 82 | } 83 | } 84 | 85 | @media (max-width:991px){ 86 | /* Main Menu Area css 87 | ============================================================================================ */ 88 | .navbar-toggler { 89 | border: none; 90 | border-radius: 0px; 91 | padding: 0px; 92 | cursor: pointer; 93 | margin-top: 27px; 94 | margin-bottom: 23px; 95 | } 96 | .header_area .navbar { 97 | background: #000; 98 | } 99 | .navbar-toggler[aria-expanded="false"] span:nth-child(2) { 100 | opacity: 1; 101 | } 102 | .navbar-toggler[aria-expanded="true"] span:nth-child(2) { 103 | opacity: 0; 104 | } 105 | .navbar-toggler[aria-expanded="true"] span:first-child { 106 | transform: rotate(-45deg); 107 | position: relative; 108 | top: 7.5px; 109 | } 110 | .navbar-toggler[aria-expanded="true"] span:last-child { 111 | transform: rotate(45deg); 112 | bottom: 6px; 113 | position: relative; 114 | } 115 | .navbar-toggler span{ 116 | display: block; 117 | width: 25px; 118 | height: 3px; 119 | background: #fff; 120 | margin: auto; 121 | margin-bottom: 4px; 122 | transition: all 400ms linear; 123 | cursor: pointer; 124 | } 125 | .navbar .container{ 126 | padding-left: 15px; 127 | padding-right: 15px; 128 | } 129 | .nav{ 130 | padding: 0px 0px; 131 | } 132 | .header_area + section, .header_area + row, .header_area + div { 133 | margin-top: 117px; 134 | } 135 | .header_top .nav{ 136 | padding: 0px; 137 | } 138 | .header_area .navbar .nav .nav-item .nav-link{ 139 | line-height: 40px; 140 | margin-right: 0px; 141 | display: block; 142 | border-bottom: 1px solid #ededed33; 143 | border-radius: 0px; 144 | } 145 | .header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link { 146 | line-height: 40px; 147 | } 148 | .header_area .navbar .search{ 149 | margin-left: 0px; 150 | } 151 | .header_area .navbar-collapse{ 152 | max-height: 340px; 153 | overflow-y: scroll; 154 | } 155 | .header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link { 156 | padding: 0px 15px; 157 | } 158 | .header_area .navbar .nav .nav-item { 159 | margin-right: 0px; 160 | } 161 | .header_area + section, .header_area + row, .header_area + div { 162 | margin-top: 0px; 163 | } 164 | /* End Main Menu Area css 165 | ============================================================================================ */ 166 | /* Blog page Area css 167 | ============================================================================================ */ 168 | .categories_post img{ 169 | width: 100%; 170 | } 171 | .categories_post { 172 | max-width: 360px; 173 | margin: 0 auto; 174 | } 175 | .blog_categorie_area .col-lg-4{ 176 | margin-top: 30px; 177 | } 178 | .blog_area{ 179 | padding-bottom: 80px; 180 | } 181 | .single-post-area .blog_right_sidebar{ 182 | margin-top: 30px; 183 | } 184 | /* End Blog page Area css 185 | ============================================================================================ */ 186 | 187 | /* Contact Page Area css 188 | ============================================================================================ */ 189 | .contact_info{ 190 | margin-bottom: 50px; 191 | } 192 | .c_details_list{ 193 | margin-top: 30px; 194 | } 195 | /* End Contact page Area css 196 | ============================================================================================ */ 197 | .home_banner_area .donation_inner{ 198 | margin-bottom: -30px; 199 | } 200 | .home_banner_area .dontation_item{ 201 | max-width: 350px; 202 | margin: auto; 203 | } 204 | /* Footer Area css 205 | ============================================================================================ */ 206 | .footer-area .col-sm-6{ 207 | margin-bottom: 30px; 208 | } 209 | .footer_area .f_widget{ 210 | margin-bottom: 30px; 211 | } 212 | .footer_area .footer_inner{ 213 | margin-bottom: -30px; 214 | } 215 | /* End End Footer Area css 216 | ============================================================================================ */ 217 | .welcome_text{ 218 | margin-bottom: 30px; 219 | } 220 | .banner_area .box_1620 { 221 | bottom: -71px; 222 | } 223 | .banner_area { 224 | margin-bottom: 71px; 225 | } 226 | .profile_inner .personal_text { 227 | padding-top: 30px; 228 | } 229 | } 230 | @media (max-width:767px){ 231 | .home_banner_area { 232 | min-height: 570px; 233 | margin-bottom: 120px; 234 | } 235 | .home_banner_area .banner_inner { 236 | min-height: 500px; 237 | } 238 | .home_banner_area .box_1620 { 239 | min-height: 500px; 240 | } 241 | .home_banner_area .banner_inner .banner_content { 242 | margin-top: 0px; 243 | } 244 | /* Blog Page Area css 245 | ============================================================================================ */ 246 | .blog_banner .banner_inner .blog_b_text h2 { 247 | font-size: 40px; 248 | line-height: 50px; 249 | } 250 | .blog_info.text-right{ 251 | text-align: left !important; 252 | margin-bottom: 10px; 253 | } 254 | /* End Blog Page Area css 255 | ============================================================================================ */ 256 | .home_banner_area .banner_inner .banner_content h3 { 257 | font-size: 45px; 258 | line-height: 55px; 259 | } 260 | .home_banner_area .banner_inner .banner_content p br { 261 | display: none; 262 | } 263 | .home_banner_area .banner_inner .banner_content h3 span { 264 | line-height: 45px; 265 | padding-bottom: 0px; 266 | padding-top: 0px; 267 | } 268 | /* Footer Area css 269 | ============================================================================================ */ 270 | .footer-bottom{ 271 | text-align: center; 272 | } 273 | .footer-bottom .footer-social { 274 | text-align: center; 275 | margin-top: 15px; 276 | } 277 | /* End End Footer Area css 278 | ============================================================================================ */ 279 | .service_inner .col-lg-3 { 280 | margin-bottom: 0px; 281 | } 282 | .service_img{ 283 | max-width: 405px; 284 | margin: auto; 285 | } 286 | .service_inner .service_text { 287 | padding-top: 30px; 288 | padding-bottom: 30px; 289 | max-width: 405px; 290 | margin: 0px auto 0px; 291 | } 292 | .instagram_image a { 293 | flex: 0 0 33.33%; 294 | max-width: 33.33%; 295 | } 296 | .wel_item { 297 | margin-bottom: 30px; 298 | } 299 | } 300 | @media (max-width:600px){ 301 | 302 | } 303 | @media (max-width:575px){ 304 | .top_menu { 305 | display: none; 306 | } 307 | .header_area + section, .header_area + row, .header_area + div { 308 | margin-top: 0px; 309 | } 310 | /* Home Banner Area css 311 | ============================================================================================ */ 312 | .home_banner_area .banner_inner .banner_content h2 { 313 | font-size: 28px; 314 | } 315 | .home_banner_area { 316 | min-height: 570px; 317 | } 318 | .home_banner_area .banner_inner { 319 | min-height: 500px; 320 | } 321 | .blog_banner .banner_inner .blog_b_text { 322 | margin-top: 0px; 323 | } 324 | .home_banner_area .banner_inner .banner_content h5 { 325 | margin-top: 0px; 326 | } 327 | /* End Home Banner Area css 328 | ============================================================================================ */ 329 | .p_120 { 330 | padding-top: 70px; 331 | padding-bottom: 70px; 332 | } 333 | .main_title h2 { 334 | font-size: 25px; 335 | } 336 | /* Elements Area css 337 | ============================================================================================ */ 338 | .sample-text-area { 339 | padding: 70px 0 70px 0; 340 | } 341 | .generic-blockquote { 342 | padding: 30px 15px 30px 30px; 343 | } 344 | /* End Elements Area css 345 | ============================================================================================ */ 346 | 347 | /* Blog Page Area css 348 | ============================================================================================ */ 349 | .blog_details h2 { 350 | font-size: 20px; 351 | line-height: 30px; 352 | } 353 | .blog_banner .banner_inner .blog_b_text h2 { 354 | font-size: 28px; 355 | line-height: 38px; 356 | } 357 | /* End Blog Page Area css 358 | ============================================================================================ */ 359 | /* Footer Area css 360 | ============================================================================================ */ 361 | .footer-area { 362 | padding: 70px 0px; 363 | } 364 | /* End End Footer Area css 365 | ============================================================================================ */ 366 | .pad_top { 367 | padding-top: 70px; 368 | } 369 | .pad_bt { 370 | padding-bottom: 70px; 371 | } 372 | .home_banner_area .box_1620 { 373 | bottom: -71px; 374 | border-radius: 0px; 375 | } 376 | .home_banner_area { 377 | margin-bottom: 71px; 378 | } 379 | .tabs_inner .nav.nav-tabs li a { 380 | line-height: 42px; 381 | padding: 0px 18px; 382 | } 383 | .gallery_f_inner{ 384 | max-width: 340px; 385 | margin: 0px auto -45px; 386 | } 387 | .blog_categorie_area { 388 | padding-top: 70px; 389 | padding-bottom: 70px; 390 | } 391 | } 392 | 393 | @media (max-width:480px){ 394 | /* Main Menu Area css 395 | ============================================================================================ */ 396 | .header_area .navbar-collapse{ 397 | max-height: 250px; 398 | } 399 | /* End Main Menu Area css 400 | ============================================================================================ */ 401 | 402 | /* Home Banner Area css 403 | ============================================================================================ */ 404 | .home_banner_area .banner_inner .banner_content { 405 | padding: 30px 15px; 406 | margin-top: 0px; 407 | } 408 | .banner_content .white_btn { 409 | display: block; 410 | } 411 | /* End Home Banner Area css 412 | ============================================================================================ */ 413 | .banner_area .banner_inner .banner_content h2 { 414 | font-size: 32px; 415 | } 416 | /* Blog Page Area css 417 | ============================================================================================ */ 418 | .comments-area .thumb { 419 | margin-right: 10px; 420 | } 421 | /* End Blog Page Area css 422 | ============================================================================================ */ 423 | .tabs_inner .tab-content .tab-pane .list::before { 424 | display: none; 425 | } 426 | .tabs_inner .tab-content .tab-pane .list li .media .d-flex { 427 | padding-right: 0px; 428 | padding-bottom: 18px; 429 | } 430 | .tabs_inner .tab-content .tab-pane .list li .media { 431 | display: block; 432 | } 433 | .tabs_inner .tab-content .tab-pane .list li span { 434 | display: none; 435 | } 436 | .tabs_inner .nav.nav-tabs { 437 | margin-bottom: 0px; 438 | } 439 | .isotope_fillter .gallery_filter li { 440 | margin-right: 17px; 441 | } 442 | } --------------------------------------------------------------------------------