├── .DS_Store ├── README.md ├── assets ├── .DS_Store ├── css │ ├── .DS_Store │ ├── animate.css │ ├── bootstrap.min.css │ ├── magnific-popup.css │ ├── main.css │ ├── nivo-lightbox.css │ ├── owl.carousel.min.css │ ├── owl.theme.css │ ├── responsive.css │ └── slicknav.css ├── fonts │ ├── .DS_Store │ ├── LineIcons.eot │ ├── LineIcons.svg │ ├── LineIcons.ttf │ ├── LineIcons.woff │ └── line-icons.css ├── img │ ├── .DS_Store │ ├── about │ │ ├── .DS_Store │ │ └── img-1.jpg │ ├── bg-video.jpg │ ├── blog │ │ ├── .DS_Store │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── avater-1.jpg │ │ ├── avater-2.jpg │ │ ├── blog-1-big.jpg │ │ ├── img1.jpg │ │ ├── img2.jpg │ │ └── img3.jpg │ ├── clients │ │ ├── .DS_Store │ │ ├── img1.png │ │ ├── img2.png │ │ ├── img3.png │ │ └── img4.png │ ├── count-bg.jpg │ ├── hero-1.png │ ├── hero-bg.png │ ├── logo.png │ ├── logo.psd │ ├── page-header-bg.jpg │ ├── portfolio │ │ ├── .DS_Store │ │ ├── img-1.jpg │ │ ├── img-2.jpg │ │ ├── img-3.jpg │ │ ├── img-4.jpg │ │ ├── img-5.jpg │ │ └── img-6.jpg │ ├── team │ │ ├── .DS_Store │ │ ├── team-01.png │ │ ├── team-02.png │ │ ├── team-03.png │ │ └── team-04.png │ ├── testimonial.jpg │ └── testimonial │ │ ├── .DS_Store │ │ ├── img1.jpg │ │ ├── img2.jpg │ │ ├── img3.jpg │ │ ├── img4.png │ │ ├── img5.png │ │ └── img6.png ├── js │ ├── .DS_Store │ ├── bootstrap.min.js │ ├── contact-form-script.min.js │ ├── form-validator.min.js │ ├── jquery-min.js │ ├── jquery.counterup.min.js │ ├── jquery.easing.min.js │ ├── jquery.magnific-popup.min.js │ ├── jquery.mixitup.js │ ├── jquery.nav.js │ ├── jquery.slicknav.js │ ├── jquery.vide.js │ ├── main.js │ ├── nivo-lightbox.js │ ├── owl.carousel.min.js │ ├── popper.min.js │ ├── scrolling-nav.js │ ├── waypoints.min.js │ └── wow.js ├── php │ └── form-process.php └── scss │ ├── .DS_Store │ ├── _blog.scss │ ├── _contact.scss │ ├── _counter.scss │ ├── _feature.scss │ ├── _footer.scss │ ├── _global.scss │ ├── _hero-area.scss │ ├── _navbar.scss │ ├── _portfolio.scss │ ├── _pricing.scss │ ├── _service.scss │ ├── _team.scss │ ├── _testimonial.scss │ ├── colors │ └── _presets.scss │ ├── main.scss │ └── responsive.scss └── index.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # idtc-opensource-day1 2 | 3 | 4 | **Step-1:** Fork the repository.
5 | **Step-2:** Look at the reference picture provided.
6 | **Step-3:** Find the issues in the code.
7 | **Step-4:** Correct the code and make it look exactly the reference same as picture.
8 | 9 | Note: There will be issues pointed in "Issue Section", you have to mention which issue you have solved in your PR (Pull Request). 10 | 11 | 12 | Should Look Like
13 | ![](https://storage.googleapis.com/incind/Default%20ViewoZvd1U1.png) 14 | -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/.DS_Store -------------------------------------------------------------------------------- /assets/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/css/.DS_Store -------------------------------------------------------------------------------- /assets/css/magnific-popup.css: -------------------------------------------------------------------------------- 1 | /* Magnific Popup CSS */ 2 | .mfp-bg { 3 | top: 0; 4 | left: 0; 5 | width: 100%; 6 | height: 100%; 7 | z-index: 1042; 8 | overflow: hidden; 9 | position: fixed; 10 | background: #0b0b0b; 11 | opacity: 0.8; } 12 | 13 | .mfp-wrap { 14 | top: 0; 15 | left: 0; 16 | width: 100%; 17 | height: 100%; 18 | z-index: 1043; 19 | position: fixed; 20 | outline: none !important; 21 | -webkit-backface-visibility: hidden; } 22 | 23 | .mfp-container { 24 | text-align: center; 25 | position: absolute; 26 | width: 100%; 27 | height: 100%; 28 | left: 0; 29 | top: 0; 30 | padding: 0 8px; 31 | box-sizing: border-box; } 32 | 33 | .mfp-container:before { 34 | content: ''; 35 | display: inline-block; 36 | height: 100%; 37 | vertical-align: middle; } 38 | 39 | .mfp-align-top .mfp-container:before { 40 | display: none; } 41 | 42 | .mfp-content { 43 | position: relative; 44 | display: inline-block; 45 | vertical-align: middle; 46 | margin: 0 auto; 47 | text-align: left; 48 | z-index: 1045; } 49 | 50 | .mfp-inline-holder .mfp-content, 51 | .mfp-ajax-holder .mfp-content { 52 | width: 100%; 53 | cursor: auto; } 54 | 55 | .mfp-ajax-cur { 56 | cursor: progress; } 57 | 58 | .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close { 59 | cursor: -moz-zoom-out; 60 | cursor: -webkit-zoom-out; 61 | cursor: zoom-out; } 62 | 63 | .mfp-zoom { 64 | cursor: pointer; 65 | cursor: -webkit-zoom-in; 66 | cursor: -moz-zoom-in; 67 | cursor: zoom-in; } 68 | 69 | .mfp-auto-cursor .mfp-content { 70 | cursor: auto; } 71 | 72 | .mfp-close, 73 | .mfp-arrow, 74 | .mfp-preloader, 75 | .mfp-counter { 76 | -webkit-user-select: none; 77 | -moz-user-select: none; 78 | user-select: none; } 79 | 80 | .mfp-loading.mfp-figure { 81 | display: none; } 82 | 83 | .mfp-hide { 84 | display: none !important; } 85 | 86 | .mfp-preloader { 87 | color: #CCC; 88 | position: absolute; 89 | top: 50%; 90 | width: auto; 91 | text-align: center; 92 | margin-top: -0.8em; 93 | left: 8px; 94 | right: 8px; 95 | z-index: 1044; } 96 | .mfp-preloader a { 97 | color: #CCC; } 98 | .mfp-preloader a:hover { 99 | color: #FFF; } 100 | 101 | .mfp-s-ready .mfp-preloader { 102 | display: none; } 103 | 104 | .mfp-s-error .mfp-content { 105 | display: none; } 106 | 107 | button.mfp-close, 108 | button.mfp-arrow { 109 | overflow: visible; 110 | cursor: pointer; 111 | background: transparent; 112 | border: 0; 113 | -webkit-appearance: none; 114 | display: block; 115 | outline: none; 116 | padding: 0; 117 | z-index: 1046; 118 | box-shadow: none; 119 | touch-action: manipulation; } 120 | 121 | button::-moz-focus-inner { 122 | padding: 0; 123 | border: 0; } 124 | 125 | .mfp-close { 126 | width: 44px; 127 | height: 44px; 128 | line-height: 44px; 129 | position: absolute; 130 | right: 0; 131 | top: 0; 132 | text-decoration: none; 133 | text-align: center; 134 | opacity: 0.65; 135 | padding: 0 0 18px 10px; 136 | color: #FFF; 137 | font-style: normal; 138 | font-size: 28px; 139 | font-family: Arial, Baskerville, monospace; } 140 | .mfp-close:hover, 141 | .mfp-close:focus { 142 | opacity: 1; } 143 | .mfp-close:active { 144 | top: 1px; } 145 | 146 | .mfp-close-btn-in .mfp-close { 147 | color: #333; } 148 | 149 | .mfp-image-holder .mfp-close, 150 | .mfp-iframe-holder .mfp-close { 151 | color: #FFF; 152 | right: -6px; 153 | text-align: right; 154 | padding-right: 6px; 155 | width: 100%; } 156 | 157 | .mfp-counter { 158 | position: absolute; 159 | top: 0; 160 | right: 0; 161 | color: #CCC; 162 | font-size: 12px; 163 | line-height: 18px; 164 | white-space: nowrap; } 165 | 166 | .mfp-arrow { 167 | position: absolute; 168 | opacity: 0.65; 169 | margin: 0; 170 | top: 50%; 171 | margin-top: -55px; 172 | padding: 0; 173 | width: 90px; 174 | height: 110px; 175 | -webkit-tap-highlight-color: transparent; } 176 | .mfp-arrow:active { 177 | margin-top: -54px; } 178 | .mfp-arrow:hover, 179 | .mfp-arrow:focus { 180 | opacity: 1; } 181 | .mfp-arrow:before, 182 | .mfp-arrow:after { 183 | content: ''; 184 | display: block; 185 | width: 0; 186 | height: 0; 187 | position: absolute; 188 | left: 0; 189 | top: 0; 190 | margin-top: 35px; 191 | margin-left: 35px; 192 | border: medium inset transparent; } 193 | .mfp-arrow:after { 194 | border-top-width: 13px; 195 | border-bottom-width: 13px; 196 | top: 8px; } 197 | .mfp-arrow:before { 198 | border-top-width: 21px; 199 | border-bottom-width: 21px; 200 | opacity: 0.7; } 201 | 202 | .mfp-arrow-left { 203 | left: 0; } 204 | .mfp-arrow-left:after { 205 | border-right: 17px solid #FFF; 206 | margin-left: 31px; } 207 | .mfp-arrow-left:before { 208 | margin-left: 25px; 209 | border-right: 27px solid #3F3F3F; } 210 | 211 | .mfp-arrow-right { 212 | right: 0; } 213 | .mfp-arrow-right:after { 214 | border-left: 17px solid #FFF; 215 | margin-left: 39px; } 216 | .mfp-arrow-right:before { 217 | border-left: 27px solid #3F3F3F; } 218 | 219 | .mfp-iframe-holder { 220 | padding-top: 40px; 221 | padding-bottom: 40px; } 222 | .mfp-iframe-holder .mfp-content { 223 | line-height: 0; 224 | width: 100%; 225 | max-width: 900px; } 226 | .mfp-iframe-holder .mfp-close { 227 | top: -40px; } 228 | 229 | .mfp-iframe-scaler { 230 | width: 100%; 231 | height: 0; 232 | overflow: hidden; 233 | padding-top: 56.25%; } 234 | .mfp-iframe-scaler iframe { 235 | position: absolute; 236 | display: block; 237 | top: 0; 238 | left: 0; 239 | width: 100%; 240 | height: 100%; 241 | box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); 242 | background: #000; } 243 | 244 | /* Main image in popup */ 245 | img.mfp-img { 246 | width: auto; 247 | max-width: 100%; 248 | height: auto; 249 | display: block; 250 | line-height: 0; 251 | box-sizing: border-box; 252 | padding: 40px 0 40px; 253 | margin: 0 auto; } 254 | 255 | /* The shadow behind the image */ 256 | .mfp-figure { 257 | line-height: 0; } 258 | .mfp-figure:after { 259 | content: ''; 260 | position: absolute; 261 | left: 0; 262 | top: 40px; 263 | bottom: 40px; 264 | display: block; 265 | right: 0; 266 | width: auto; 267 | height: auto; 268 | z-index: -1; 269 | box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); 270 | background: #444; } 271 | .mfp-figure small { 272 | color: #BDBDBD; 273 | display: block; 274 | font-size: 12px; 275 | line-height: 14px; } 276 | .mfp-figure figure { 277 | margin: 0; } 278 | 279 | .mfp-bottom-bar { 280 | margin-top: -36px; 281 | position: absolute; 282 | top: 100%; 283 | left: 0; 284 | width: 100%; 285 | cursor: auto; } 286 | 287 | .mfp-title { 288 | text-align: left; 289 | line-height: 18px; 290 | color: #F3F3F3; 291 | word-wrap: break-word; 292 | padding-right: 36px; } 293 | 294 | .mfp-image-holder .mfp-content { 295 | max-width: 100%; } 296 | 297 | .mfp-gallery .mfp-image-holder .mfp-figure { 298 | cursor: pointer; } 299 | 300 | @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { 301 | /** 302 | * Remove all paddings around the image on small screen 303 | */ 304 | .mfp-img-mobile .mfp-image-holder { 305 | padding-left: 0; 306 | padding-right: 0; } 307 | .mfp-img-mobile img.mfp-img { 308 | padding: 0; } 309 | .mfp-img-mobile .mfp-figure:after { 310 | top: 0; 311 | bottom: 0; } 312 | .mfp-img-mobile .mfp-figure small { 313 | display: inline; 314 | margin-left: 5px; } 315 | .mfp-img-mobile .mfp-bottom-bar { 316 | background: rgba(0, 0, 0, 0.6); 317 | bottom: 0; 318 | margin: 0; 319 | top: auto; 320 | padding: 3px 5px; 321 | position: fixed; 322 | box-sizing: border-box; } 323 | .mfp-img-mobile .mfp-bottom-bar:empty { 324 | padding: 0; } 325 | .mfp-img-mobile .mfp-counter { 326 | right: 5px; 327 | top: 3px; } 328 | .mfp-img-mobile .mfp-close { 329 | top: 0; 330 | right: 0; 331 | width: 35px; 332 | height: 35px; 333 | line-height: 35px; 334 | background: rgba(0, 0, 0, 0.6); 335 | position: fixed; 336 | text-align: center; 337 | padding: 0; } } 338 | 339 | @media all and (max-width: 900px) { 340 | .mfp-arrow { 341 | -webkit-transform: scale(0.75); 342 | transform: scale(0.75); } 343 | .mfp-arrow-left { 344 | -webkit-transform-origin: 0; 345 | transform-origin: 0; } 346 | .mfp-arrow-right { 347 | -webkit-transform-origin: 100%; 348 | transform-origin: 100%; } 349 | .mfp-container { 350 | padding-left: 6px; 351 | padding-right: 6px; } } 352 | -------------------------------------------------------------------------------- /assets/css/nivo-lightbox.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Nivo Lightbox v1.3.1 3 | * http://dev7studios.com/nivo-lightbox 4 | * 5 | * Copyright 2013, Dev7studios 6 | * Free to use and abuse under the MIT license. 7 | * http://www.opensource.org/licenses/mit-license.php 8 | */ 9 | 10 | .nivo-lightbox-overlay { 11 | position: fixed; 12 | top: 0; 13 | left: 0; 14 | z-index: 99999; 15 | width: 100%; 16 | height: 100%; 17 | overflow: hidden; 18 | visibility: hidden; 19 | opacity: 0; 20 | background: rgba(0, 0, 0, 0.8); 21 | -webkit-box-sizing: border-box; 22 | -moz-box-sizing: border-box; 23 | box-sizing: border-box; 24 | } 25 | .nivo-lightbox-overlay.nivo-lightbox-open { 26 | visibility: visible; 27 | opacity: 1; 28 | } 29 | .nivo-lightbox-wrap { 30 | position: absolute; 31 | top: 10%; 32 | bottom: 10%; 33 | left: 10%; 34 | right: 10%; 35 | } 36 | .nivo-lightbox-content { 37 | width: 100%; 38 | height: 100%; 39 | } 40 | .nivo-lightbox-title-wrap { 41 | position: absolute; 42 | bottom: 0; 43 | left: 0; 44 | width: 100%; 45 | z-index: 99999; 46 | text-align: center; 47 | } 48 | .nivo-lightbox-nav { display: none; } 49 | .nivo-lightbox-prev { 50 | position: absolute; 51 | top: 50%; 52 | left: 0; 53 | } 54 | .nivo-lightbox-next { 55 | position: absolute; 56 | top: 50%; 57 | right: 0; 58 | } 59 | .nivo-lightbox-close { 60 | position: absolute; 61 | top: 2%; 62 | right: 2%; 63 | } 64 | 65 | .nivo-lightbox-image { text-align: center; } 66 | .nivo-lightbox-image img { 67 | max-width: 100%; 68 | max-height: 100%; 69 | width: auto; 70 | height: auto; 71 | vertical-align: middle; 72 | } 73 | .nivo-lightbox-content iframe { 74 | width: 100%; 75 | height: 100%; 76 | } 77 | .nivo-lightbox-inline, 78 | .nivo-lightbox-ajax { 79 | max-height: 100%; 80 | overflow: auto; 81 | -webkit-box-sizing: border-box; 82 | -moz-box-sizing: border-box; 83 | box-sizing: border-box; 84 | /* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */ 85 | } 86 | .nivo-lightbox-error { 87 | display: table; 88 | text-align: center; 89 | width: 100%; 90 | height: 100%; 91 | color: #fff; 92 | text-shadow: 0 1px 1px #000; 93 | } 94 | .nivo-lightbox-error p { 95 | display: table-cell; 96 | vertical-align: middle; 97 | } 98 | 99 | /* Effects 100 | **********************************************/ 101 | .nivo-lightbox-notouch .nivo-lightbox-effect-fade, 102 | .nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale, 103 | .nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft, 104 | .nivo-lightbox-notouch .nivo-lightbox-effect-slideRight, 105 | .nivo-lightbox-notouch .nivo-lightbox-effect-slideUp, 106 | .nivo-lightbox-notouch .nivo-lightbox-effect-slideDown, 107 | .nivo-lightbox-notouch .nivo-lightbox-effect-fall { 108 | -webkit-transition: all 0.2s ease-in-out; 109 | -moz-transition: all 0.2s ease-in-out; 110 | -ms-transition: all 0.2s ease-in-out; 111 | -o-transition: all 0.2s ease-in-out; 112 | transition: all 0.2s ease-in-out; 113 | } 114 | 115 | /* fadeScale */ 116 | .nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap { 117 | -webkit-transition: all 0.3s; 118 | -moz-transition: all 0.3s; 119 | -ms-transition: all 0.3s; 120 | -o-transition: all 0.3s; 121 | transition: all 0.3s; 122 | -webkit-transform: scale(0.7); 123 | -moz-transform: scale(0.7); 124 | -ms-transform: scale(0.7); 125 | transform: scale(0.7); 126 | } 127 | .nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap { 128 | -webkit-transform: scale(1); 129 | -moz-transform: scale(1); 130 | -ms-transform: scale(1); 131 | transform: scale(1); 132 | } 133 | 134 | /* slideLeft / slideRight / slideUp / slideDown */ 135 | .nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap, 136 | .nivo-lightbox-effect-slideRight .nivo-lightbox-wrap, 137 | .nivo-lightbox-effect-slideUp .nivo-lightbox-wrap, 138 | .nivo-lightbox-effect-slideDown .nivo-lightbox-wrap { 139 | -webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9); 140 | -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9); 141 | -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9); 142 | -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9); 143 | transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9); 144 | } 145 | .nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap { 146 | -webkit-transform: translateX(-10%); 147 | -moz-transform: translateX(-10%); 148 | -ms-transform: translateX(-10%); 149 | transform: translateX(-10%); 150 | } 151 | .nivo-lightbox-effect-slideRight .nivo-lightbox-wrap { 152 | -webkit-transform: translateX(10%); 153 | -moz-transform: translateX(10%); 154 | -ms-transform: translateX(10%); 155 | transform: translateX(10%); 156 | } 157 | .nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap, 158 | .nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap { 159 | -webkit-transform: translateX(0); 160 | -moz-transform: translateX(0); 161 | -ms-transform: translateX(0); 162 | transform: translateX(0); 163 | } 164 | .nivo-lightbox-effect-slideDown .nivo-lightbox-wrap { 165 | -webkit-transform: translateY(-10%); 166 | -moz-transform: translateY(-10%); 167 | -ms-transform: translateY(-10%); 168 | transform: translateY(-10%); 169 | } 170 | .nivo-lightbox-effect-slideUp .nivo-lightbox-wrap { 171 | -webkit-transform: translateY(10%); 172 | -moz-transform: translateY(10%); 173 | -ms-transform: translateY(10%); 174 | transform: translateY(10%); 175 | } 176 | .nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap, 177 | .nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap { 178 | -webkit-transform: translateY(0); 179 | -moz-transform: translateY(0); 180 | -ms-transform: translateY(0); 181 | transform: translateY(0); 182 | } 183 | 184 | /* fall */ 185 | .nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall { 186 | -webkit-perspective: 1000px; 187 | -moz-perspective: 1000px; 188 | perspective: 1000px; 189 | } 190 | .nivo-lightbox-effect-fall .nivo-lightbox-wrap { 191 | -webkit-transition: all 0.3s ease-out; 192 | -moz-transition: all 0.3s ease-out; 193 | -ms-transition: all 0.3s ease-out; 194 | -o-transition: all 0.3s ease-out; 195 | transition: all 0.3s ease-out; 196 | -webkit-transform: translateZ(300px); 197 | -moz-transform: translateZ(300px); 198 | -ms-transform: translateZ(300px); 199 | transform: translateZ(300px); 200 | } 201 | .nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap { 202 | -webkit-transform: translateZ(0); 203 | -moz-transform: translateZ(0); 204 | -ms-transform: translateZ(0); 205 | transform: translateZ(0); 206 | } 207 | .icon-close{ 208 | font-size: 24px; 209 | } 210 | -------------------------------------------------------------------------------- /assets/css/owl.carousel.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.3.3 3 | * Copyright 2013-2018 David Deutsch 4 | * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE 5 | */ 6 | .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} -------------------------------------------------------------------------------- /assets/css/owl.theme.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.3.3 3 | * Copyright 2013-2018 David Deutsch 4 | * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE 5 | */ 6 | /* 7 | * Default theme - Owl Carousel CSS File 8 | */ 9 | .owl-theme .owl-nav { 10 | margin-top: 10px; 11 | text-align: center; 12 | -webkit-tap-highlight-color: transparent; } 13 | .owl-theme .owl-nav [class*='owl-'] { 14 | color: #FFF; 15 | font-size: 14px; 16 | margin: 5px; 17 | padding: 4px 7px; 18 | background: #D6D6D6; 19 | display: inline-block; 20 | cursor: pointer; 21 | border-radius: 3px; } 22 | .owl-theme .owl-nav [class*='owl-']:hover { 23 | background: #869791; 24 | color: #FFF; 25 | text-decoration: none; } 26 | .owl-theme .owl-nav .disabled { 27 | opacity: 0.5; 28 | cursor: default; } 29 | 30 | .owl-theme .owl-nav.disabled + .owl-dots { 31 | margin-top: 10px; } 32 | 33 | .owl-theme .owl-dots { 34 | text-align: center; 35 | -webkit-tap-highlight-color: transparent; } 36 | .owl-theme .owl-dots .owl-dot { 37 | display: inline-block; 38 | zoom: 1; 39 | *display: inline; } 40 | .owl-theme .owl-dots .owl-dot span { 41 | width: 10px; 42 | height: 10px; 43 | margin: 5px 7px; 44 | background: #D6D6D6; 45 | display: block; 46 | -webkit-backface-visibility: visible; 47 | transition: opacity 200ms ease; 48 | border-radius: 30px; } 49 | .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { 50 | background: #869791; } 51 | -------------------------------------------------------------------------------- /assets/css/responsive.css: -------------------------------------------------------------------------------- 1 | /* only small desktops */ 2 | @media (min-width: 992px) and (max-width: 1199px) { 3 | #hero-area .contents .head-title { 4 | font-size: 40px; 5 | } 6 | .services-item .services-content h3 a { 7 | font-size: 14px; 8 | } 9 | .title-hl { 10 | font-size: 30px; 11 | } 12 | .why .content h3 { 13 | font-size: 30px; 14 | } 15 | .counter-box { 16 | margin-bottom: 30px; 17 | } 18 | } 19 | 20 | /* tablets */ 21 | @media (max-width: 991px) { 22 | .section-title { 23 | font-size: 30px; 24 | margin-bottom: 30px; 25 | } 26 | .services-item .services-content h3 a { 27 | font-size: 14px; 28 | } 29 | .services-item { 30 | margin-bottom: 20px; 31 | } 32 | #pricing-table .title h3 { 33 | font-size: 14px; 34 | } 35 | } 36 | 37 | /* only small tablets */ 38 | @media (min-width: 768px) and (max-width: 991px) { 39 | .section-title { 40 | font-size: 26px; 41 | margin-bottom: 30px; 42 | } 43 | .services-item .services-content h3 a { 44 | font-size: 16px; 45 | } 46 | .bg-inverse { 47 | background: #fff !important; 48 | box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06); 49 | } 50 | .navbar-expand-md .navbar-nav .nav-link { 51 | font-size: 13px; 52 | padding: 0px 3px; 53 | } 54 | #about .sec-title h3 { 55 | font-size: 30px; 56 | line-height: 42px; 57 | } 58 | .title-hl { 59 | font-size: 30px; 60 | } 61 | .text-wrapper { 62 | padding: 60px 30px; 63 | } 64 | .why .content h3 { 65 | font-size: 30px; 66 | } 67 | #pricing-table .title h3 { 68 | font-size: 14px; 69 | } 70 | .skill-area img { 71 | margin-bottom: 30px; 72 | } 73 | .counter-box { 74 | margin-bottom: 30px; 75 | } 76 | #blog .blog-item-wrapper { 77 | margin-bottom: 30px; 78 | } 79 | .experience h4 { 80 | font-size: 18px; 81 | } 82 | .testimonial-item { 83 | padding: 10px; 84 | } 85 | .testimonial-item .content h2 { 86 | font-size: 15px; 87 | } 88 | .slider-center img { 89 | padding: 40px 60px; 90 | } 91 | .subscribes h4 { 92 | font-size: 30px; 93 | } 94 | .footer-area .footer-titel { 95 | margin-top: 30px; 96 | } 97 | .contact-right-area { 98 | margin-top: 0px; 99 | margin-left: 0px; 100 | } 101 | } 102 | 103 | /* mobile or only mobile */ 104 | @media (max-width: 767px) { 105 | .section-padding { 106 | padding: 50px 0; 107 | } 108 | .section-title { 109 | font-size: 22px; 110 | margin-bottom: 30px; 111 | } 112 | .title-hl { 113 | font-size: 30px; 114 | } 115 | .bg-inverse { 116 | padding: 0 15px; 117 | background: #fff !important; 118 | box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06); 119 | } 120 | .navbar-expand-md .navbar-nav .nav-link { 121 | padding: 0px 15px; 122 | } 123 | #hero-area .contents { 124 | padding: 100px 0px 60px 0px; 125 | } 126 | #hero-area .contents .head-title { 127 | font-size: 20px; 128 | line-height: 36px; 129 | margin-bottom: 15px; 130 | } 131 | #hero-area .contents p { 132 | font-size: 18px; 133 | } 134 | #hero-area .contents .btn { 135 | margin: 5px 10px 10px 0px; 136 | } 137 | .text-wrapper { 138 | padding: 60px 15px; 139 | } 140 | #about .sec-title h3 { 141 | font-size: 22px; 142 | line-height: 36px; 143 | } 144 | .counter-box { 145 | margin-bottom: 30px; 146 | } 147 | .why-item { 148 | padding: 30px; 149 | } 150 | .why .content h3 { 151 | font-size: 18px; 152 | } 153 | .why-content { 154 | margin-left: 110px; 155 | } 156 | .feature-thumb { 157 | padding: 10px; 158 | } 159 | .testimonial-item { 160 | padding: 0; 161 | } 162 | .client-item-wrapper img { 163 | width: 50%; 164 | } 165 | .slick-slider { 166 | padding: 0; 167 | } 168 | .slider-center img { 169 | padding: 60px 40px; 170 | } 171 | .subscribes h4 { 172 | font-size: 22px; 173 | } 174 | .subscribes p { 175 | font-size: 16px; 176 | line-height: 28px; 177 | } 178 | .skill-area img { 179 | margin-bottom: 30px; 180 | } 181 | #blog .blog-item-wrapper { 182 | margin-bottom: 30px; 183 | } 184 | .video-promo .video-promo-content h2 { 185 | font-size: 20px; 186 | } 187 | .footer-right-contact .single-contact { 188 | margin: 10px 7px; 189 | padding: 3px 45px; 190 | } 191 | .footer-area .footer-titel { 192 | margin-top: 30px; 193 | } 194 | .contact-right-area { 195 | margin: 20px 0; 196 | } 197 | .contact-form-area h2 { 198 | font-size: 14px; 199 | } 200 | .copyright .float-right { 201 | float: left !important; 202 | } 203 | } 204 | -------------------------------------------------------------------------------- /assets/css/slicknav.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * SlickNav Responsive Mobile Menu v1.0.3 3 | * (c) 2015 Josh Cope 4 | * licensed under MIT 5 | */ 6 | .slicknav_btn { 7 | cursor: pointer; 8 | display: block; 9 | float: right; 10 | height: 35px; 11 | line-height: 50px; 12 | padding: 10px 0 9px; 13 | position: relative; 14 | vertical-align: middle; 15 | width: 44px; 16 | } 17 | .slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar { 18 | margin-top: 0.188em; } 19 | 20 | .slicknav_menu { 21 | *zoom: 1; } 22 | .slicknav_menu .slicknav_menutxt { 23 | display: block; 24 | line-height: 1.188em; 25 | float: left; } 26 | .slicknav_menu .slicknav_icon { 27 | margin: 0.188em 0 0 0.438em; } 28 | .slicknav_menu .slicknav_no-text { 29 | margin: 0; } 30 | .slicknav_menu .slicknav_icon-bar { 31 | display: block; 32 | width: 1.125em; 33 | height: 0.125em; 34 | margin: 0 auto; 35 | -webkit-border-radius: 1px; 36 | -moz-border-radius: 1px; 37 | border-radius: 1px; 38 | -webkit-transition: all 0.2s linear; 39 | -moz-transition: all 0.2s linear; 40 | -o-transition: all 0.2s linear; 41 | transition: all 0.2s linear; 42 | } 43 | .slicknav_menu:before { 44 | content: " "; 45 | display: table; } 46 | .slicknav_menu:after { 47 | content: " "; 48 | display: table; 49 | clear: both; } 50 | 51 | .slicknav_nav { 52 | clear: both; } 53 | .slicknav_nav ul { 54 | display: block; } 55 | .slicknav_nav li { 56 | display: block; 57 | line-height: 30px; 58 | } 59 | .slicknav_nav li:not(:first-child){ 60 | } 61 | .slicknav_nav .slicknav_arrow { 62 | background: #ededed none repeat scroll 0 0; 63 | float: right; 64 | text-align: center; 65 | width: 35px; 66 | color: #666; 67 | } 68 | .slicknav_nav .slicknav_item { 69 | cursor: pointer; } 70 | .slicknav_nav .slicknav_item a { 71 | display: inline; } 72 | .slicknav_nav .slicknav_row { 73 | display: block; } 74 | .slicknav_nav a { 75 | display: block; } 76 | .slicknav_nav .slicknav_parent-link a { 77 | display: inline; } 78 | 79 | .slicknav_brand { 80 | float: left; } 81 | 82 | .slicknav_menu { 83 | font-size: 16px; 84 | box-sizing: border-box; 85 | } 86 | .slicknav_menu ul{ 87 | background: #fff; 88 | } 89 | .slicknav_menu * { 90 | box-sizing: border-box; } 91 | .slicknav_menu .slicknav_menutxt { 92 | color: #fff; 93 | font-weight: bold; 94 | text-shadow: 0 1px 3px #000; } 95 | 96 | .slicknav_btn { 97 | border: 1px solid; 98 | border-radius: 0; 99 | margin: 11px 15px; 100 | -webkit-transition: all 0.2s linear; 101 | -moz-transition: all 0.2s linear; 102 | -o-transition: all 0.2s linear; 103 | transition: all 0.2s linear; 104 | } 105 | 106 | .slicknav_nav { 107 | color: #fff; 108 | font-size: 0.875em; 109 | list-style: outside none none; 110 | margin: 0; 111 | max-height: 350px; 112 | padding: 0; 113 | width: 100%; 114 | } 115 | .slicknav_nav ul { 116 | list-style: none; 117 | overflow: hidden; 118 | padding: 0; 119 | margin: 0 0 0 20px; } 120 | .slicknav_nav .slicknav_row { 121 | padding: 5px 10px; 122 | margin: 2px 5px; } 123 | .slicknav_nav a { 124 | padding: 5px 10px; 125 | margin: 2px 5px; 126 | text-decoration: none; 127 | color: #666; } 128 | .slicknav_nav .slicknav_txtnode { 129 | margin-left: 15px; } 130 | .slicknav_nav .slicknav_item a { 131 | padding: 0; 132 | margin: 0; } 133 | .slicknav_nav .slicknav_parent-link a { 134 | padding: 0; 135 | margin: 0; } 136 | 137 | .slicknav_brand { 138 | color: #fff; 139 | font-size: 18px; 140 | line-height: 30px; 141 | padding: 7px 12px; 142 | height: 44px; } 143 | -------------------------------------------------------------------------------- /assets/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/fonts/.DS_Store -------------------------------------------------------------------------------- /assets/fonts/LineIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/fonts/LineIcons.eot -------------------------------------------------------------------------------- /assets/fonts/LineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/fonts/LineIcons.ttf -------------------------------------------------------------------------------- /assets/fonts/LineIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/fonts/LineIcons.woff -------------------------------------------------------------------------------- /assets/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/.DS_Store -------------------------------------------------------------------------------- /assets/img/about/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/about/.DS_Store -------------------------------------------------------------------------------- /assets/img/about/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/about/img-1.jpg -------------------------------------------------------------------------------- /assets/img/bg-video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/bg-video.jpg -------------------------------------------------------------------------------- /assets/img/blog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/blog/.DS_Store -------------------------------------------------------------------------------- /assets/img/blog/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/blog/1.jpg -------------------------------------------------------------------------------- /assets/img/blog/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/blog/2.jpg -------------------------------------------------------------------------------- /assets/img/blog/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/blog/3.jpg -------------------------------------------------------------------------------- /assets/img/blog/avater-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/blog/avater-1.jpg -------------------------------------------------------------------------------- /assets/img/blog/avater-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/blog/avater-2.jpg -------------------------------------------------------------------------------- /assets/img/blog/blog-1-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/blog/blog-1-big.jpg -------------------------------------------------------------------------------- /assets/img/blog/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/blog/img1.jpg -------------------------------------------------------------------------------- /assets/img/blog/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/blog/img2.jpg -------------------------------------------------------------------------------- /assets/img/blog/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/blog/img3.jpg -------------------------------------------------------------------------------- /assets/img/clients/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/clients/.DS_Store -------------------------------------------------------------------------------- /assets/img/clients/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/clients/img1.png -------------------------------------------------------------------------------- /assets/img/clients/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/clients/img2.png -------------------------------------------------------------------------------- /assets/img/clients/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/clients/img3.png -------------------------------------------------------------------------------- /assets/img/clients/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/clients/img4.png -------------------------------------------------------------------------------- /assets/img/count-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/count-bg.jpg -------------------------------------------------------------------------------- /assets/img/hero-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/hero-1.png -------------------------------------------------------------------------------- /assets/img/hero-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/hero-bg.png -------------------------------------------------------------------------------- /assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/logo.png -------------------------------------------------------------------------------- /assets/img/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/logo.psd -------------------------------------------------------------------------------- /assets/img/page-header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/page-header-bg.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/portfolio/.DS_Store -------------------------------------------------------------------------------- /assets/img/portfolio/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/portfolio/img-1.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/portfolio/img-2.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/portfolio/img-3.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/img-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/portfolio/img-4.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/img-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/portfolio/img-5.jpg -------------------------------------------------------------------------------- /assets/img/portfolio/img-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/portfolio/img-6.jpg -------------------------------------------------------------------------------- /assets/img/team/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/team/.DS_Store -------------------------------------------------------------------------------- /assets/img/team/team-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/team/team-01.png -------------------------------------------------------------------------------- /assets/img/team/team-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/team/team-02.png -------------------------------------------------------------------------------- /assets/img/team/team-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/team/team-03.png -------------------------------------------------------------------------------- /assets/img/team/team-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/team/team-04.png -------------------------------------------------------------------------------- /assets/img/testimonial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/testimonial.jpg -------------------------------------------------------------------------------- /assets/img/testimonial/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/testimonial/.DS_Store -------------------------------------------------------------------------------- /assets/img/testimonial/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/testimonial/img1.jpg -------------------------------------------------------------------------------- /assets/img/testimonial/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/testimonial/img2.jpg -------------------------------------------------------------------------------- /assets/img/testimonial/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/testimonial/img3.jpg -------------------------------------------------------------------------------- /assets/img/testimonial/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/testimonial/img4.png -------------------------------------------------------------------------------- /assets/img/testimonial/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/testimonial/img5.png -------------------------------------------------------------------------------- /assets/img/testimonial/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/img/testimonial/img6.png -------------------------------------------------------------------------------- /assets/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incubateind/idtc-opensource-day1/ab3aa5fdfe740483777b015581c91954fc753a66/assets/js/.DS_Store -------------------------------------------------------------------------------- /assets/js/contact-form-script.min.js: -------------------------------------------------------------------------------- 1 | $("#contactForm").validator().on("submit", function (event) { 2 | if (event.isDefaultPrevented()) { 3 | // handle the invalid form... 4 | formError(); 5 | submitMSG(false, "Did you fill in the form properly?"); 6 | } else { 7 | // everything looks good! 8 | event.preventDefault(); 9 | submitForm(); 10 | } 11 | }); 12 | 13 | 14 | function submitForm(){ 15 | // Initiate Variables With Form Content 16 | var name = $("#name").val(); 17 | var email = $("#email").val(); 18 | var msg_subject = $("#msg_subject").val(); 19 | var message = $("#message").val(); 20 | 21 | 22 | $.ajax({ 23 | type: "POST", 24 | url: "assets/php/form-process.php", 25 | data: "name=" + name + "&email=" + email + "&msg_subject=" + msg_subject + "&message=" + message, 26 | success : function(text){ 27 | if (text == "success"){ 28 | formSuccess(); 29 | } else { 30 | formError(); 31 | submitMSG(false,text); 32 | } 33 | } 34 | }); 35 | } 36 | 37 | function formSuccess(){ 38 | $("#contactForm")[0].reset(); 39 | submitMSG(true, "Message Submitted!") 40 | } 41 | 42 | function formError(){ 43 | $("#contactForm").removeClass().addClass('shake animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function(){ 44 | $(this).removeClass(); 45 | }); 46 | } 47 | 48 | function submitMSG(valid, msg){ 49 | if(valid){ 50 | var msgClasses = "h3 text-left tada animated text-success"; 51 | } else { 52 | var msgClasses = "h3 text-left text-danger"; 53 | } 54 | $("#msgSubmit").removeClass().addClass(msgClasses).text(msg); 55 | } -------------------------------------------------------------------------------- /assets/js/form-validator.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Validator v0.8.1 for Bootstrap 3, by @1000hz 3 | * Copyright 2015 Cina Saffary 4 | * Licensed under http://opensource.org/licenses/MIT 5 | * 6 | * https://github.com/1000hz/bootstrap-validator 7 | */ 8 | 9 | +function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b),f=c.data("bs.validator");(f||"destroy"!=b)&&(f||c.data("bs.validator",f=new d(this,e)),"string"==typeof b&&f[b]())})}var c=':input:not([type="submit"], button):enabled:visible',d=function(b,c){this.$element=a(b),this.options=c,c.errors=a.extend({},d.DEFAULTS.errors,c.errors);for(var e in c.custom)if(!c.errors[e])throw new Error("Missing default error message for custom validator: "+e);a.extend(d.VALIDATORS,c.custom),this.$element.attr("novalidate",!0),this.toggleSubmit(),this.$element.on("input.bs.validator change.bs.validator focusout.bs.validator",a.proxy(this.validateInput,this)),this.$element.on("submit.bs.validator",a.proxy(this.onSubmit,this)),this.$element.find("[data-match]").each(function(){var b=a(this),c=b.data("match");a(c).on("input.bs.validator",function(){b.val()&&b.trigger("input.bs.validator")})})};d.DEFAULTS={delay:500,html:!1,disable:!0,custom:{},errors:{match:"Does not match",minlength:"Not long enough"},feedback:{success:"glyphicon-ok",error:"glyphicon-warning-sign"}},d.VALIDATORS={"native":function(a){var b=a[0];return b.checkValidity?b.checkValidity():!0},match:function(b){var c=b.data("match");return!b.val()||b.val()===a(c).val()},minlength:function(a){var b=a.data("minlength");return!a.val()||a.val().length>=b}},d.prototype.validateInput=function(b){var c=a(b.target),d=c.data("bs.validator.errors");if(c.is('[type="radio"]')&&(c=this.$element.find('input[name="'+c.attr("name")+'"]')),this.$element.trigger(b=a.Event("validate.bs.validator",{relatedTarget:c[0]})),!b.isDefaultPrevented()){var e=this;this.runValidators(c).done(function(f){c.data("bs.validator.errors",f),f.length?e.showErrors(c):e.clearErrors(c),d&&f.toString()===d.toString()||(b=f.length?a.Event("invalid.bs.validator",{relatedTarget:c[0],detail:f}):a.Event("valid.bs.validator",{relatedTarget:c[0],detail:d}),e.$element.trigger(b)),e.toggleSubmit(),e.$element.trigger(a.Event("validated.bs.validator",{relatedTarget:c[0]}))})}},d.prototype.runValidators=function(b){function c(a){return b.data(a+"-error")||b.data("error")||"native"==a&&b[0].validationMessage||g.errors[a]}var e=[],f=a.Deferred(),g=this.options;return b.data("bs.validator.deferred")&&b.data("bs.validator.deferred").reject(),b.data("bs.validator.deferred",f),a.each(d.VALIDATORS,a.proxy(function(a,d){if((b.data(a)||"native"==a)&&!d.call(this,b)){var f=c(a);!~e.indexOf(f)&&e.push(f)}},this)),!e.length&&b.val()&&b.data("remote")?this.defer(b,function(){var d={};d[b.attr("name")]=b.val(),a.get(b.data("remote"),d).fail(function(a,b,d){e.push(c("remote")||d)}).always(function(){f.resolve(e)})}):f.resolve(e),f.promise()},d.prototype.validate=function(){var a=this.options.delay;return this.options.delay=0,this.$element.find(c).trigger("input.bs.validator"),this.options.delay=a,this},d.prototype.showErrors=function(b){var c=this.options.html?"html":"text";this.defer(b,function(){var d=b.closest(".form-group"),e=d.find(".help-block.with-errors"),f=d.find(".form-control-feedback"),g=b.data("bs.validator.errors");g.length&&(g=a("