└── demo ├── css ├── all.min.css ├── animate.css ├── bootstrap.min.css ├── magnific-popup.css ├── simple-line-icons.css ├── slick.css └── style.css ├── demo ├── css │ ├── all.min.css │ ├── animate.css │ ├── bootstrap.min.css │ ├── magnific-popup.css │ ├── simple-line-icons.css │ ├── slick.css │ └── style.css ├── fonts │ ├── Simple-Line-Iconsb26c.eot │ ├── Simple-Line-Iconsb26c.html │ ├── Simple-Line-Iconsb26c.svg │ ├── Simple-Line-Iconsb26c.ttf │ ├── Simple-Line-Iconsb26c.woff │ ├── slick.eot │ ├── slick.svg │ ├── slick.ttf │ ├── slick.woff │ └── slickd41d.eot ├── images │ ├── ajax-loader.gif │ ├── avatar-1.svg │ ├── avatar-2.svg │ ├── avatar-3.svg │ ├── blog │ │ ├── 1.svg │ │ ├── 2.svg │ │ └── 3.svg │ ├── client-1.svg │ ├── client-2.svg │ ├── client-3.svg │ ├── client-4.svg │ ├── client-5.svg │ ├── client-6.svg │ ├── client-7.svg │ ├── client-8.svg │ ├── dots-bg-light.svg │ ├── dots-bg.svg │ ├── favicon.png │ ├── logo-dark1.png │ ├── logo-dark1.svg │ ├── map-light.png │ ├── map.svg │ ├── price-1.svg │ ├── price-2.svg │ ├── price-3.svg │ ├── service-1.svg │ ├── service-2.svg │ ├── service-3.svg │ ├── single-work.svg │ └── works │ │ ├── 1.svg │ │ ├── 2.svg │ │ ├── 3.svg │ │ ├── 4.svg │ │ ├── 5.svg │ │ └── 6.svg ├── index-light.html ├── js │ ├── bootstrap.min.js │ ├── contact.js │ ├── custom.js │ ├── imagesloaded.pkgd.min.js │ ├── infinite-scroll.min.js │ ├── isotope.pkgd.min.js │ ├── jquery-1.12.3.min.js │ ├── jquery.counterup.min.js │ ├── jquery.easing.min.js │ ├── jquery.magnific-popup.min.js │ ├── jquery.waypoints.min.js │ ├── morphext.min.js │ ├── parallax.min.js │ ├── popper.min.js │ ├── slick.min.js │ ├── validator.js │ └── wow.min.js └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.html │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400d41d.eot │ ├── fa-regular-400.eot │ ├── fa-regular-400.html │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400d41d.eot │ ├── fa-solid-900.eot │ ├── fa-solid-900.html │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900d41d.eot ├── fonts ├── Simple-Line-Iconsb26c.eot ├── Simple-Line-Iconsb26c.html ├── Simple-Line-Iconsb26c.svg ├── Simple-Line-Iconsb26c.ttf ├── Simple-Line-Iconsb26c.woff ├── slick.eot ├── slick.svg ├── slick.ttf ├── slick.woff └── slickd41d.eot ├── images ├── ajax-loader.gif ├── avatar-1.svg ├── avatar-2.svg ├── avatar-3.svg ├── blog │ ├── 1.svg │ ├── 2.svg │ └── 3.svg ├── client-1.svg ├── client-2.svg ├── client-3.svg ├── client-4.svg ├── client-5.svg ├── client-6.svg ├── client-7.svg ├── client-8.svg ├── dots-bg-light.svg ├── dots-bg.svg ├── favicon.png ├── logo-dark1.png ├── logo-dark1.svg ├── map-light.png ├── map.svg ├── price-1.svg ├── price-2.svg ├── price-3.svg ├── service-1.svg ├── service-2.svg ├── service-3.svg ├── single-work.svg └── works │ ├── 1.svg │ ├── 2.svg │ ├── 3.svg │ ├── 4.svg │ ├── 5.svg │ └── 6.svg ├── index-light.html ├── js ├── bootstrap.min.js ├── contact.js ├── custom.js ├── imagesloaded.pkgd.min.js ├── infinite-scroll.min.js ├── isotope.pkgd.min.js ├── jquery-1.12.3.min.js ├── jquery.counterup.min.js ├── jquery.easing.min.js ├── jquery.magnific-popup.min.js ├── jquery.waypoints.min.js ├── morphext.min.js ├── parallax.min.js ├── popper.min.js ├── slick.min.js ├── validator.js └── wow.min.js └── webfonts ├── fa-brands-400.eot ├── fa-brands-400.html ├── fa-brands-400.svg ├── fa-brands-400.ttf ├── fa-brands-400.woff ├── fa-brands-400d41d.eot ├── fa-regular-400.eot ├── fa-regular-400.html ├── fa-regular-400.svg ├── fa-regular-400.ttf ├── fa-regular-400.woff ├── fa-regular-400d41d.eot ├── fa-solid-900.eot ├── fa-solid-900.html ├── fa-solid-900.svg ├── fa-solid-900.ttf ├── fa-solid-900.woff └── fa-solid-900d41d.eot /demo/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/css/all.min.css -------------------------------------------------------------------------------- /demo/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/css/animate.css -------------------------------------------------------------------------------- /demo/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/css/bootstrap.min.css -------------------------------------------------------------------------------- /demo/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/css/magnific-popup.css -------------------------------------------------------------------------------- /demo/css/simple-line-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/css/simple-line-icons.css -------------------------------------------------------------------------------- /demo/css/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/css/slick.css -------------------------------------------------------------------------------- /demo/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/css/style.css -------------------------------------------------------------------------------- /demo/demo/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/css/all.min.css -------------------------------------------------------------------------------- /demo/demo/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/css/animate.css -------------------------------------------------------------------------------- /demo/demo/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/css/bootstrap.min.css -------------------------------------------------------------------------------- /demo/demo/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/css/magnific-popup.css -------------------------------------------------------------------------------- /demo/demo/css/simple-line-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/css/simple-line-icons.css -------------------------------------------------------------------------------- /demo/demo/css/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/css/slick.css -------------------------------------------------------------------------------- /demo/demo/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/css/style.css -------------------------------------------------------------------------------- /demo/demo/fonts/Simple-Line-Iconsb26c.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/fonts/Simple-Line-Iconsb26c.eot -------------------------------------------------------------------------------- /demo/demo/fonts/Simple-Line-Iconsb26c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/fonts/Simple-Line-Iconsb26c.html -------------------------------------------------------------------------------- /demo/demo/fonts/Simple-Line-Iconsb26c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/fonts/Simple-Line-Iconsb26c.svg -------------------------------------------------------------------------------- /demo/demo/fonts/Simple-Line-Iconsb26c.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/fonts/Simple-Line-Iconsb26c.ttf -------------------------------------------------------------------------------- /demo/demo/fonts/Simple-Line-Iconsb26c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/fonts/Simple-Line-Iconsb26c.woff -------------------------------------------------------------------------------- /demo/demo/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/fonts/slick.eot -------------------------------------------------------------------------------- /demo/demo/fonts/slick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/fonts/slick.svg -------------------------------------------------------------------------------- /demo/demo/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/fonts/slick.ttf -------------------------------------------------------------------------------- /demo/demo/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/fonts/slick.woff -------------------------------------------------------------------------------- /demo/demo/fonts/slickd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/fonts/slickd41d.eot -------------------------------------------------------------------------------- /demo/demo/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/ajax-loader.gif -------------------------------------------------------------------------------- /demo/demo/images/avatar-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/avatar-1.svg -------------------------------------------------------------------------------- /demo/demo/images/avatar-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/avatar-2.svg -------------------------------------------------------------------------------- /demo/demo/images/avatar-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/avatar-3.svg -------------------------------------------------------------------------------- /demo/demo/images/blog/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/blog/1.svg -------------------------------------------------------------------------------- /demo/demo/images/blog/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/blog/2.svg -------------------------------------------------------------------------------- /demo/demo/images/blog/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/blog/3.svg -------------------------------------------------------------------------------- /demo/demo/images/client-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/client-1.svg -------------------------------------------------------------------------------- /demo/demo/images/client-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/client-2.svg -------------------------------------------------------------------------------- /demo/demo/images/client-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/client-3.svg -------------------------------------------------------------------------------- /demo/demo/images/client-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/client-4.svg -------------------------------------------------------------------------------- /demo/demo/images/client-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/client-5.svg -------------------------------------------------------------------------------- /demo/demo/images/client-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/client-6.svg -------------------------------------------------------------------------------- /demo/demo/images/client-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/client-7.svg -------------------------------------------------------------------------------- /demo/demo/images/client-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/client-8.svg -------------------------------------------------------------------------------- /demo/demo/images/dots-bg-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/dots-bg-light.svg -------------------------------------------------------------------------------- /demo/demo/images/dots-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/dots-bg.svg -------------------------------------------------------------------------------- /demo/demo/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/favicon.png -------------------------------------------------------------------------------- /demo/demo/images/logo-dark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/logo-dark1.png -------------------------------------------------------------------------------- /demo/demo/images/logo-dark1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/logo-dark1.svg -------------------------------------------------------------------------------- /demo/demo/images/map-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/map-light.png -------------------------------------------------------------------------------- /demo/demo/images/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/map.svg -------------------------------------------------------------------------------- /demo/demo/images/price-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/price-1.svg -------------------------------------------------------------------------------- /demo/demo/images/price-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/price-2.svg -------------------------------------------------------------------------------- /demo/demo/images/price-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/price-3.svg -------------------------------------------------------------------------------- /demo/demo/images/service-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/service-1.svg -------------------------------------------------------------------------------- /demo/demo/images/service-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/service-2.svg -------------------------------------------------------------------------------- /demo/demo/images/service-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/service-3.svg -------------------------------------------------------------------------------- /demo/demo/images/single-work.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/single-work.svg -------------------------------------------------------------------------------- /demo/demo/images/works/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/works/1.svg -------------------------------------------------------------------------------- /demo/demo/images/works/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/works/2.svg -------------------------------------------------------------------------------- /demo/demo/images/works/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/works/3.svg -------------------------------------------------------------------------------- /demo/demo/images/works/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/works/4.svg -------------------------------------------------------------------------------- /demo/demo/images/works/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/works/5.svg -------------------------------------------------------------------------------- /demo/demo/images/works/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/images/works/6.svg -------------------------------------------------------------------------------- /demo/demo/index-light.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/index-light.html -------------------------------------------------------------------------------- /demo/demo/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/bootstrap.min.js -------------------------------------------------------------------------------- /demo/demo/js/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/contact.js -------------------------------------------------------------------------------- /demo/demo/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/custom.js -------------------------------------------------------------------------------- /demo/demo/js/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /demo/demo/js/infinite-scroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/infinite-scroll.min.js -------------------------------------------------------------------------------- /demo/demo/js/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/isotope.pkgd.min.js -------------------------------------------------------------------------------- /demo/demo/js/jquery-1.12.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/jquery-1.12.3.min.js -------------------------------------------------------------------------------- /demo/demo/js/jquery.counterup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/jquery.counterup.min.js -------------------------------------------------------------------------------- /demo/demo/js/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/jquery.easing.min.js -------------------------------------------------------------------------------- /demo/demo/js/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /demo/demo/js/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/jquery.waypoints.min.js -------------------------------------------------------------------------------- /demo/demo/js/morphext.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/morphext.min.js -------------------------------------------------------------------------------- /demo/demo/js/parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/parallax.min.js -------------------------------------------------------------------------------- /demo/demo/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/popper.min.js -------------------------------------------------------------------------------- /demo/demo/js/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/slick.min.js -------------------------------------------------------------------------------- /demo/demo/js/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/validator.js -------------------------------------------------------------------------------- /demo/demo/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/js/wow.min.js -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-brands-400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-brands-400.html -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-brands-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-brands-400d41d.eot -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-regular-400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-regular-400.html -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-regular-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-regular-400d41d.eot -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-solid-900.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-solid-900.html -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-solid-900d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/demo/webfonts/fa-solid-900d41d.eot -------------------------------------------------------------------------------- /demo/fonts/Simple-Line-Iconsb26c.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/fonts/Simple-Line-Iconsb26c.eot -------------------------------------------------------------------------------- /demo/fonts/Simple-Line-Iconsb26c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/fonts/Simple-Line-Iconsb26c.html -------------------------------------------------------------------------------- /demo/fonts/Simple-Line-Iconsb26c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/fonts/Simple-Line-Iconsb26c.svg -------------------------------------------------------------------------------- /demo/fonts/Simple-Line-Iconsb26c.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/fonts/Simple-Line-Iconsb26c.ttf -------------------------------------------------------------------------------- /demo/fonts/Simple-Line-Iconsb26c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/fonts/Simple-Line-Iconsb26c.woff -------------------------------------------------------------------------------- /demo/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/fonts/slick.eot -------------------------------------------------------------------------------- /demo/fonts/slick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/fonts/slick.svg -------------------------------------------------------------------------------- /demo/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/fonts/slick.ttf -------------------------------------------------------------------------------- /demo/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/fonts/slick.woff -------------------------------------------------------------------------------- /demo/fonts/slickd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/fonts/slickd41d.eot -------------------------------------------------------------------------------- /demo/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/ajax-loader.gif -------------------------------------------------------------------------------- /demo/images/avatar-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/avatar-1.svg -------------------------------------------------------------------------------- /demo/images/avatar-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/avatar-2.svg -------------------------------------------------------------------------------- /demo/images/avatar-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/avatar-3.svg -------------------------------------------------------------------------------- /demo/images/blog/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/blog/1.svg -------------------------------------------------------------------------------- /demo/images/blog/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/blog/2.svg -------------------------------------------------------------------------------- /demo/images/blog/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/blog/3.svg -------------------------------------------------------------------------------- /demo/images/client-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/client-1.svg -------------------------------------------------------------------------------- /demo/images/client-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/client-2.svg -------------------------------------------------------------------------------- /demo/images/client-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/client-3.svg -------------------------------------------------------------------------------- /demo/images/client-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/client-4.svg -------------------------------------------------------------------------------- /demo/images/client-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/client-5.svg -------------------------------------------------------------------------------- /demo/images/client-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/client-6.svg -------------------------------------------------------------------------------- /demo/images/client-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/client-7.svg -------------------------------------------------------------------------------- /demo/images/client-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/client-8.svg -------------------------------------------------------------------------------- /demo/images/dots-bg-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/dots-bg-light.svg -------------------------------------------------------------------------------- /demo/images/dots-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/dots-bg.svg -------------------------------------------------------------------------------- /demo/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/favicon.png -------------------------------------------------------------------------------- /demo/images/logo-dark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/logo-dark1.png -------------------------------------------------------------------------------- /demo/images/logo-dark1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/logo-dark1.svg -------------------------------------------------------------------------------- /demo/images/map-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/map-light.png -------------------------------------------------------------------------------- /demo/images/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/map.svg -------------------------------------------------------------------------------- /demo/images/price-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/price-1.svg -------------------------------------------------------------------------------- /demo/images/price-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/price-2.svg -------------------------------------------------------------------------------- /demo/images/price-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/price-3.svg -------------------------------------------------------------------------------- /demo/images/service-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/service-1.svg -------------------------------------------------------------------------------- /demo/images/service-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/service-2.svg -------------------------------------------------------------------------------- /demo/images/service-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/service-3.svg -------------------------------------------------------------------------------- /demo/images/single-work.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/single-work.svg -------------------------------------------------------------------------------- /demo/images/works/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/works/1.svg -------------------------------------------------------------------------------- /demo/images/works/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/works/2.svg -------------------------------------------------------------------------------- /demo/images/works/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/works/3.svg -------------------------------------------------------------------------------- /demo/images/works/4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/works/4.svg -------------------------------------------------------------------------------- /demo/images/works/5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/works/5.svg -------------------------------------------------------------------------------- /demo/images/works/6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/images/works/6.svg -------------------------------------------------------------------------------- /demo/index-light.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/index-light.html -------------------------------------------------------------------------------- /demo/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/bootstrap.min.js -------------------------------------------------------------------------------- /demo/js/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/contact.js -------------------------------------------------------------------------------- /demo/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/custom.js -------------------------------------------------------------------------------- /demo/js/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /demo/js/infinite-scroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/infinite-scroll.min.js -------------------------------------------------------------------------------- /demo/js/isotope.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/isotope.pkgd.min.js -------------------------------------------------------------------------------- /demo/js/jquery-1.12.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/jquery-1.12.3.min.js -------------------------------------------------------------------------------- /demo/js/jquery.counterup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/jquery.counterup.min.js -------------------------------------------------------------------------------- /demo/js/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/jquery.easing.min.js -------------------------------------------------------------------------------- /demo/js/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /demo/js/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/jquery.waypoints.min.js -------------------------------------------------------------------------------- /demo/js/morphext.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/morphext.min.js -------------------------------------------------------------------------------- /demo/js/parallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/parallax.min.js -------------------------------------------------------------------------------- /demo/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/popper.min.js -------------------------------------------------------------------------------- /demo/js/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/slick.min.js -------------------------------------------------------------------------------- /demo/js/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/validator.js -------------------------------------------------------------------------------- /demo/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/js/wow.min.js -------------------------------------------------------------------------------- /demo/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /demo/webfonts/fa-brands-400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-brands-400.html -------------------------------------------------------------------------------- /demo/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /demo/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /demo/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /demo/webfonts/fa-brands-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-brands-400d41d.eot -------------------------------------------------------------------------------- /demo/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /demo/webfonts/fa-regular-400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-regular-400.html -------------------------------------------------------------------------------- /demo/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /demo/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /demo/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /demo/webfonts/fa-regular-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-regular-400d41d.eot -------------------------------------------------------------------------------- /demo/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /demo/webfonts/fa-solid-900.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-solid-900.html -------------------------------------------------------------------------------- /demo/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /demo/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /demo/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /demo/webfonts/fa-solid-900d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/HEAD/demo/webfonts/fa-solid-900d41d.eot --------------------------------------------------------------------------------