├── .gitignore
├── .vscode
    └── tasks.json
├── css
    ├── app.css
    └── app.css.map
├── images
    ├── blog1.png
    ├── blog2.png
    ├── blog3.png
    ├── contact-bg.png
    ├── header-bg.png
    ├── icon-bars.png
    ├── icon-document.png
    ├── icon-rocket.png
    ├── icon-search.png
    ├── img-call.png
    ├── img-clock.png
    ├── img-lamp.png
    ├── img1.png
    ├── img10.png
    ├── img11.png
    ├── img2.png
    ├── img3.png
    ├── img4.png
    ├── img5.png
    ├── img6.png
    ├── img7.png
    ├── img8.png
    ├── img9.png
    ├── logo-footer.png
    ├── logo.png
    ├── logo1.png
    ├── logo2.png
    ├── logo3.png
    ├── logo4.png
    ├── logo5.png
    ├── logo6.png
    ├── logo7.png
    ├── logo8.png
    ├── team1.png
    ├── team2.png
    └── team3.png
├── index.html
├── sass
    ├── _base.scss
    ├── _blog.scss
    ├── _contact.scss
    ├── _footer.scss
    ├── _function.scss
    ├── _header.scss
    ├── _hero.scss
    ├── _menu.scss
    ├── _mixin.scss
    ├── _partner.scss
    ├── _portfolio.scss
    ├── _reset.scss
    ├── _team.scss
    ├── _variables.scss
    └── app.scss
└── scripts
    └── app.js
/.gitignore:
--------------------------------------------------------------------------------
1 | .history
--------------------------------------------------------------------------------
/.vscode/tasks.json:
--------------------------------------------------------------------------------
 1 | {
 2 |   // See https://go.microsoft.com/fwlink/?LinkId=733558
 3 |   // for the documentation about the tasks.json format
 4 |   "version": "2.0.0",
 5 |   "tasks": [
 6 |     {
 7 |       "label": "Run sass",
 8 |       "type": "shell",
 9 |       "command": "sass sass/app.scss css/app.css --watch"
10 |     }
11 |   ]
12 | }
13 | 
--------------------------------------------------------------------------------
/css/app.css:
--------------------------------------------------------------------------------
  1 | html {
  2 |   box-sizing: border-box;
  3 | }
  4 | 
  5 | * {
  6 |   margin: 0;
  7 |   padding: 0;
  8 | }
  9 | 
 10 | *,
 11 | *:before,
 12 | *:after {
 13 |   box-sizing: border-box;
 14 | }
 15 | 
 16 | input,
 17 | textarea,
 18 | select,
 19 | button {
 20 |   outline: none;
 21 | }
 22 | 
 23 | input {
 24 |   line-height: normal;
 25 | }
 26 | 
 27 | label,
 28 | button {
 29 |   cursor: pointer;
 30 | }
 31 | 
 32 | a {
 33 |   text-decoration: none;
 34 | }
 35 | 
 36 | img {
 37 |   display: block;
 38 |   max-width: 100%;
 39 | }
 40 | 
 41 | html {
 42 |   scroll-behavior: smooth;
 43 | }
 44 | 
 45 | body {
 46 |   font-family: "Open sans", sans-serif;
 47 |   font-size: 16px;
 48 |   line-height: 1;
 49 |   color: #6a727f;
 50 |   max-width: 1920px;
 51 |   margin: 0 auto;
 52 | }
 53 | 
 54 | input,
 55 | button,
 56 | textarea,
 57 | select {
 58 |   font-family: "Open sans", sans-serif;
 59 |   font-size: 14px;
 60 |   outline: none;
 61 |   border: 0;
 62 | }
 63 | 
 64 | input {
 65 |   line-height: normal;
 66 | }
 67 | 
 68 | section[id] {
 69 |   scroll-margin-top: 30px;
 70 | }
 71 | 
 72 | .container {
 73 |   max-width: 1200px;
 74 |   margin: 0 auto;
 75 |   padding: 0 15px;
 76 | }
 77 | 
 78 | .second-font {
 79 |   font-family: "Raleway", sans-serif;
 80 | }
 81 | 
 82 | .btn {
 83 |   cursor: pointer;
 84 |   outline: none;
 85 |   display: inline-flex;
 86 |   align-items: center;
 87 |   justify-content: center;
 88 |   color: white;
 89 |   font-weight: bold;
 90 |   font-size: 16px;
 91 |   font-family: "Open sans", sans-serif;
 92 |   height: 55px;
 93 |   padding-left: 70px;
 94 |   padding-right: 70px;
 95 |   border-radius: 6px;
 96 | }
 97 | .btn--primary {
 98 |   background-color: #4944f2;
 99 | }
100 | .btn--secondary {
101 |   background-color: transparent;
102 |   background-image: linear-gradient(to right, #f475a0, #feac3d);
103 | }
104 | 
105 | a {
106 |   color: inherit;
107 | }
108 | 
109 | h1,
110 | h2,
111 | h3,
112 | h4,
113 | h5,
114 | h6 {
115 |   color: #393e46;
116 | }
117 | 
118 | .heading {
119 |   font-size: 36px;
120 |   line-height: 1.5555555556;
121 |   font-weight: 800;
122 |   font-family: "Raleway", sans-serif;
123 |   margin-bottom: 30px;
124 | }
125 | 
126 | .title {
127 |   font-size: 22px;
128 |   font-weight: 800;
129 |   font-family: "Raleway", sans-serif;
130 |   line-height: 1.5909090909;
131 |   margin-bottom: 20px;
132 |   display: block;
133 |   color: #393e46;
134 | }
135 | 
136 | .text {
137 |   font-size: 18px;
138 |   line-height: 1.8888888889;
139 | }
140 | 
141 | .text--small {
142 |   font-size: 14px;
143 | }
144 | 
145 | @media screen and (max-width: 767px) {
146 |   .heading {
147 |     font-size: 25px;
148 |     margin-bottom: 20px;
149 |   }
150 | 
151 |   .title {
152 |     font-size: 20px;
153 |     margin-bottom: 10px;
154 |   }
155 | 
156 |   .text {
157 |     font-size: 16px;
158 |   }
159 | }
160 | .header-logo {
161 |   display: inline-block;
162 | }
163 | .header-main {
164 |   display: flex;
165 |   justify-content: space-between;
166 |   align-items: center;
167 |   padding: 40px 0;
168 | }
169 | .header-phone {
170 |   color: #393e46;
171 |   font-weight: 300;
172 | }
173 | .header-phone a {
174 |   font-weight: 600;
175 |   margin-left: 15px;
176 |   color: inherit;
177 | }
178 | 
179 | .navigation {
180 |   display: flex;
181 |   align-items: center;
182 |   gap: 0 60px;
183 | }
184 | 
185 | @media screen and (max-width: 1023px) {
186 |   .header {
187 |     margin-bottom: 20px;
188 |   }
189 | 
190 |   .header-phone {
191 |     display: none;
192 |   }
193 | 
194 |   .navigation {
195 |     gap: 0 25px;
196 |   }
197 | 
198 |   .header-main {
199 |     padding: 20px 0;
200 |   }
201 | }
202 | .hero {
203 |   margin-bottom: 200px;
204 |   position: relative;
205 |   display: block;
206 | }
207 | .hero-image {
208 |   margin-left: auto;
209 |   max-width: 65%;
210 | }
211 | .hero-content {
212 |   position: absolute;
213 |   top: 50%;
214 |   transform: translateY(-50%);
215 |   z-index: 2;
216 |   left: 20%;
217 | }
218 | .hero-caption {
219 |   font-size: 72px;
220 |   font-weight: 600;
221 |   margin-bottom: 5px;
222 | }
223 | .hero-heading {
224 |   font-weight: 800;
225 |   font-size: 150px;
226 |   text-transform: uppercase;
227 |   margin-bottom: 40px;
228 | }
229 | .hero-link {
230 |   font-size: 18px;
231 |   text-decoration: underline;
232 |   color: #6a727f;
233 |   display: inline-block;
234 |   font-weight: 600;
235 | }
236 | @media screen and (max-width: 1023px) {
237 |   .hero {
238 |     margin-bottom: 100px;
239 |   }
240 |   .hero-caption {
241 |     font-size: 40px;
242 |   }
243 |   .hero-heading {
244 |     font-size: 100px;
245 |   }
246 | }
247 | @media screen and (max-width: 767px) {
248 |   .hero {
249 |     margin-bottom: 50px;
250 |   }
251 |   .hero-content {
252 |     left: 15px;
253 |   }
254 |   .hero-caption {
255 |     font-size: 20px;
256 |   }
257 |   .hero-heading {
258 |     font-size: 40px;
259 |     margin-bottom: 20px;
260 |   }
261 |   .hero-link {
262 |     font-size: 16px;
263 |   }
264 |   .hero-image {
265 |     max-width: 75%;
266 |   }
267 | }
268 | 
269 | .portfolio {
270 |   margin-bottom: 200px;
271 | }
272 | .portfolio-list {
273 |   display: grid;
274 |   grid-template-columns: repeat(3, 1fr);
275 |   grid-gap: 0 90px;
276 |   margin-bottom: 95px;
277 | }
278 | .portfolio-image {
279 |   margin-bottom: 40px;
280 |   display: block;
281 | }
282 | .portfolio-category {
283 |   color: #6a727f;
284 | }
285 | .portfolio-column {
286 |   display: flex;
287 |   flex-direction: column;
288 |   gap: 85px 0;
289 | }
290 | .portfolio-link {
291 |   position: relative;
292 |   left: 50%;
293 |   transform: translateX(-50%);
294 | }
295 | @media screen and (max-width: 1023px) {
296 |   .portfolio {
297 |     margin-bottom: 100px;
298 |   }
299 |   .portfolio-list {
300 |     grid-gap: 0 20px;
301 |     margin-bottom: 45px;
302 |   }
303 |   .portfolio-column {
304 |     gap: 40px 0;
305 |   }
306 | }
307 | @media screen and (max-width: 767px) {
308 |   .portfolio {
309 |     margin-bottom: 50px;
310 |   }
311 |   .portfolio-list {
312 |     grid-template-columns: 1fr;
313 |     grid-gap: 40px 0;
314 |   }
315 |   .portfolio-image {
316 |     margin-bottom: 30px;
317 |   }
318 |   .portfolio-image img {
319 |     width: 100%;
320 |     height: auto;
321 |     object-fit: cover;
322 |   }
323 | }
324 | 
325 | .partner {
326 |   margin-bottom: 150px;
327 | }
328 | .partner-main {
329 |   display: grid;
330 |   grid-template-columns: repeat(4, 1fr);
331 |   grid-gap: 90px 0;
332 | }
333 | .partner-item {
334 |   padding: 0 50px;
335 |   display: flex;
336 |   justify-content: center;
337 |   align-items: center;
338 |   cursor: pointer;
339 |   transition: opacity 0.2s linear;
340 | }
341 | .partner-item:hover {
342 |   opacity: 0.1;
343 | }
344 | @media screen and (max-width: 1023px) {
345 |   .partner {
346 |     margin-bottom: 100px;
347 |   }
348 |   .partner-item {
349 |     padding: 0 25px;
350 |   }
351 | }
352 | @media screen and (max-width: 767px) {
353 |   .partner {
354 |     margin-bottom: 50px;
355 |   }
356 |   .partner-main {
357 |     grid-gap: 25px 15px;
358 |     grid-template-columns: 1fr 1fr;
359 |   }
360 | }
361 | 
362 | .team {
363 |   padding: 150px 0;
364 |   background-color: #f7f8f9;
365 | }
366 | .team-main {
367 |   display: flex;
368 |   align-items: center;
369 |   justify-content: space-between;
370 |   gap: 0 30px;
371 | }
372 | .team-desc {
373 |   font-size: 18px;
374 |   line-height: 1.8888888889;
375 |   margin-bottom: 60px;
376 | }
377 | .team-images {
378 |   display: flex;
379 |   align-items: center;
380 |   gap: 0 30px;
381 | }
382 | .team-img2 {
383 |   margin-top: 30px;
384 |   margin-left: auto;
385 | }
386 | @media screen and (min-width: 1024px) {
387 |   .team-content {
388 |     max-width: 370px;
389 |     flex-shrink: 0;
390 |     width: 100%;
391 |   }
392 |   .team-images {
393 |     width: 100%;
394 |     max-width: 670px;
395 |   }
396 | }
397 | @media screen and (max-width: 1023px) {
398 |   .team {
399 |     padding: 100px 0;
400 |   }
401 |   .team-main {
402 |     flex-direction: column;
403 |     gap: 60px 0;
404 |   }
405 | }
406 | @media screen and (max-width: 767px) {
407 |   .team {
408 |     padding: 50px 0;
409 |   }
410 |   .team-desc {
411 |     margin-bottom: 30px;
412 |   }
413 | }
414 | 
415 | .blog {
416 |   padding: 150px 0;
417 | }
418 | .blog-header {
419 |   max-width: 560px;
420 |   margin: 0 auto 100px;
421 |   text-align: center;
422 | }
423 | .blog-list {
424 |   display: grid;
425 |   grid-template-columns: repeat(3, 1fr);
426 |   grid-gap: 30px;
427 | }
428 | .blog-image {
429 |   margin-bottom: 40px;
430 |   display: block;
431 | }
432 | .blog-category {
433 |   color: #6a727f;
434 | }
435 | @media screen and (max-width: 1023px) {
436 |   .blog {
437 |     padding: 100px 0;
438 |   }
439 |   .blog-header {
440 |     margin-bottom: 50px;
441 |   }
442 | }
443 | @media screen and (max-width: 767px) {
444 |   .blog {
445 |     padding: 50px 0;
446 |   }
447 |   .blog-header {
448 |     margin-bottom: 30px;
449 |   }
450 |   .blog-list {
451 |     grid-template-columns: 1fr;
452 |   }
453 |   .blog-image {
454 |     margin-bottom: 20px;
455 |   }
456 |   .blog-image img {
457 |     height: auto;
458 |     object-fit: cover;
459 |     width: 100%;
460 |   }
461 | }
462 | 
463 | .contact {
464 |   padding: 150px 0;
465 |   background: url("../images/contact-bg.png") no-repeat center/cover;
466 | }
467 | .contact-container {
468 |   max-width: 600px;
469 |   margin: 0 auto;
470 | }
471 | .contact-header {
472 |   margin: 0 auto 100px;
473 |   text-align: center;
474 | }
475 | .contact-heading {
476 |   font-weight: 400;
477 | }
478 | .contact-heading, .contact-desc {
479 |   color: white;
480 | }
481 | .contact-field {
482 |   padding: 20px 30px;
483 |   display: block;
484 |   width: 100%;
485 |   border: 1px solid rgba(255, 255, 255, 0.5);
486 |   border-radius: 4px;
487 |   margin-bottom: 30px;
488 |   background-color: transparent;
489 |   color: white;
490 |   transition: border 0.2s linear;
491 | }
492 | .contact-field::-webkit-input-placeholder {
493 |   color: white;
494 | }
495 | .contact-field::-moz-input-placeholder {
496 |   color: white;
497 | }
498 | .contact-field:focus {
499 |   border-color: white;
500 | }
501 | .contact-area {
502 |   line-height: 1.55;
503 |   resize: none;
504 |   min-height: 100px;
505 | }
506 | @media screen and (max-width: 1023px) {
507 |   .contact {
508 |     padding: 100px 0;
509 |   }
510 |   .contact-header {
511 |     margin-bottom: 50px;
512 |   }
513 | }
514 | @media screen and (max-width: 767px) {
515 |   .contact {
516 |     padding: 50px 0;
517 |   }
518 |   .contact-header {
519 |     margin-bottom: 30px;
520 |   }
521 | }
522 | 
523 | .footer-top {
524 |   padding: 150px 0px;
525 |   background-color: #282f3a;
526 | }
527 | .footer-main {
528 |   display: grid;
529 |   grid-template-columns: repeat(3, 1fr);
530 |   grid-gap: 0 130px;
531 | }
532 | .footer-logo {
533 |   display: inline-block;
534 |   margin-bottom: 40px;
535 | }
536 | .footer-desc {
537 |   font-size: 16px;
538 |   margin-bottom: 40px;
539 | }
540 | .footer .social {
541 |   display: flex;
542 |   align-items: center;
543 |   gap: 0 30px;
544 | }
545 | .footer .social-item {
546 |   cursor: pointer;
547 |   color: #6a727f;
548 | }
549 | .footer .social-item:hover {
550 |   color: white;
551 | }
552 | .footer-heading {
553 |   font-size: 18px;
554 |   color: white;
555 |   margin-bottom: 40px;
556 |   font-weight: bold;
557 | }
558 | .footer-links {
559 |   list-style: none;
560 | }
561 | .footer-item {
562 |   margin-bottom: 30px;
563 | }
564 | .footer-link {
565 |   display: inline-block;
566 |   color: #6a727f;
567 | }
568 | .footer-info {
569 |   list-style: none;
570 |   margin-bottom: 40px;
571 | }
572 | .footer-info li {
573 |   margin-bottom: 15px;
574 |   line-height: 1.875;
575 | }
576 | .footer-highlight {
577 |   color: white;
578 | }
579 | .footer-bottom {
580 |   background-color: #252b36;
581 |   line-height: 1.6;
582 | }
583 | .footer-bottom a {
584 |   color: white;
585 | }
586 | .footer-container {
587 |   padding-top: 60px;
588 |   padding-bottom: 60px;
589 |   position: relative;
590 | }
591 | .footer-rocket {
592 |   color: white;
593 |   border-radius: 4px;
594 |   width: 70px;
595 |   height: 70px;
596 |   display: flex;
597 |   justify-content: center;
598 |   align-items: center;
599 |   background-color: #4944f2;
600 |   font-size: 20px;
601 |   position: absolute;
602 |   top: 0;
603 |   right: 0;
604 |   transform: translateY(-50%);
605 |   z-index: 2;
606 | }
607 | @media screen and (max-width: 1023px) {
608 |   .footer-top {
609 |     padding: 100px 0;
610 |   }
611 |   .footer-main {
612 |     grid-gap: 0 30px;
613 |   }
614 | }
615 | @media screen and (max-width: 767px) {
616 |   .footer-top {
617 |     padding: 50px 0;
618 |   }
619 |   .footer-main {
620 |     grid-template-columns: 1fr;
621 |     grid-gap: 30px 0;
622 |   }
623 |   .footer-container {
624 |     padding: 35px 15px;
625 |   }
626 |   .footer-rocket {
627 |     width: 50px;
628 |     height: 50px;
629 |     right: 15px;
630 |   }
631 | }
632 | 
633 | .menu {
634 |   position: fixed;
635 |   right: 0;
636 |   top: 0;
637 |   bottom: 0;
638 |   width: 300px;
639 |   background-color: white;
640 |   z-index: 9999;
641 |   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
642 |   transform: translateX(100%);
643 |   transition: transform 0.2s linear;
644 |   will-change: transform;
645 | }
646 | .menu.is-active {
647 |   transform: translateX(0);
648 | }
649 | .menu-list {
650 |   list-style: none;
651 |   height: 100%;
652 |   padding: 70px 20px 20px;
653 | }
654 | .menu-item {
655 |   margin-bottom: 15px;
656 | }
657 | .menu-link {
658 |   display: block;
659 |   padding: 15px;
660 |   text-transform: capitalize;
661 |   color: #393e46;
662 |   border-radius: 6px;
663 |   transition: all 0.15s linear;
664 | }
665 | .menu-link:hover {
666 |   color: white;
667 |   background-color: #4944f2;
668 | }
669 | .menu-close {
670 |   cursor: pointer;
671 |   font-size: 30px;
672 |   position: absolute;
673 |   right: 20px;
674 |   top: 20px;
675 | }
676 | .menu-phone {
677 |   padding: 15px;
678 |   color: #393e46;
679 | }
680 | .menu-phone a {
681 |   color: inherit;
682 |   font-weight: bold;
683 | }
684 | .menu-toggle {
685 |   cursor: pointer;
686 | }
687 | 
688 | /*# sourceMappingURL=app.css.map */
689 | 
--------------------------------------------------------------------------------
/css/app.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sourceRoot":"","sources":["../sass/_reset.scss","../sass/_base.scss","../sass/_variables.scss","../sass/_mixin.scss","../sass/_header.scss","../sass/_hero.scss","../sass/_portfolio.scss","../sass/_partner.scss","../sass/_team.scss","../sass/_blog.scss","../sass/_contact.scss","../sass/_footer.scss","../sass/_menu.scss"],"names":[],"mappings":"AAAA;EACE;;;AAEF;EACE;EACA;;;AAEF;AAAA;AAAA;EAGE;;;AAEF;AAAA;AAAA;AAAA;EAIE;;;AAEF;EACE;;;AAEF;AAAA;EAEE;;;AAEF;EACE;;;AAEF;EACE;EACA;;;AC9BF;EACE;;;AAEF;EACE,aCJa;EDKb;EACA;EACA,OCJW;EDKX;EACA;;;AAEF;AAAA;AAAA;AAAA;EAIE,aCfa;EDgBb;EACA;EACA;;;AAEF;EACE;;;AAEF;EACE;;;AAEF;EACE;EACA;EACA;;;AAEF;EACE,aC/Be;;;ADiCjB;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,aC3Ca;ED4Cb;EACA;EACA;EACA;;AACA;EACE,kBC3CS;;AD6CX;EACE;EACA;;;AAGJ;EACE;;;AAEF;AAAA;AAAA;AAAA;AAAA;AAAA;EAME,OC/DK;;;ADiEP;EACE;EACA;EACA;EACA,aCtEe;EDuEf;;;AAEF;EACE;EACA;EACA,aC5Ee;ED6Ef;EACA;EACA;EACA,OC/EK;;;ADiFP;EACE;EACA;;;AAEF;EACE;;;AEvFA;EF0FA;IACE;IACA;;;EAEF;IACE;IACA;;;EAEF;IACE;;;AGnGF;EACE;;AAEF;EACE;EACA;EACA;EACA;;AAEF;EACE,OFTG;EEUH;;AACA;EACE;EACA;EACA;;;AAIN;EACE;EACA;EACA;;;ADtBA;ECyBA;IACE;;;EAEF;IACE;;;EAEF;IACE;;;EAEF;IACE;;;ACpCJ;EACE;EACA;EACA;;AACA;EACE;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA,OH1BS;EG2BT;EACA;;AF9BF;EEDF;IAkCI;;EACA;IACE;;EAEF;IACE;;;AFtCJ;EEDF;IA2CI;;EACA;IACE;;EAEF;IACE;;EAEF;IACE;IACA;;EAEF;IACE;;EAEF;IACE;;;;AC1DN;EACE;;AACA;EACE;EACA;EACA;EACA;;AAEF;EACE;EACA;;AAEF;EACE,OJVS;;AIYX;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;;AHtBF;EGDF;IA0BI;;EACA;IACE;IACA;;EAEF;IACE;;;AH/BJ;EGDF;IAoCI;;EACA;IACE;IACA;;EAEF;IACE;;EAEF;IACE;IACA;IACA;;;;AC/CN;EACE;;AACA;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;AJdJ;EIDF;IAmBI;;EACA;IACE;;;AJpBJ;EIDF;IAyBI;;EACA;IACE;IACA;;;;AC5BN;EACE;EACA,kBNKa;;AMJb;EACE;EACA;EACA;EACA;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;;ALfF;EKkBE;IACE;IACA;IACA;;EAEF;IACE;IACA;;;AL9BJ;EKDF;IAmCI;;EACA;IACE;IACA;;;ALrCJ;EKDF;IA0CI;;EACA;IACE;;;;AC5CN;EACE;;AACA;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;;AAEF;EACE,OPdS;;ACFX;EMDF;IAoBI;;EACA;IACE;;;ANrBJ;EMDF;IA0BI;;EACA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;IACE;IACA;IACA;;;;ACvCN;EACE;EACA;;AACA;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;;AAEF;EAEE;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;AAEF;EACE;;AAEF;EACE;;AAGJ;EACE;EACA;EACA;;APxCF;EODF;IA4CI;;EACA;IACE;;;AP7CJ;EODF;IAkDI;;EACA;IACE;;;;ACnDJ;EACE;EACA,kBTCQ;;ASCV;EACE;EACA;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA,OTtBS;;ASuBT;EACE;;AAGJ;EACE;EACA;EACA;EACA;;AAEF;EACE;;AAEF;EACE;;AAEF;EACE;EACA,OTzCS;;AS2CX;EACE;EACA;;AAEF;EACE;EACA;;AAEF;EACE;;AAEF;EACE,kBTrDU;ESsDV;;AAEF;EACE;;AAEF;EACE;EACA;EACA;;AAEF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA,kBTvES;ESwET;EACA;EACA;EACA;EACA;EACA;;ARlFF;EQqFE;IACE;;EAEF;IACE;;;ARzFJ;EQ6FE;IACE;;EAEF;IACE;IACA;;EAEF;IACE;;EAEF;IACE;IACA;IACA;;;;AC3GN;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AACA;EACE;;AAEF;EACE;EACA;EACA;;AAEF;EACE;;AAEF;EACE;EACA;EACA;EACA,OVzBG;EU0BH;EACA;;AACA;EACE;EACA,kBV1BO;;AU6BX;EACE;EACA;EACA;EACA;EACA;;AAEF;EACE;EACA,OV1CG;;AU2CH;EACE;EACA;;AAGJ;EACE","file":"app.css"}
--------------------------------------------------------------------------------
/images/blog1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/blog1.png
--------------------------------------------------------------------------------
/images/blog2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/blog2.png
--------------------------------------------------------------------------------
/images/blog3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/blog3.png
--------------------------------------------------------------------------------
/images/contact-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/contact-bg.png
--------------------------------------------------------------------------------
/images/header-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/header-bg.png
--------------------------------------------------------------------------------
/images/icon-bars.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/icon-bars.png
--------------------------------------------------------------------------------
/images/icon-document.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/icon-document.png
--------------------------------------------------------------------------------
/images/icon-rocket.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/icon-rocket.png
--------------------------------------------------------------------------------
/images/icon-search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/icon-search.png
--------------------------------------------------------------------------------
/images/img-call.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img-call.png
--------------------------------------------------------------------------------
/images/img-clock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img-clock.png
--------------------------------------------------------------------------------
/images/img-lamp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img-lamp.png
--------------------------------------------------------------------------------
/images/img1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img1.png
--------------------------------------------------------------------------------
/images/img10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img10.png
--------------------------------------------------------------------------------
/images/img11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img11.png
--------------------------------------------------------------------------------
/images/img2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img2.png
--------------------------------------------------------------------------------
/images/img3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img3.png
--------------------------------------------------------------------------------
/images/img4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img4.png
--------------------------------------------------------------------------------
/images/img5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img5.png
--------------------------------------------------------------------------------
/images/img6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img6.png
--------------------------------------------------------------------------------
/images/img7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img7.png
--------------------------------------------------------------------------------
/images/img8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img8.png
--------------------------------------------------------------------------------
/images/img9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/img9.png
--------------------------------------------------------------------------------
/images/logo-footer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/logo-footer.png
--------------------------------------------------------------------------------
/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/logo.png
--------------------------------------------------------------------------------
/images/logo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/logo1.png
--------------------------------------------------------------------------------
/images/logo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/logo2.png
--------------------------------------------------------------------------------
/images/logo3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/logo3.png
--------------------------------------------------------------------------------
/images/logo4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/logo4.png
--------------------------------------------------------------------------------
/images/logo5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/logo5.png
--------------------------------------------------------------------------------
/images/logo6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/logo6.png
--------------------------------------------------------------------------------
/images/logo7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/logo7.png
--------------------------------------------------------------------------------
/images/logo8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/logo8.png
--------------------------------------------------------------------------------
/images/team1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/team1.png
--------------------------------------------------------------------------------
/images/team2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/team2.png
--------------------------------------------------------------------------------
/images/team3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/evondev/octavian2/2d5dd8ff90cb572c5c3f22cbdce2d28e06d746c8/images/team3.png
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
  1 | 
  2 | 
  3 |   
  4 |     
  5 |     
  6 |     
  7 |     Octavian
  8 |     
  9 |     
 10 |     
 14 |     
 18 |     
 22 |     
 23 |   
 24 |   
 25 |     
 48 |     
 64 |     
 65 |       
 66 |          67 |
 67 |         
 68 |           
creative & digital
 69 |           
Agency
 70 |           
Purchase Now
 71 |         
 75 |           
 76 |             
117 |             
118 |               
131 |               
144 |               
157 |               
170 |             
171 |             
212 |           
213 |           
 Get Started 
214 |         
248 |           
249 |             
250 |               
251 |                 Our team will be Happy to help you
252 |               
253 |               
254 |                 Phasellus pulvinar iaculis nunc at placerat. Sed porta
255 |                 sollicitudin eros, vel sagittis turpis consequat nec.
256 |               
257 |               
Get Started
258 |             
259 |             
274 |           
275 |