└── 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/slick.css: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | .slick-slider 3 | { 4 | position: relative; 5 | 6 | display: block; 7 | box-sizing: border-box; 8 | 9 | -webkit-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | 14 | -webkit-touch-callout: none; 15 | -khtml-user-select: none; 16 | -ms-touch-action: pan-y; 17 | touch-action: pan-y; 18 | -webkit-tap-highlight-color: transparent; 19 | } 20 | 21 | .slick-list 22 | { 23 | position: relative; 24 | 25 | display: block; 26 | overflow: hidden; 27 | 28 | margin: 0; 29 | padding: 0; 30 | } 31 | .slick-list:focus 32 | { 33 | outline: none; 34 | } 35 | .slick-list.dragging 36 | { 37 | cursor: pointer; 38 | cursor: hand; 39 | } 40 | 41 | .slick-slider .slick-track, 42 | .slick-slider .slick-list 43 | { 44 | -webkit-transform: translate3d(0, 0, 0); 45 | -moz-transform: translate3d(0, 0, 0); 46 | -ms-transform: translate3d(0, 0, 0); 47 | -o-transform: translate3d(0, 0, 0); 48 | transform: translate3d(0, 0, 0); 49 | } 50 | 51 | .slick-track 52 | { 53 | position: relative; 54 | top: 0; 55 | left: 0; 56 | 57 | display: block; 58 | } 59 | .slick-track:before, 60 | .slick-track:after 61 | { 62 | display: table; 63 | 64 | content: ''; 65 | } 66 | .slick-track:after 67 | { 68 | clear: both; 69 | } 70 | .slick-loading .slick-track 71 | { 72 | visibility: hidden; 73 | } 74 | 75 | .slick-slide 76 | { 77 | display: none; 78 | float: left; 79 | 80 | height: 100%; 81 | min-height: 1px; 82 | } 83 | [dir='rtl'] .slick-slide 84 | { 85 | float: right; 86 | } 87 | .slick-slide img 88 | { 89 | display: block; 90 | } 91 | .slick-slide.slick-loading img 92 | { 93 | display: none; 94 | } 95 | .slick-slide.dragging img 96 | { 97 | pointer-events: none; 98 | } 99 | .slick-initialized .slick-slide 100 | { 101 | display: block; 102 | } 103 | .slick-loading .slick-slide 104 | { 105 | visibility: hidden; 106 | } 107 | .slick-vertical .slick-slide 108 | { 109 | display: block; 110 | 111 | height: auto; 112 | 113 | border: 1px solid transparent; 114 | } 115 | .slick-arrow.slick-hidden { 116 | display: none; 117 | } 118 | 119 | @charset 'UTF-8'; 120 | /* Slider */ 121 | .slick-loading .slick-list 122 | { 123 | background: #fff url('../images/ajax-loader.gif') center center no-repeat; 124 | } 125 | 126 | /* Icons */ 127 | @font-face 128 | { 129 | font-family: 'slick'; 130 | font-weight: normal; 131 | font-style: normal; 132 | 133 | src: url('../fonts/slick.eot'); 134 | src: url('../fonts/slickd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/slick.woff') format('woff'), url('../fonts/slick.ttf') format('truetype'), url('../fonts/slick.svg#slick') format('svg'); 135 | } 136 | /* Arrows */ 137 | .slick-prev, 138 | .slick-next 139 | { 140 | font-size: 0; 141 | line-height: 0; 142 | 143 | position: absolute; 144 | top: 50%; 145 | 146 | display: block; 147 | 148 | width: 20px; 149 | height: 20px; 150 | padding: 0; 151 | -webkit-transform: translate(0, -50%); 152 | -ms-transform: translate(0, -50%); 153 | transform: translate(0, -50%); 154 | 155 | cursor: pointer; 156 | 157 | color: transparent; 158 | border: none; 159 | outline: none; 160 | background: transparent; 161 | } 162 | .slick-prev:hover, 163 | .slick-prev:focus, 164 | .slick-next:hover, 165 | .slick-next:focus 166 | { 167 | color: transparent; 168 | outline: none; 169 | background: transparent; 170 | } 171 | .slick-prev:hover:before, 172 | .slick-prev:focus:before, 173 | .slick-next:hover:before, 174 | .slick-next:focus:before 175 | { 176 | opacity: 1; 177 | } 178 | .slick-prev.slick-disabled:before, 179 | .slick-next.slick-disabled:before 180 | { 181 | opacity: .25; 182 | } 183 | 184 | .slick-prev:before, 185 | .slick-next:before 186 | { 187 | font-family: 'slick'; 188 | font-size: 20px; 189 | line-height: 1; 190 | 191 | opacity: .75; 192 | color: white; 193 | 194 | -webkit-font-smoothing: antialiased; 195 | -moz-osx-font-smoothing: grayscale; 196 | } 197 | 198 | .slick-prev 199 | { 200 | left: -25px; 201 | } 202 | [dir='rtl'] .slick-prev 203 | { 204 | right: -25px; 205 | left: auto; 206 | } 207 | .slick-prev:before 208 | { 209 | content: '←'; 210 | } 211 | [dir='rtl'] .slick-prev:before 212 | { 213 | content: '→'; 214 | } 215 | 216 | .slick-next 217 | { 218 | right: -25px; 219 | } 220 | [dir='rtl'] .slick-next 221 | { 222 | right: auto; 223 | left: -25px; 224 | } 225 | .slick-next:before 226 | { 227 | content: '→'; 228 | } 229 | [dir='rtl'] .slick-next:before 230 | { 231 | content: '←'; 232 | } 233 | 234 | /* Dots */ 235 | .slick-dotted.slick-slider 236 | { 237 | margin-bottom: 30px; 238 | } 239 | 240 | .slick-dots 241 | { 242 | position: absolute; 243 | bottom: -25px; 244 | 245 | display: block; 246 | 247 | width: 100%; 248 | padding: 0; 249 | margin: 0; 250 | 251 | list-style: none; 252 | 253 | text-align: center; 254 | } 255 | .slick-dots li 256 | { 257 | position: relative; 258 | 259 | display: inline-block; 260 | 261 | width: 20px; 262 | height: 20px; 263 | margin: 0 5px; 264 | padding: 0; 265 | 266 | cursor: pointer; 267 | } 268 | .slick-dots li button 269 | { 270 | font-size: 0; 271 | line-height: 0; 272 | 273 | display: block; 274 | 275 | width: 20px; 276 | height: 20px; 277 | padding: 5px; 278 | 279 | cursor: pointer; 280 | 281 | color: transparent; 282 | border: 0; 283 | outline: none; 284 | background: transparent; 285 | } 286 | .slick-dots li button:hover, 287 | .slick-dots li button:focus 288 | { 289 | outline: none; 290 | } 291 | .slick-dots li button:hover:before, 292 | .slick-dots li button:focus:before 293 | { 294 | opacity: 1; 295 | } 296 | .slick-dots li button:before 297 | { 298 | font-family: 'slick'; 299 | font-size: 6px; 300 | line-height: 20px; 301 | 302 | position: absolute; 303 | top: 0; 304 | left: 0; 305 | 306 | width: 20px; 307 | height: 20px; 308 | 309 | content: '•'; 310 | text-align: center; 311 | 312 | opacity: .25; 313 | color: black; 314 | 315 | -webkit-font-smoothing: antialiased; 316 | -moz-osx-font-smoothing: grayscale; 317 | } 318 | .slick-dots li.slick-active button:before 319 | { 320 | opacity: .75; 321 | color: black; 322 | } -------------------------------------------------------------------------------- /demo/demo/css/slick.css: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | .slick-slider 3 | { 4 | position: relative; 5 | 6 | display: block; 7 | box-sizing: border-box; 8 | 9 | -webkit-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | 14 | -webkit-touch-callout: none; 15 | -khtml-user-select: none; 16 | -ms-touch-action: pan-y; 17 | touch-action: pan-y; 18 | -webkit-tap-highlight-color: transparent; 19 | } 20 | 21 | .slick-list 22 | { 23 | position: relative; 24 | 25 | display: block; 26 | overflow: hidden; 27 | 28 | margin: 0; 29 | padding: 0; 30 | } 31 | .slick-list:focus 32 | { 33 | outline: none; 34 | } 35 | .slick-list.dragging 36 | { 37 | cursor: pointer; 38 | cursor: hand; 39 | } 40 | 41 | .slick-slider .slick-track, 42 | .slick-slider .slick-list 43 | { 44 | -webkit-transform: translate3d(0, 0, 0); 45 | -moz-transform: translate3d(0, 0, 0); 46 | -ms-transform: translate3d(0, 0, 0); 47 | -o-transform: translate3d(0, 0, 0); 48 | transform: translate3d(0, 0, 0); 49 | } 50 | 51 | .slick-track 52 | { 53 | position: relative; 54 | top: 0; 55 | left: 0; 56 | 57 | display: block; 58 | } 59 | .slick-track:before, 60 | .slick-track:after 61 | { 62 | display: table; 63 | 64 | content: ''; 65 | } 66 | .slick-track:after 67 | { 68 | clear: both; 69 | } 70 | .slick-loading .slick-track 71 | { 72 | visibility: hidden; 73 | } 74 | 75 | .slick-slide 76 | { 77 | display: none; 78 | float: left; 79 | 80 | height: 100%; 81 | min-height: 1px; 82 | } 83 | [dir='rtl'] .slick-slide 84 | { 85 | float: right; 86 | } 87 | .slick-slide img 88 | { 89 | display: block; 90 | } 91 | .slick-slide.slick-loading img 92 | { 93 | display: none; 94 | } 95 | .slick-slide.dragging img 96 | { 97 | pointer-events: none; 98 | } 99 | .slick-initialized .slick-slide 100 | { 101 | display: block; 102 | } 103 | .slick-loading .slick-slide 104 | { 105 | visibility: hidden; 106 | } 107 | .slick-vertical .slick-slide 108 | { 109 | display: block; 110 | 111 | height: auto; 112 | 113 | border: 1px solid transparent; 114 | } 115 | .slick-arrow.slick-hidden { 116 | display: none; 117 | } 118 | 119 | @charset 'UTF-8'; 120 | /* Slider */ 121 | .slick-loading .slick-list 122 | { 123 | background: #fff url('../images/ajax-loader.gif') center center no-repeat; 124 | } 125 | 126 | /* Icons */ 127 | @font-face 128 | { 129 | font-family: 'slick'; 130 | font-weight: normal; 131 | font-style: normal; 132 | 133 | src: url('../fonts/slick.eot'); 134 | src: url('../fonts/slickd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/slick.woff') format('woff'), url('../fonts/slick.ttf') format('truetype'), url('../fonts/slick.svg#slick') format('svg'); 135 | } 136 | /* Arrows */ 137 | .slick-prev, 138 | .slick-next 139 | { 140 | font-size: 0; 141 | line-height: 0; 142 | 143 | position: absolute; 144 | top: 50%; 145 | 146 | display: block; 147 | 148 | width: 20px; 149 | height: 20px; 150 | padding: 0; 151 | -webkit-transform: translate(0, -50%); 152 | -ms-transform: translate(0, -50%); 153 | transform: translate(0, -50%); 154 | 155 | cursor: pointer; 156 | 157 | color: transparent; 158 | border: none; 159 | outline: none; 160 | background: transparent; 161 | } 162 | .slick-prev:hover, 163 | .slick-prev:focus, 164 | .slick-next:hover, 165 | .slick-next:focus 166 | { 167 | color: transparent; 168 | outline: none; 169 | background: transparent; 170 | } 171 | .slick-prev:hover:before, 172 | .slick-prev:focus:before, 173 | .slick-next:hover:before, 174 | .slick-next:focus:before 175 | { 176 | opacity: 1; 177 | } 178 | .slick-prev.slick-disabled:before, 179 | .slick-next.slick-disabled:before 180 | { 181 | opacity: .25; 182 | } 183 | 184 | .slick-prev:before, 185 | .slick-next:before 186 | { 187 | font-family: 'slick'; 188 | font-size: 20px; 189 | line-height: 1; 190 | 191 | opacity: .75; 192 | color: white; 193 | 194 | -webkit-font-smoothing: antialiased; 195 | -moz-osx-font-smoothing: grayscale; 196 | } 197 | 198 | .slick-prev 199 | { 200 | left: -25px; 201 | } 202 | [dir='rtl'] .slick-prev 203 | { 204 | right: -25px; 205 | left: auto; 206 | } 207 | .slick-prev:before 208 | { 209 | content: '←'; 210 | } 211 | [dir='rtl'] .slick-prev:before 212 | { 213 | content: '→'; 214 | } 215 | 216 | .slick-next 217 | { 218 | right: -25px; 219 | } 220 | [dir='rtl'] .slick-next 221 | { 222 | right: auto; 223 | left: -25px; 224 | } 225 | .slick-next:before 226 | { 227 | content: '→'; 228 | } 229 | [dir='rtl'] .slick-next:before 230 | { 231 | content: '←'; 232 | } 233 | 234 | /* Dots */ 235 | .slick-dotted.slick-slider 236 | { 237 | margin-bottom: 30px; 238 | } 239 | 240 | .slick-dots 241 | { 242 | position: absolute; 243 | bottom: -25px; 244 | 245 | display: block; 246 | 247 | width: 100%; 248 | padding: 0; 249 | margin: 0; 250 | 251 | list-style: none; 252 | 253 | text-align: center; 254 | } 255 | .slick-dots li 256 | { 257 | position: relative; 258 | 259 | display: inline-block; 260 | 261 | width: 20px; 262 | height: 20px; 263 | margin: 0 5px; 264 | padding: 0; 265 | 266 | cursor: pointer; 267 | } 268 | .slick-dots li button 269 | { 270 | font-size: 0; 271 | line-height: 0; 272 | 273 | display: block; 274 | 275 | width: 20px; 276 | height: 20px; 277 | padding: 5px; 278 | 279 | cursor: pointer; 280 | 281 | color: transparent; 282 | border: 0; 283 | outline: none; 284 | background: transparent; 285 | } 286 | .slick-dots li button:hover, 287 | .slick-dots li button:focus 288 | { 289 | outline: none; 290 | } 291 | .slick-dots li button:hover:before, 292 | .slick-dots li button:focus:before 293 | { 294 | opacity: 1; 295 | } 296 | .slick-dots li button:before 297 | { 298 | font-family: 'slick'; 299 | font-size: 6px; 300 | line-height: 20px; 301 | 302 | position: absolute; 303 | top: 0; 304 | left: 0; 305 | 306 | width: 20px; 307 | height: 20px; 308 | 309 | content: '•'; 310 | text-align: center; 311 | 312 | opacity: .25; 313 | color: black; 314 | 315 | -webkit-font-smoothing: antialiased; 316 | -moz-osx-font-smoothing: grayscale; 317 | } 318 | .slick-dots li.slick-active button:before 319 | { 320 | opacity: .75; 321 | color: black; 322 | } -------------------------------------------------------------------------------- /demo/demo/fonts/Simple-Line-Iconsb26c.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/fonts/Simple-Line-Iconsb26c.eot -------------------------------------------------------------------------------- /demo/demo/fonts/Simple-Line-Iconsb26c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/fonts/Simple-Line-Iconsb26c.html -------------------------------------------------------------------------------- /demo/demo/fonts/Simple-Line-Iconsb26c.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/fonts/Simple-Line-Iconsb26c.ttf -------------------------------------------------------------------------------- /demo/demo/fonts/Simple-Line-Iconsb26c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/fonts/Simple-Line-Iconsb26c.woff -------------------------------------------------------------------------------- /demo/demo/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/fonts/slick.eot -------------------------------------------------------------------------------- /demo/demo/fonts/slick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/demo/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/fonts/slick.ttf -------------------------------------------------------------------------------- /demo/demo/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/fonts/slick.woff -------------------------------------------------------------------------------- /demo/demo/fonts/slickd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/fonts/slickd41d.eot -------------------------------------------------------------------------------- /demo/demo/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/images/ajax-loader.gif -------------------------------------------------------------------------------- /demo/demo/images/client-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-1 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /demo/demo/images/client-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-3 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /demo/demo/images/client-4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-4 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/demo/images/client-5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-5 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /demo/demo/images/client-6.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-6 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /demo/demo/images/client-7.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-7 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | Bolby. 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /demo/demo/images/client-8.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-8 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/demo/images/dots-bg-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | dots-bg 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /demo/demo/images/dots-bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | dots-bg 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /demo/demo/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/images/favicon.png -------------------------------------------------------------------------------- /demo/demo/images/logo-dark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/images/logo-dark1.png -------------------------------------------------------------------------------- /demo/demo/images/logo-dark1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | Babu 13 | Created with Sketch. 14 | 15 | 16 | 17 | 18 | 39 | 42 | 43 | 44 | 45 | 46 | AC 47 | 48 | -------------------------------------------------------------------------------- /demo/demo/images/map-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/images/map-light.png -------------------------------------------------------------------------------- /demo/demo/images/price-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | idea 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /demo/demo/images/price-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | package 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /demo/demo/images/price-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | startup 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /demo/demo/images/service-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | web-programming 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /demo/demo/images/service-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | camera 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /demo/demo/images/works/2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 2 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /demo/demo/js/contact.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | 3 | "use strict"; 4 | 5 | // init the validator 6 | // validator files are included in the download package 7 | // otherwise download from http://1000hz.github.io/bootstrap-validator 8 | 9 | $('#contact-form').validator(); 10 | 11 | 12 | // when the form is submitted 13 | $('#contact-form').on('submit', function (e) { 14 | 15 | // if the validator does not prevent form submit 16 | if (!e.isDefaultPrevented()) { 17 | var url = "form/contact.php"; 18 | 19 | // POST values in the background the the script URL 20 | $.ajax({ 21 | type: "POST", 22 | url: url, 23 | data: $(this).serialize(), 24 | success: function (data) 25 | { 26 | // data = JSON object that contact.php returns 27 | 28 | // we recieve the type of the message: success x danger and apply it to the 29 | var messageAlert = 'alert-' + data.type; 30 | var messageText = data.message; 31 | 32 | // let's compose Bootstrap alert box HTML 33 | var alertBox = '
' + messageText + '
'; 34 | 35 | // If we have messageAlert and messageText 36 | if (messageAlert && messageText) { 37 | // inject the alert to .messages div in our form 38 | $('#contact-form').find('.messages').html(alertBox); 39 | // empty the form 40 | $('#contact-form')[0].reset(); 41 | } 42 | } 43 | }); 44 | return false; 45 | } 46 | }) 47 | }); -------------------------------------------------------------------------------- /demo/demo/js/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;onum)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); -------------------------------------------------------------------------------- /demo/demo/js/jquery.easing.min.js: -------------------------------------------------------------------------------- 1 | jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g'+this.phrases[this.index]+"",a.isFunction(this.settings.complete)&&this.settings.complete.call(this)},start:function(){var a=this;this._interval=setInterval(function(){a.animate()},this.settings.speed)},stop:function(){this._interval=clearInterval(this._interval)}},a.fn[c]=function(d){return this.each(function(){a.data(this,"plugin_"+c)||a.data(this,"plugin_"+c,new b(this,d))})}}(jQuery); -------------------------------------------------------------------------------- /demo/demo/js/wow.min.js: -------------------------------------------------------------------------------- 1 | /*! WOW wow.js - v1.3.0 - 2016-10-04 2 | * https://wowjs.uk 3 | * Copyright (c) 2016 Thomas Grainger; Licensed MIT */!function(a,b){if("function"==typeof define&&define.amd)define(["module","exports"],b);else if("undefined"!=typeof exports)b(module,exports);else{var c={exports:{}};b(c,c.exports),a.WOW=c.exports}}(this,function(a,b){"use strict";function c(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}function d(a,b){return b.indexOf(a)>=0}function e(a,b){for(var c in b)if(null==a[c]){var d=b[c];a[c]=d}return a}function f(a){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(a)}function g(a){var b=arguments.length<=1||void 0===arguments[1]?!1:arguments[1],c=arguments.length<=2||void 0===arguments[2]?!1:arguments[2],d=arguments.length<=3||void 0===arguments[3]?null:arguments[3],e=void 0;return 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}function h(a,b){null!=a.dispatchEvent?a.dispatchEvent(b):b in(null!=a)?a[b]():"on"+b in(null!=a)&&a["on"+b]()}function i(a,b,c){null!=a.addEventListener?a.addEventListener(b,c,!1):null!=a.attachEvent?a.attachEvent("on"+b,c):a[b]=c}function j(a,b,c){null!=a.removeEventListener?a.removeEventListener(b,c,!1):null!=a.detachEvent?a.detachEvent("on"+b,c):delete a[b]}function k(){return"innerHeight"in window?window.innerHeight:document.documentElement.clientHeight}Object.defineProperty(b,"__esModule",{value:!0});var l,m,n=function(){function a(a,b){for(var c=0;c=0){var b=a.target||a.srcElement;b.className=b.className.replace(this.config.animateClass,"").trim()}}},{key:"customStyle",value: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}},{key:"vendorSet",value:function(a,b){for(var c in b)if(b.hasOwnProperty(c)){var d=b[c];a[""+c]=d;for(var e=0;e=e&&f>=c}},{key:"disabled",value:function(){return!this.config.mobile&&f(navigator.userAgent)}}]),a}();b["default"]=r,a.exports=b["default"]}); -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-brands-400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-brands-400.html -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-brands-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-brands-400d41d.eot -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-regular-400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-regular-400.html -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-regular-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-regular-400d41d.eot -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-solid-900.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-solid-900.html -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /demo/demo/webfonts/fa-solid-900d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/demo/webfonts/fa-solid-900d41d.eot -------------------------------------------------------------------------------- /demo/fonts/Simple-Line-Iconsb26c.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/fonts/Simple-Line-Iconsb26c.eot -------------------------------------------------------------------------------- /demo/fonts/Simple-Line-Iconsb26c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/fonts/Simple-Line-Iconsb26c.html -------------------------------------------------------------------------------- /demo/fonts/Simple-Line-Iconsb26c.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/fonts/Simple-Line-Iconsb26c.ttf -------------------------------------------------------------------------------- /demo/fonts/Simple-Line-Iconsb26c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/fonts/Simple-Line-Iconsb26c.woff -------------------------------------------------------------------------------- /demo/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/fonts/slick.eot -------------------------------------------------------------------------------- /demo/fonts/slick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/fonts/slick.ttf -------------------------------------------------------------------------------- /demo/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/fonts/slick.woff -------------------------------------------------------------------------------- /demo/fonts/slickd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/fonts/slickd41d.eot -------------------------------------------------------------------------------- /demo/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/images/ajax-loader.gif -------------------------------------------------------------------------------- /demo/images/client-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-1 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /demo/images/client-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-3 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /demo/images/client-4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-4 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/images/client-5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-5 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /demo/images/client-6.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-6 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /demo/images/client-7.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-7 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | Bolby. 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /demo/images/client-8.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | client-8 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /demo/images/dots-bg-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | dots-bg 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /demo/images/dots-bg.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | dots-bg 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /demo/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/images/favicon.png -------------------------------------------------------------------------------- /demo/images/logo-dark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/images/logo-dark1.png -------------------------------------------------------------------------------- /demo/images/logo-dark1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 12 | Babu 13 | Created with Sketch. 14 | 15 | 16 | 17 | 18 | 39 | 42 | 43 | 44 | 45 | 46 | AC 47 | 48 | -------------------------------------------------------------------------------- /demo/images/map-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/images/map-light.png -------------------------------------------------------------------------------- /demo/images/price-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | idea 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /demo/images/price-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | package 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /demo/images/price-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | startup 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /demo/images/service-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | web-programming 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /demo/images/service-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | camera 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /demo/images/works/2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 2 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /demo/js/contact.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | 3 | "use strict"; 4 | 5 | // init the validator 6 | // validator files are included in the download package 7 | // otherwise download from http://1000hz.github.io/bootstrap-validator 8 | 9 | $('#contact-form').validator(); 10 | 11 | 12 | // when the form is submitted 13 | $('#contact-form').on('submit', function (e) { 14 | 15 | // if the validator does not prevent form submit 16 | if (!e.isDefaultPrevented()) { 17 | var url = "form/contact.php"; 18 | 19 | // POST values in the background the the script URL 20 | $.ajax({ 21 | type: "POST", 22 | url: url, 23 | data: $(this).serialize(), 24 | success: function (data) 25 | { 26 | // data = JSON object that contact.php returns 27 | 28 | // we recieve the type of the message: success x danger and apply it to the 29 | var messageAlert = 'alert-' + data.type; 30 | var messageText = data.message; 31 | 32 | // let's compose Bootstrap alert box HTML 33 | var alertBox = '
' + messageText + '
'; 34 | 35 | // If we have messageAlert and messageText 36 | if (messageAlert && messageText) { 37 | // inject the alert to .messages div in our form 38 | $('#contact-form').find('.messages').html(alertBox); 39 | // empty the form 40 | $('#contact-form')[0].reset(); 41 | } 42 | } 43 | }); 44 | return false; 45 | } 46 | }) 47 | }); -------------------------------------------------------------------------------- /demo/js/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;onum)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); -------------------------------------------------------------------------------- /demo/js/jquery.easing.min.js: -------------------------------------------------------------------------------- 1 | jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return -h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return -h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f+a}return -h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return h/2*f*f*f*f*f+a}return h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return -h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return -h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return -h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return -h/2*(Math.sqrt(1-f*f)-1)+a}return h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return e+l}if(!j){j=k*0.3}if(g'+this.phrases[this.index]+"",a.isFunction(this.settings.complete)&&this.settings.complete.call(this)},start:function(){var a=this;this._interval=setInterval(function(){a.animate()},this.settings.speed)},stop:function(){this._interval=clearInterval(this._interval)}},a.fn[c]=function(d){return this.each(function(){a.data(this,"plugin_"+c)||a.data(this,"plugin_"+c,new b(this,d))})}}(jQuery); -------------------------------------------------------------------------------- /demo/js/wow.min.js: -------------------------------------------------------------------------------- 1 | /*! WOW wow.js - v1.3.0 - 2016-10-04 2 | * https://wowjs.uk 3 | * Copyright (c) 2016 Thomas Grainger; Licensed MIT */!function(a,b){if("function"==typeof define&&define.amd)define(["module","exports"],b);else if("undefined"!=typeof exports)b(module,exports);else{var c={exports:{}};b(c,c.exports),a.WOW=c.exports}}(this,function(a,b){"use strict";function c(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a class as a function")}function d(a,b){return b.indexOf(a)>=0}function e(a,b){for(var c in b)if(null==a[c]){var d=b[c];a[c]=d}return a}function f(a){return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(a)}function g(a){var b=arguments.length<=1||void 0===arguments[1]?!1:arguments[1],c=arguments.length<=2||void 0===arguments[2]?!1:arguments[2],d=arguments.length<=3||void 0===arguments[3]?null:arguments[3],e=void 0;return 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}function h(a,b){null!=a.dispatchEvent?a.dispatchEvent(b):b in(null!=a)?a[b]():"on"+b in(null!=a)&&a["on"+b]()}function i(a,b,c){null!=a.addEventListener?a.addEventListener(b,c,!1):null!=a.attachEvent?a.attachEvent("on"+b,c):a[b]=c}function j(a,b,c){null!=a.removeEventListener?a.removeEventListener(b,c,!1):null!=a.detachEvent?a.detachEvent("on"+b,c):delete a[b]}function k(){return"innerHeight"in window?window.innerHeight:document.documentElement.clientHeight}Object.defineProperty(b,"__esModule",{value:!0});var l,m,n=function(){function a(a,b){for(var c=0;c=0){var b=a.target||a.srcElement;b.className=b.className.replace(this.config.animateClass,"").trim()}}},{key:"customStyle",value: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}},{key:"vendorSet",value:function(a,b){for(var c in b)if(b.hasOwnProperty(c)){var d=b[c];a[""+c]=d;for(var e=0;e=e&&f>=c}},{key:"disabled",value:function(){return!this.config.mobile&&f(navigator.userAgent)}}]),a}();b["default"]=r,a.exports=b["default"]}); -------------------------------------------------------------------------------- /demo/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /demo/webfonts/fa-brands-400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-brands-400.html -------------------------------------------------------------------------------- /demo/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /demo/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /demo/webfonts/fa-brands-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-brands-400d41d.eot -------------------------------------------------------------------------------- /demo/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /demo/webfonts/fa-regular-400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-regular-400.html -------------------------------------------------------------------------------- /demo/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /demo/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /demo/webfonts/fa-regular-400d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-regular-400d41d.eot -------------------------------------------------------------------------------- /demo/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /demo/webfonts/fa-solid-900.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-solid-900.html -------------------------------------------------------------------------------- /demo/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /demo/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /demo/webfonts/fa-solid-900d41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/animation-coding/Neumorphism-Web-Design01/4f789ca74f2c71437897a3dfb3a0f1dd0218ad19/demo/webfonts/fa-solid-900d41d.eot --------------------------------------------------------------------------------