diff --git a/_data/navigation.yml b/_data/navigation.yml index 42704e2503d79bdc9ca9517874c643bfad66c72e..0faae062803eb3fe065552fa532f9dee8573a610 100644 --- a/_data/navigation.yml +++ b/_data/navigation.yml @@ -17,6 +17,9 @@ header: - title: "Events" url: "events" + - title: "Services" + url: "services/" + - title: FAQ url: "faq.html" diff --git a/_includes/cards/post_card_image.html b/_includes/cards/post_card_image.html index 058d3f4ae521458d899e584fe8f24334fc9632b8..3c7ba5e35bf05e2d77443752f11ba8648c01cf6a 100644 --- a/_includes/cards/post_card_image.html +++ b/_includes/cards/post_card_image.html @@ -16,24 +16,14 @@ post: The post which sould be displayed on the card | relative_url -%} {%- endif -%} <div class="card top-image-card {{ include.class }}"> + <a href="{{ include.post.url | relative_url }}" class="stretched-link"></a> <img class="card-img-top card-img-equal" src="{{ img_url }}" alt="Title image"> <div class="card-img-overlay"> - <span class="badge badge-secondary"> - <i class="fas fa-calendar-day" aria-hidden="true"></i> - {{ include.post.date | date: "%d. %b. %y" }} - </span> - <span class="badge badge-dark"> - <i class="fas fa-tag" aria-hidden="true"></i> - {%- for category in include.post.categories -%} - {%- unless site.languages contains category -%} - {{ category | capitalize }} - {%- endunless -%} - {%- endfor -%} - </span> + <h3 class="card-title text-white" style="text-shadow: 0px 0px 20px #000000, 0px 0px 20px #000000, 0px 0px 20px #000, 0px 0px 20px #000">{{ include.post.title }}</h3> </div> + {%- if include.excerpt -%} <div class="card-body"> - <a href="{{ include.post.url | relative_url }}" class="stretched-link"> - <h4 class="card-title">{{ include.post.title }}</h4> - </a> + <p>{{ include.post.excerpt }}</p> </div> + {%- endif -%} </div> diff --git a/_includes/frontpage/title-content.html b/_includes/frontpage/title-content.html index 20aede303f8f67a03e355c8111b2f2b6651fb408..3b039d512686724aa0e83b0a4b78c8a97036cdf4 100644 --- a/_includes/frontpage/title-content.html +++ b/_includes/frontpage/title-content.html @@ -10,15 +10,11 @@ <a href="https://aai.helmholtz.de" class="btn btn-light btn-lg text-dark"> <i class="fas fa-network-wired"></i>Helmholtz AAI </a> - <a href="{{ '/services/consulting' | relative_url }}" class="btn btn-light btn-lg text-dark"> + <a href="{{ '/services/software/consulting' | relative_url }}" class="btn btn-light btn-lg text-dark"> <i class="fas fa-chart-line"></i> Consulting </a> - - <a href="{{ '/services/training' | relative_url }}" class="btn btn-light btn-lg text-dark"> + <a href="{{ '/services/software/training' | relative_url }}" class="btn btn-light btn-lg text-dark"> <i class="fas fa-university"></i> Education & Training - </a> - <a href="{{ '/services/#community' | relative_url }}" class="btn btn-light btn-lg text-dark"> - <i class="fas fa-users"></i> Communities </a> </div> </div> diff --git a/_layouts/services/index.html b/_layouts/services/index.html index 65745bbd567d5c13b5994411bda8a4a3ab6f2151..cfa1583a85b9252cf7fb762a7db693338ad93319 100644 --- a/_layouts/services/index.html +++ b/_layouts/services/index.html @@ -25,7 +25,7 @@ In Education & Training we will offer courses, materials or workshops to help you in getting started or in boosting your software engineering practice. - <a href="{{ 'services/training' | relative_url }}"><strong>More...</strong></a> + <a href="{{ 'services/software/training' | relative_url }}"><strong>More...</strong></a> </p> <h4>Need something specific? Talk to us</h4> {% include contact_us/mini.html %} diff --git a/_sass/common/_cards.scss b/_sass/common/_cards.scss index 4821694912a8e300b9e4f754c07056fbd2d9c0ec..e7a2de54350205c5d849571612843e276e13d663 100644 --- a/_sass/common/_cards.scss +++ b/_sass/common/_cards.scss @@ -1,12 +1,16 @@ .flex-cards { display: flex; flex-flow: wrap; - justify-content: space-evenly; + justify-content: flex-start; margin-top: 0rem; margin-bottom: 0rem; text-align: center; + + @include medium-is-phone { + justify-content: space-evenly; + } } .card { diff --git a/assets/css/services/services-page-images.scss b/assets/css/services/services-page-images.scss new file mode 100644 index 0000000000000000000000000000000000000000..33f3683a555561727e8b7ea46833776b2072c366 --- /dev/null +++ b/assets/css/services/services-page-images.scss @@ -0,0 +1,36 @@ +--- +--- + +@import "boilerplate/breakpoints"; + +.image-block { + display: flex; + padding: 1rem 0; + align-items: center; + + div { + flex: 3 0 0; + } + + .help-image { + padding: 1rem 2rem; + flex: 1 0 0; + max-width: 14rem; // needed for Chrome on large screens + min-height: 5rem; // needed for Firefox on small screens + + &.right { + @include medium-is-tablet-plus { + order: 1 + } + } + } + + @include medium-is-phone { + flex-direction: column; + } +} + +.image-attrib { + font-size: 0.8rem; + text-align: right; +} diff --git a/assets/css/title/service-title-buttons.scss b/assets/css/title/service-title-buttons.scss index 86164f8186ca95b228c35fe913b717c73a02f056..92daf2a5c222da5deeb78774096e7dd9f1b5524d 100644 --- a/assets/css/title/service-title-buttons.scss +++ b/assets/css/title/service-title-buttons.scss @@ -11,10 +11,10 @@ .services-title-buttons { display: grid; - grid-template-columns: 1fr 1fr 1fr; + grid-template-columns: 1fr 1fr; @include medium-is-tablet { - grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; + grid-template-columns: 1fr 1fr 1fr 1fr; } @include medium-is-phone { diff --git a/assets/img/jumbotrons/adi-goldstein-mDinBvq1Sfg-unsplash.jpg b/assets/img/jumbotrons/adi-goldstein-mDinBvq1Sfg-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b466dbc64b2e6b2e419823322e82030e1c97b715 Binary files /dev/null and b/assets/img/jumbotrons/adi-goldstein-mDinBvq1Sfg-unsplash.jpg differ diff --git a/assets/img/jumbotrons/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg b/assets/img/jumbotrons/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d28432a05ba6be68786ee9f4a41240a03f5059de Binary files /dev/null and b/assets/img/jumbotrons/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg differ diff --git a/assets/img/jumbotrons/background-cloud.jpg b/assets/img/jumbotrons/background-cloud.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1484745dd863b7d39ee1565e69aa099e0040e49e Binary files /dev/null and b/assets/img/jumbotrons/background-cloud.jpg differ diff --git a/assets/img/jumbotrons/desktop/adi-goldstein-mDinBvq1Sfg-unsplash.jpg b/assets/img/jumbotrons/desktop/adi-goldstein-mDinBvq1Sfg-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6ddacba2352ad7d0f6fbdaa2d8ec56e848cd5661 Binary files /dev/null and b/assets/img/jumbotrons/desktop/adi-goldstein-mDinBvq1Sfg-unsplash.jpg differ diff --git a/assets/img/jumbotrons/desktop/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg b/assets/img/jumbotrons/desktop/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4690fa8e908efe94f8b3620aaa427bd5aaaa9a96 Binary files /dev/null and b/assets/img/jumbotrons/desktop/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg differ diff --git a/assets/img/jumbotrons/desktop/background-cloud.jpg b/assets/img/jumbotrons/desktop/background-cloud.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9eca2d90e86a36fcea888f8e294650cf3fdb2289 Binary files /dev/null and b/assets/img/jumbotrons/desktop/background-cloud.jpg differ diff --git a/assets/img/jumbotrons/desktop/globe.jpeg b/assets/img/jumbotrons/desktop/globe.jpeg new file mode 120000 index 0000000000000000000000000000000000000000..72c68d4e2d5b38c1ffdf964001d8e75365176017 --- /dev/null +++ b/assets/img/jumbotrons/desktop/globe.jpeg @@ -0,0 +1 @@ +../globe.jpeg \ No newline at end of file diff --git a/assets/img/jumbotrons/desktop/markus-spiske-PsRUMc7vilg-unsplash.jpg b/assets/img/jumbotrons/desktop/markus-spiske-PsRUMc7vilg-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f00630658c792dd7867d7f7784cd35ed1e99329 Binary files /dev/null and b/assets/img/jumbotrons/desktop/markus-spiske-PsRUMc7vilg-unsplash.jpg differ diff --git a/assets/img/jumbotrons/desktop/matthew-waring-MJAoiige14E-unsplash.jpg b/assets/img/jumbotrons/desktop/matthew-waring-MJAoiige14E-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7542fbd0afaada80c2d33918328a3a9149440acd Binary files /dev/null and b/assets/img/jumbotrons/desktop/matthew-waring-MJAoiige14E-unsplash.jpg differ diff --git a/assets/img/jumbotrons/desktop/pexels-brett-sayles-2881232.jpg b/assets/img/jumbotrons/desktop/pexels-brett-sayles-2881232.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f9312c3e97cc1b8f10bceb80b416a26e5d8270be Binary files /dev/null and b/assets/img/jumbotrons/desktop/pexels-brett-sayles-2881232.jpg differ diff --git a/assets/img/jumbotrons/display_2k/adi-goldstein-mDinBvq1Sfg-unsplash.jpg b/assets/img/jumbotrons/display_2k/adi-goldstein-mDinBvq1Sfg-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8de18a16e753d23d43f72ad6e8717e3458d52803 Binary files /dev/null and b/assets/img/jumbotrons/display_2k/adi-goldstein-mDinBvq1Sfg-unsplash.jpg differ diff --git a/assets/img/jumbotrons/display_2k/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg b/assets/img/jumbotrons/display_2k/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b24ec580697a94eb117f2930d9ee1cdb716dd251 Binary files /dev/null and b/assets/img/jumbotrons/display_2k/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg differ diff --git a/assets/img/jumbotrons/display_2k/background-cloud.jpg b/assets/img/jumbotrons/display_2k/background-cloud.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06d0df53419c1ce7eddacd228df76d0da4368cc8 Binary files /dev/null and b/assets/img/jumbotrons/display_2k/background-cloud.jpg differ diff --git a/assets/img/jumbotrons/display_2k/globe.jpeg b/assets/img/jumbotrons/display_2k/globe.jpeg new file mode 120000 index 0000000000000000000000000000000000000000..72c68d4e2d5b38c1ffdf964001d8e75365176017 --- /dev/null +++ b/assets/img/jumbotrons/display_2k/globe.jpeg @@ -0,0 +1 @@ +../globe.jpeg \ No newline at end of file diff --git a/assets/img/jumbotrons/display_2k/markus-spiske-PsRUMc7vilg-unsplash.jpg b/assets/img/jumbotrons/display_2k/markus-spiske-PsRUMc7vilg-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..42b57bbfba9ce430be9ca036aa6981e8a27083b8 Binary files /dev/null and b/assets/img/jumbotrons/display_2k/markus-spiske-PsRUMc7vilg-unsplash.jpg differ diff --git a/assets/img/jumbotrons/display_2k/matthew-waring-MJAoiige14E-unsplash.jpg b/assets/img/jumbotrons/display_2k/matthew-waring-MJAoiige14E-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..31a0d269ec8ef8254a19e19bd8079936319df1a8 Binary files /dev/null and b/assets/img/jumbotrons/display_2k/matthew-waring-MJAoiige14E-unsplash.jpg differ diff --git a/assets/img/jumbotrons/display_2k/pexels-brett-sayles-2881232.jpg b/assets/img/jumbotrons/display_2k/pexels-brett-sayles-2881232.jpg new file mode 100644 index 0000000000000000000000000000000000000000..be2e3248479eb1fa3367bf737431dcf6df6fc337 Binary files /dev/null and b/assets/img/jumbotrons/display_2k/pexels-brett-sayles-2881232.jpg differ diff --git a/assets/img/jumbotrons/globe.jpeg b/assets/img/jumbotrons/globe.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..a28c88b0abcf29c5829943cba3a8b30df063e15c Binary files /dev/null and b/assets/img/jumbotrons/globe.jpeg differ diff --git a/assets/img/jumbotrons/markus-spiske-PsRUMc7vilg-unsplash.jpg b/assets/img/jumbotrons/markus-spiske-PsRUMc7vilg-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1ac525d0613777d62cfb30f670803818640a1420 Binary files /dev/null and b/assets/img/jumbotrons/markus-spiske-PsRUMc7vilg-unsplash.jpg differ diff --git a/assets/img/jumbotrons/matthew-waring-MJAoiige14E-unsplash.jpg b/assets/img/jumbotrons/matthew-waring-MJAoiige14E-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..172cb577258e2607018cf809b1f57f7eb5575d75 Binary files /dev/null and b/assets/img/jumbotrons/matthew-waring-MJAoiige14E-unsplash.jpg differ diff --git a/assets/img/jumbotrons/pexels-brett-sayles-2881232.jpg b/assets/img/jumbotrons/pexels-brett-sayles-2881232.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1214607bad9e18b4e3430b9847647cff393d2056 Binary files /dev/null and b/assets/img/jumbotrons/pexels-brett-sayles-2881232.jpg differ diff --git a/assets/img/jumbotrons/phone/adi-goldstein-mDinBvq1Sfg-unsplash.jpg b/assets/img/jumbotrons/phone/adi-goldstein-mDinBvq1Sfg-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bd8c039a413510fab83e391cfbe14404b77039ef Binary files /dev/null and b/assets/img/jumbotrons/phone/adi-goldstein-mDinBvq1Sfg-unsplash.jpg differ diff --git a/assets/img/jumbotrons/phone/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg b/assets/img/jumbotrons/phone/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e9b85377d13b3ca2c01eade8b248e4a7a60efffc Binary files /dev/null and b/assets/img/jumbotrons/phone/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg differ diff --git a/assets/img/jumbotrons/phone/background-cloud.jpg b/assets/img/jumbotrons/phone/background-cloud.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bfdb78ea1a0f067b30945abe4730ada1a355fa96 Binary files /dev/null and b/assets/img/jumbotrons/phone/background-cloud.jpg differ diff --git a/assets/img/jumbotrons/phone/globe.jpeg b/assets/img/jumbotrons/phone/globe.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..1fc74edb1b9fd3ab685cceb402a6f634afa546de Binary files /dev/null and b/assets/img/jumbotrons/phone/globe.jpeg differ diff --git a/assets/img/jumbotrons/phone/markus-spiske-PsRUMc7vilg-unsplash.jpg b/assets/img/jumbotrons/phone/markus-spiske-PsRUMc7vilg-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..995b5bd95bd4caa158909556965cfa769074559b Binary files /dev/null and b/assets/img/jumbotrons/phone/markus-spiske-PsRUMc7vilg-unsplash.jpg differ diff --git a/assets/img/jumbotrons/phone/matthew-waring-MJAoiige14E-unsplash.jpg b/assets/img/jumbotrons/phone/matthew-waring-MJAoiige14E-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..583c2bb25f83d7dcfc6c2f6b06432d47472b58f0 Binary files /dev/null and b/assets/img/jumbotrons/phone/matthew-waring-MJAoiige14E-unsplash.jpg differ diff --git a/assets/img/jumbotrons/phone/pexels-brett-sayles-2881232.jpg b/assets/img/jumbotrons/phone/pexels-brett-sayles-2881232.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af607d8e318ebba7268d830f167147e340a076fd Binary files /dev/null and b/assets/img/jumbotrons/phone/pexels-brett-sayles-2881232.jpg differ diff --git a/assets/img/jumbotrons/tablet/adi-goldstein-mDinBvq1Sfg-unsplash.jpg b/assets/img/jumbotrons/tablet/adi-goldstein-mDinBvq1Sfg-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2937b5d09508d23b053e927186e5981ab0f7e4b4 Binary files /dev/null and b/assets/img/jumbotrons/tablet/adi-goldstein-mDinBvq1Sfg-unsplash.jpg differ diff --git a/assets/img/jumbotrons/tablet/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg b/assets/img/jumbotrons/tablet/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0fe01268897d026650029659599097f3add39f84 Binary files /dev/null and b/assets/img/jumbotrons/tablet/adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg differ diff --git a/assets/img/jumbotrons/tablet/background-cloud.jpg b/assets/img/jumbotrons/tablet/background-cloud.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bde7fe30584610ffab2e97dbf0a6bfc5089cf75b Binary files /dev/null and b/assets/img/jumbotrons/tablet/background-cloud.jpg differ diff --git a/assets/img/jumbotrons/tablet/globe.jpeg b/assets/img/jumbotrons/tablet/globe.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..e3769cada40e3e17db537aa74a748f174a89eaae Binary files /dev/null and b/assets/img/jumbotrons/tablet/globe.jpeg differ diff --git a/assets/img/jumbotrons/tablet/markus-spiske-PsRUMc7vilg-unsplash.jpg b/assets/img/jumbotrons/tablet/markus-spiske-PsRUMc7vilg-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..081f3058d54724fc28153f2e3f4c628c69f48008 Binary files /dev/null and b/assets/img/jumbotrons/tablet/markus-spiske-PsRUMc7vilg-unsplash.jpg differ diff --git a/assets/img/jumbotrons/tablet/matthew-waring-MJAoiige14E-unsplash.jpg b/assets/img/jumbotrons/tablet/matthew-waring-MJAoiige14E-unsplash.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d9db340374f218b2c9fea8d7835c37881f7562b Binary files /dev/null and b/assets/img/jumbotrons/tablet/matthew-waring-MJAoiige14E-unsplash.jpg differ diff --git a/assets/img/jumbotrons/tablet/pexels-brett-sayles-2881232.jpg b/assets/img/jumbotrons/tablet/pexels-brett-sayles-2881232.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d3562023f989641ac9a5a47fd38ed8b59cdee0a8 Binary files /dev/null and b/assets/img/jumbotrons/tablet/pexels-brett-sayles-2881232.jpg differ diff --git a/assets/img/services/undraw_Bookshelves_re_lxoy.svg b/assets/img/services/undraw_Bookshelves_re_lxoy.svg new file mode 100644 index 0000000000000000000000000000000000000000..e4f8c1d01d27454e1284f9b69f743752349502b5 --- /dev/null +++ b/assets/img/services/undraw_Bookshelves_re_lxoy.svg @@ -0,0 +1 @@ +<svg id="a53c9c1f-c8ff-4f29-808e-e460db4e56d6" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="737.66564" height="594" viewBox="0 0 737.66564 594"><path d="M499.59339,603.57371a24.30012,24.30012,0,0,1,9.74324-30.08516c1.64736-1.00163.14149-3.59709-1.51416-2.59041A27.0077,27.0077,0,0,0,497.003,605.08787c.75686,1.76976,3.34195.24315,2.59041-1.51416Z" transform="translate(-231.16718 -153)" fill="#3f3d56"/><path d="M500.45155,607.60854c-4.04629-7.16841-3.0941-15.747-1.63872-23.4989,1.51929-8.09231,3.51088-16.30868,1.78772-24.539a22.527,22.527,0,0,0-5.353-10.73372c-1.31056-1.42342-3.42784.70229-2.12132,2.12132,5.0888,5.527,5.67878,13.5448,4.85343,20.66543-.9735,8.39864-3.73258,16.58266-3.39006,25.117a27.20192,27.20192,0,0,0,3.27155,12.38207,1.50112,1.50112,0,0,0,2.59041-1.51416Z" transform="translate(-231.16718 -153)" fill="#3f3d56"/><path d="M522.16718,630.5h-51a4.50508,4.50508,0,0,1-4.5-4.5V611.01953A14.53617,14.53617,0,0,1,481.187,596.5h7.48023a1.50164,1.50164,0,0,0,1.5-1.5v-7a2.50294,2.50294,0,0,1,2.5-2.5h8a2.50294,2.50294,0,0,1,2.5,2.5v7a1.50164,1.50164,0,0,0,1.5,1.5h7.48022a14.53618,14.53618,0,0,1,14.51978,14.51953V626A4.50508,4.50508,0,0,1,522.16718,630.5Z" transform="translate(-231.16718 -153)" fill="#ccc"/><path d="M497.45105,540.53959c1.07377,5.69871-.25563,10.73293-2.9693,11.24425s-5.784-3.69389-6.85778-9.3926,2.22864-15.17508,2.22864-15.17508S496.37727,534.84088,497.45105,540.53959Z" transform="translate(-231.16718 -153)" fill="#005aa0"/><path d="M518.0446,567.052c-3.40041,4.69739-7.97031,7.19273-10.20717,5.57349s-1.2936-6.73989,2.10681-11.43729,12.55268-8.81363,12.55268-8.81363S521.445,562.35458,518.0446,567.052Z" transform="translate(-231.16718 -153)" fill="#005aa0"/><path d="M405.59339,243.57371a24.30012,24.30012,0,0,1,9.74324-30.08516c1.64736-1.00163.14149-3.59709-1.51416-2.59041A27.0077,27.0077,0,0,0,403.003,245.08787c.75686,1.76976,3.34195.24315,2.59041-1.51416Z" transform="translate(-231.16718 -153)" fill="#3f3d56"/><path d="M406.45155,247.60854c-4.04629-7.16841-3.0941-15.747-1.63872-23.4989,1.51929-8.09231,3.51088-16.30868,1.78772-24.539a22.527,22.527,0,0,0-5.353-10.73372c-1.31056-1.42342-3.42784.70229-2.12132,2.12132,5.0888,5.527,5.67878,13.5448,4.85343,20.66543-.9735,8.39864-3.73258,16.58266-3.39006,25.117a27.20192,27.20192,0,0,0,3.27155,12.38207,1.50112,1.50112,0,0,0,2.59041-1.51416Z" transform="translate(-231.16718 -153)" fill="#3f3d56"/><path d="M428.16718,270.5h-51a4.505,4.505,0,0,1-4.5-4.5V251.01953A14.53623,14.53623,0,0,1,387.18683,236.5h7.48035a1.50164,1.50164,0,0,0,1.5-1.5v-7a2.50286,2.50286,0,0,1,2.5-2.5h8a2.50286,2.50286,0,0,1,2.5,2.5v7a1.50164,1.50164,0,0,0,1.5,1.5h7.48035a14.53623,14.53623,0,0,1,14.51965,14.51953V266A4.505,4.505,0,0,1,428.16718,270.5Z" transform="translate(-231.16718 -153)" fill="#ccc"/><path d="M403.45105,180.53959c1.07377,5.69871-.25563,10.73293-2.9693,11.24425s-5.784-3.69389-6.85778-9.3926,2.22864-15.17508,2.22864-15.17508S402.37727,174.84088,403.45105,180.53959Z" transform="translate(-231.16718 -153)" fill="#005aa0"/><path d="M424.0446,207.052c-3.40041,4.69739-7.97031,7.19273-10.20717,5.57349s-1.2936-6.73989,2.10681-11.43729,12.55268-8.81363,12.55268-8.81363S427.445,202.35458,424.0446,207.052Z" transform="translate(-231.16718 -153)" fill="#005aa0"/><rect x="32" y="272" width="41" height="15" fill="#005aa0"/><rect x="32" y="321" width="41" height="15" fill="#005aa0"/><path d="M554.16718,746h-306a17.01909,17.01909,0,0,1-17-17V170a17.01909,17.01909,0,0,1,17-17h306a17.01917,17.01917,0,0,1,17,17V729A17.01917,17.01917,0,0,1,554.16718,746Zm-306-591a15.017,15.017,0,0,0-15,15V729a15.017,15.017,0,0,0,15,15h306a15.017,15.017,0,0,0,15-15V170a15.017,15.017,0,0,0-15-15Z" transform="translate(-231.16718 -153)" fill="#3f3d56"/><rect x="1" y="115.45264" width="338" height="2" fill="#3f3d56"/><rect x="1" y="235.48438" width="338" height="2" fill="#3f3d56"/><rect x="1" y="355.51563" width="338" height="2" fill="#3f3d56"/><rect x="1" y="475.54736" width="338" height="2" fill="#3f3d56"/><path d="M301.16718,511h-34a5.0058,5.0058,0,0,1-5-5V409a5.0058,5.0058,0,0,1,5-5h34a5.0058,5.0058,0,0,1,5,5v97A5.0058,5.0058,0,0,1,301.16718,511Zm-34-105a3.00335,3.00335,0,0,0-3,3v97a3.00335,3.00335,0,0,0,3,3h34a3.00336,3.00336,0,0,0,3-3V409a3.00336,3.00336,0,0,0-3-3Z" transform="translate(-231.16718 -153)" fill="#3f3d56"/><rect x="95" y="272" width="41" height="15" fill="#005aa0"/><rect x="95" y="321" width="41" height="15" fill="#005aa0"/><path d="M364.16718,511h-34a5.0058,5.0058,0,0,1-5-5V409a5.0058,5.0058,0,0,1,5-5h34a5.0058,5.0058,0,0,1,5,5v97A5.0058,5.0058,0,0,1,364.16718,511Zm-34-105a3.00335,3.00335,0,0,0-3,3v97a3.00335,3.00335,0,0,0,3,3h34a3.00336,3.00336,0,0,0,3-3V409a3.00336,3.00336,0,0,0-3-3Z" transform="translate(-231.16718 -153)" fill="#3f3d56"/><rect x="195" y="151" width="41" height="15" fill="#005aa0"/><rect x="195" y="200" width="41" height="15" fill="#005aa0"/><path d="M464.16718,390h-34a5.0058,5.0058,0,0,1-5-5V288a5.0058,5.0058,0,0,1,5-5h34a5.00573,5.00573,0,0,1,5,5v97A5.00573,5.00573,0,0,1,464.16718,390Zm-34-105a3.00335,3.00335,0,0,0-3,3v97a3.00335,3.00335,0,0,0,3,3h34a3.00328,3.00328,0,0,0,3-3V288a3.00328,3.00328,0,0,0-3-3Z" transform="translate(-231.16718 -153)" fill="#3f3d56"/><rect x="258" y="151" width="41" height="15" fill="#005aa0"/><rect x="258" y="200" width="41" height="15" fill="#005aa0"/><path d="M527.16718,390h-34a5.00573,5.00573,0,0,1-5-5V288a5.00573,5.00573,0,0,1,5-5h34a5.00573,5.00573,0,0,1,5,5v97A5.00573,5.00573,0,0,1,527.16718,390Zm-34-105a3.00328,3.00328,0,0,0-3,3v97a3.00328,3.00328,0,0,0,3,3h34a3.00328,3.00328,0,0,0,3-3V288a3.00328,3.00328,0,0,0-3-3Z" transform="translate(-231.16718 -153)" fill="#3f3d56"/><rect x="380.40526" y="422.77357" width="41" height="15" transform="translate(-356.89697 15.51816) rotate(-20.59468)" fill="#005aa0"/><rect x="397.64125" y="468.64209" width="41" height="15" transform="translate(-371.92993 24.51236) rotate(-20.59468)" fill="#005aa0"/><path d="M411.3111,509.88281a5.009,5.009,0,0,1-4.67786-3.24414L372.513,415.83789a5.00607,5.00607,0,0,1,2.92151-6.439l31.82739-11.95948a4.99925,4.99925,0,0,1,6.43921,2.92188l34.12024,90.80078a5.00606,5.00606,0,0,1-2.92151,6.439h-.00012l-31.82727,11.95948A4.99586,4.99586,0,0,1,411.3111,509.88281Zm-2.2887-110.76465a3.00572,3.00572,0,0,0-1.057.19336L376.13825,411.271a3.00388,3.00388,0,0,0-1.75305,3.86377l34.12024,90.80078a2.99969,2.99969,0,0,0,3.86352,1.75293L444.19611,495.729a3.00388,3.00388,0,0,0,1.75305-3.86377l-34.12024-90.80078a3.00565,3.00565,0,0,0-2.80652-1.94629Z" transform="translate(-231.16718 -153)" fill="#3f3d56"/><rect x="242.40526" y="303.77357" width="41" height="15" transform="translate(-323.85743 -40.62902) rotate(-20.59468)" fill="#005aa0"/><rect x="259.64125" y="349.64209" width="41" height="15" transform="translate(-338.89039 -31.63483) rotate(-20.59468)" fill="#005aa0"/><path d="M273.3111,390.88281a5.009,5.009,0,0,1-4.67786-3.24414L234.513,296.83789a5.00607,5.00607,0,0,1,2.92151-6.439l31.82739-11.95948a4.99925,4.99925,0,0,1,6.43921,2.92188l34.12024,90.80078a5.00606,5.00606,0,0,1-2.92151,6.439h-.00012l-31.82727,11.95948A4.99586,4.99586,0,0,1,273.3111,390.88281Zm-2.2887-110.76465a3.00572,3.00572,0,0,0-1.057.19336L238.13825,292.271a3.00388,3.00388,0,0,0-1.75305,3.86377l34.12024,90.80078a2.99969,2.99969,0,0,0,3.86352,1.75293L306.19611,376.729a3.00388,3.00388,0,0,0,1.75305-3.86377l-34.12024-90.80078a3.00565,3.00565,0,0,0-2.80652-1.94629Z" transform="translate(-231.16718 -153)" fill="#3f3d56"/><circle cx="627" cy="219" r="31" fill="#2f2e41"/><path d="M720.44751,513.47105a10.74273,10.74273,0,0,0,14.42391-7.956l85.23707-53.77848-15.51422-17.467-78.94343,58.39088a10.80091,10.80091,0,0,0-5.20333,20.81064Z" transform="translate(-231.16718 -153)" fill="#ffb8b8"/><path d="M802.31342,466.03418a4.50412,4.50412,0,0,1-3.79321-2.06348l-9.87061-15.33886a4.5006,4.5006,0,0,1,1.14819-6.082l33.03-23.873a14.78876,14.78876,0,1,1,16.62964,24.44531l-34.72925,22.20508A4.46628,4.46628,0,0,1,802.31342,466.03418Z" transform="translate(-231.16718 -153)" fill="#2f2e41"/><polygon points="585.894 580.85 573.635 580.849 567.802 533.561 585.897 533.562 585.894 580.85" fill="#ffb8b8"/><path d="M564.8774,577.34625h23.64387a0,0,0,0,1,0,0v14.88687a0,0,0,0,1,0,0H549.99054a0,0,0,0,1,0,0v0A14.88686,14.88686,0,0,1,564.8774,577.34625Z" fill="#2f2e41"/><polygon points="643.128 571.684 631.324 574.998 612.926 531.047 630.347 526.156 643.128 571.684" fill="#ffb8b8"/><path d="M854.96246,725.53151h23.64387a0,0,0,0,1,0,0v14.88687a0,0,0,0,1,0,0H840.0756a0,0,0,0,1,0,0v0A14.88686,14.88686,0,0,1,854.96246,725.53151Z" transform="translate(-397.28783 106.53262) rotate(-15.68037)" fill="#2f2e41"/><path d="M907.32709,652.11328l-47.596-56.1709,28.88135-35.04394a4.49962,4.49962,0,0,1,6.96118.02051l43.70166,53.63378Z" transform="translate(-231.16718 -153)" fill="#005aa0"/><path d="M861.6514,596.36047h0a15.94248,15.94248,0,0,1,2.58625-3.45319l27.56723-27.94751a6.13368,6.13368,0,0,1,4.0758-1.83c3.14992-.14873,8.31574.16954,9.75565,3.62537l-37.218,30.45111Z" transform="translate(-231.16718 -153)" fill="#f2f2f2"/><path d="M908.98114,663.999a11.4306,11.4306,0,0,1-5.95776-1.88672l-.13159-.13574-43.59155-66.66894,7.23339-.69922,38.76661-30.23828a4.50045,4.50045,0,0,1,6.52221,1.06738l42.37622,64.1377a4.51307,4.51307,0,0,1-1.238,6.21093l-41.00611,27.65039A7.94866,7.94866,0,0,1,908.98114,663.999Z" transform="translate(-231.16718 -153)" fill="#005aa0"/><path d="M893.56391,618.39355a2.49929,2.49929,0,0,1-2.0774-1.10253l-5.00781-7.43848a2.50383,2.50383,0,0,1,.67774-3.4707l25.69116-17.2959a2.505,2.505,0,0,1,3.47021.67773l5.00757,7.43848a2.50383,2.50383,0,0,1-.67773,3.4707l-25.69116,17.2959A2.49073,2.49073,0,0,1,893.56391,618.39355Z" transform="translate(-231.16718 -153)" fill="#3f3d56"/><path d="M797.02948,726.69824a5.47917,5.47917,0,0,1-5.43872-5.0039c-2.18188-24.78516-13.12671-149.7002-14.32812-174.92676-1.33448-28.0293,21.99267-72.3711,22.22851-72.81543l.16138-.30469,11.52979,1.44043v1.34082l10.97436,1.291,21.23828,2.05566,6.08032,74.31836,2.68848,50.40234L877.423,707.43945a4.476,4.476,0,0,1-3.18628,5.41407l-21.9834,5.99511a4.51906,4.51906,0,0,1-5.51221-3.10937l-20.69751-72.707a1.5,1.5,0,0,0-2.94189.457l2.189,70.89551a5.34339,5.34339,0,0,1-1.61718,3.91211c-5.03907,4.73242-18.35352,7.25878-25.84131,8.34375A5.5788,5.5788,0,0,1,797.02948,726.69824Z" transform="translate(-231.16718 -153)" fill="#2f2e41"/><path d="M863.08564,414.39249c-3.48829-3.63648-26.47315,1.36093-31.57618,6.71838l-34.93575,57.10624,57.77809,10.74941L867.11673,416.408Z" transform="translate(-231.16718 -153)" fill="#005aa0"/><path d="M847.94159,559.47949a11.248,11.248,0,0,1-3.65747-.60937c-3.35669-1.15137-7.4707-2.35645-12.22754-3.5791-20.83374-5.35743-28.18945-22.50977-21.8623-50.98047l.15991-.72266A210.7341,210.7341,0,0,1,843.311,428.3252l2.45-3.51954a26.398,26.398,0,0,1,27.04492-10.75586c9.37427,1.9336,14.40747,4.73536,14.96021,8.32813,1.08471,7.0498-19.854,92.26953-28.90674,128.582a11.23544,11.23544,0,0,1-10.91773,8.51953Z" transform="translate(-231.16718 -153)" fill="#2f2e41"/><path d="M776.17108,548.53906a5.283,5.283,0,0,1-1.60522-.25l-6.75269-2.16015a5.26875,5.26875,0,0,1-3.24047-7.082L800.404,454.94336a78.69258,78.69258,0,0,1,34.12354-37.82715h.00024a1.84145,1.84145,0,0,1,1.46143-.13672,1.6571,1.6571,0,0,1,1.00488.8916c4.21411,9.27051-18.72241,53.14356-37.15234,88.39551-9.43726,18.05078-17.5874,33.64063-18.51514,38.08594a5.26334,5.26334,0,0,1-5.15552,4.18652Z" transform="translate(-231.16718 -153)" fill="#2f2e41"/><path d="M887.026,567.70345a10.74266,10.74266,0,0,0,.92142-16.44683l-.28478-100.78395-23.04006,3.86569,7.53584,97.90185A10.8009,10.8009,0,0,0,887.026,567.70345Z" transform="translate(-231.16718 -153)" fill="#ffb8b8"/><path d="M868.2663,475.47656a4.49932,4.49932,0,0,1-4.48853-4.20312l-2.68017-40.666A14.80742,14.80742,0,0,1,874.882,414.877a14.78957,14.78957,0,0,1,15.761,14.626l.364,41.21973a4.50852,4.50852,0,0,1-4.44678,4.54l-18.23925.21386Z" transform="translate(-231.16718 -153)" fill="#2f2e41"/><circle cx="620.61417" cy="227.01575" r="24.56103" fill="#ffb8b8"/><path d="M872.2028,397.202c1.83183-5.82965,3.51355-12.70329-.11157-17.62253-2.61207-3.54455-7.30192-4.91657-11.70057-5.113s-8.80988.54917-13.19907.20024-9.028-2.08127-11.25764-5.878c-2.89119-4.92317-.44247-11.70412,4.20553-15.01964s10.78836-3.77847,16.44523-3.0062a35.47655,35.47655,0,0,1,19.29228,8.62983c5.2582,4.85294,8.68542,11.84811,8.53273,19.00188s-4.1649,14.27774-10.5589,17.48967" transform="translate(-231.16718 -153)" fill="#2f2e41"/><path d="M866.07881,343.53408c-5.87973-1.81115-8.59177-9.58474-5.96235-15.14691s9.35073-8.4748,15.45411-7.70005,11.48144,4.69043,15.191,9.59865,5.9468,10.759,7.81178,16.62189,3.416,11.85261,5.96329,17.45286a54.16842,54.16842,0,0,0,44.45006,30.94259c4.129.29914,8.41394.08482,12.17689-1.64105s6.9186-5.20542,7.34024-9.32376c2.14172,14.629-6.36878,30.17609-19.84618,36.25519s-30.76454,2.16827-40.313-9.11989c-9.33112-11.03123-10.77627-26.60551-10.55183-41.05222.06155-3.96158.20762-7.998-.88686-11.80587s-3.68466-7.4286-7.45762-8.638c-3.04412-.97577-6.34107-.27238-9.462.41942s-6.43481,1.35765-9.4566.31479-5.45494-4.4792-4.23735-7.43492" transform="translate(-231.16718 -153)" fill="#2f2e41"/><path d="M963.24986,747h-264a1,1,0,1,1,0-2h264a1,1,0,0,1,0,2Z" transform="translate(-231.16718 -153)" fill="#ccc"/></svg> \ No newline at end of file diff --git a/assets/img/services/undraw_Container_ship_ok1c.svg b/assets/img/services/undraw_Container_ship_ok1c.svg new file mode 100644 index 0000000000000000000000000000000000000000..88358ef76ae34f388193dc0026fb2c3391bcc311 --- /dev/null +++ b/assets/img/services/undraw_Container_ship_ok1c.svg @@ -0,0 +1 @@ +<svg id="bb6491d8-974c-4727-a107-afc356bed175" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="932.37538" height="646.21974" viewBox="0 0 932.37538 646.21974"><defs><linearGradient id="b10df757-55e5-4d99-9006-dc7249c3a778" x1="401.19868" y1="238.81186" x2="401.19868" y2="191.49163" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="gray" stop-opacity="0.25"/><stop offset="0.53514" stop-color="gray" stop-opacity="0.12"/><stop offset="1" stop-color="gray" stop-opacity="0.1"/></linearGradient><linearGradient id="b7455b34-8431-4804-9964-905371e7992b" x1="548.19868" y1="175.41336" x2="548.19868" y2="144.89013" xlink:href="#b10df757-55e5-4d99-9006-dc7249c3a778"/><linearGradient id="a8bee007-5617-4059-9c68-754326cfe534" x1="819.19868" y1="155.41336" x2="819.19868" y2="124.89013" xlink:href="#b10df757-55e5-4d99-9006-dc7249c3a778"/><linearGradient id="b5786f2b-186c-4311-b51e-a01aadf48633" x1="138.37538" y1="143.68325" x2="138.37538" y2="9.68325" xlink:href="#b10df757-55e5-4d99-9006-dc7249c3a778"/></defs><title>Container ship</title><rect x="172.18769" y="163.10987" width="11" height="147" fill="#005aa0" stroke="#005aa0" stroke-miterlimit="10"/><rect x="407.42024" y="265.80813" width="109.26778" height="66.19873" fill="#f55f44"/><rect x="516.68802" y="265.80813" width="109.26778" height="66.19873" fill="#4d8af0"/><rect x="625.95581" y="265.80813" width="109.26778" height="66.19873" fill="#3ad29f"/><rect x="406.62266" y="332.00686" width="109.26778" height="66.19873" fill="#4d8af0"/><rect x="298.15245" y="332.00686" width="109.26778" height="66.19873" fill="#f55f44"/><rect x="516.68802" y="332.00686" width="109.26778" height="66.19873" fill="#3ad29f"/><rect x="625.95581" y="332.00686" width="109.26778" height="66.19873" fill="#fdd835"/><g opacity="0.1"><rect x="426.96083" y="265.40934" width="14.35635" height="66.19873"/><rect x="454.87595" y="265.40934" width="14.35635" height="66.19873"/><rect x="482.79108" y="265.40934" width="14.35635" height="66.19873"/></g><g opacity="0.1"><rect x="536.22861" y="265.40934" width="14.35635" height="66.19873"/><rect x="564.14374" y="265.40934" width="14.35635" height="66.19873"/><rect x="592.05887" y="265.40934" width="14.35635" height="66.19873"/></g><g opacity="0.1"><rect x="645.49639" y="265.40934" width="14.35635" height="66.19873"/><rect x="673.41152" y="265.40934" width="14.35635" height="66.19873"/><rect x="701.32665" y="265.40934" width="14.35635" height="66.19873"/></g><g opacity="0.1"><rect x="426.96083" y="331.60807" width="14.35635" height="66.19873"/><rect x="454.87595" y="331.60807" width="14.35635" height="66.19873"/><rect x="482.79108" y="331.60807" width="14.35635" height="66.19873"/></g><g opacity="0.1"><rect x="317.69304" y="331.60807" width="14.35635" height="66.19873"/><rect x="345.60817" y="331.60807" width="14.35635" height="66.19873"/><rect x="373.5233" y="331.60807" width="14.35635" height="66.19873"/></g><g opacity="0.1"><rect x="536.22861" y="331.60807" width="14.35635" height="66.19873"/><rect x="564.14374" y="331.60807" width="14.35635" height="66.19873"/><rect x="592.05887" y="331.60807" width="14.35635" height="66.19873"/></g><g opacity="0.1"><rect x="645.49639" y="331.60807" width="14.35635" height="66.19873"/><rect x="673.41152" y="331.60807" width="14.35635" height="66.19873"/><rect x="701.32665" y="331.60807" width="14.35635" height="66.19873"/></g><rect x="21.68769" y="475.60987" width="846" height="26" fill="#005aa0" stroke="#005aa0" stroke-miterlimit="10"/><path d="M927.5,497.5h-498a12.0353,12.0353,0,0,1-12-12V412.176L223.5,390.5v223h716v-128A12.03523,12.03523,0,0,1,927.5,497.5Z" transform="translate(-136.81231 -124.89013)" fill="#005aa0" stroke="#005aa0" stroke-miterlimit="10"/><rect x="86.68769" y="289.60987" width="73" height="42" fill="#fff"/><circle cx="177.68769" cy="162.60987" r="21" fill="#005aa0" stroke="#005aa0" stroke-miterlimit="10"/><path d="M232.42919,621.629c7.43621-20.076,30.81892-30.532,52.21146-29.69484s41.31818,10.502,60.49411,20.0218,39.03219,19.27834,60.41542,20.32683c47.519,2.33,87.50948-38.12583,134.86347-42.71717,56.29339-5.4581,106.2505,40.38484,162.77635,42.27305,9.94081.33207,20.07934-.76708,29.23352-4.65693,7.96792-3.38576,14.9115-8.7506,22.437-13.03062,37.97935-21.60035,85.48272-13.44466,127.50129-1.46776s85.63709,27.32039,128.34948,18.11942" transform="translate(-136.81231 -124.89013)" fill="#4d8af0"/><path d="M136.81231,660.34986c7.43621-20.076,30.81892-30.532,52.21146-29.69484s41.31818,10.502,60.49411,20.02179,39.03219,19.27835,60.41543,20.32683c47.519,2.33,87.50947-38.12583,134.86346-42.71717,56.2934-5.45809,106.2505,40.38484,162.77636,42.27306,9.9408.33207,20.07933-.76709,29.23352-4.65693,7.96791-3.38577,14.91149-8.75061,22.437-13.03063,37.97935-21.60035,85.48272-13.44466,127.50129-1.46776S872.382,678.7246,915.09437,669.52363" transform="translate(-136.81231 -124.89013)" fill="#4d8af0"/><path d="M238.751,710.13385c7.43621-20.076,30.81891-30.532,52.21146-29.69484s41.31818,10.502,60.4941,20.0218,39.0322,19.27834,60.41543,20.32683c47.519,2.33,87.50948-38.12583,134.86346-42.71717,56.2934-5.4581,106.25051,40.38483,162.77636,42.27305,9.94081.33207,20.07934-.76708,29.23352-4.65693,7.96792-3.38577,14.9115-8.7506,22.43695-13.03063,37.97936-21.60034,85.48272-13.44466,127.50129-1.46775s85.6371,27.32039,128.34949,18.11941" transform="translate(-136.81231 -124.89013)" fill="#4d8af0"/><path d="M290.90563,759.12762c7.43621-20.076,30.81891-30.532,52.21146-29.69484s41.31818,10.502,60.4941,20.0218,39.0322,19.27834,60.41543,20.32683c47.519,2.33,87.50948-38.12583,134.86346-42.71717,56.2934-5.45809,106.25051,40.38484,162.77636,42.27305,9.94081.33207,20.07934-.76708,29.23352-4.65692,7.96792-3.38577,14.9115-8.75061,22.437-13.03063,37.97935-21.60035,85.48271-13.44466,127.50128-1.46776s85.6371,27.32039,128.34949,18.11942" transform="translate(-136.81231 -124.89013)" fill="#4d8af0"/><g opacity="0.5"><path d="M399.7606,238.81186l-6.89476-1.22015a44.53063,44.53063,0,0,1,.83228-5.06968c1.17046-14.78118-9.07915-30.33524-23.48846-34.25788l1.84394-6.77252c13.12918,3.57419,23.25482,14.56125,27.09635,27.35684a48.51881,48.51881,0,0,1,31.64965-22.94808l1.38809,6.88105c-15.1045,3.04638-27.94292,15.88994-31.53368,30.85849A35.46861,35.46861,0,0,1,399.7606,238.81186Z" transform="translate(-136.81231 -124.89013)" fill="url(#b10df757-55e5-4d99-9006-dc7249c3a778)"/></g><path d="M399.96943,235.37611l-5.89356-1.043a38.06323,38.06323,0,0,1,.71143-4.3335c1.00049-12.63476-7.76074-25.93017-20.07764-29.2832l1.57617-5.78906c11.22266,3.05517,19.87793,12.44677,23.16163,23.38427a41.47322,41.47322,0,0,1,27.05371-19.61572l1.18652,5.88184c-12.91113,2.604-23.88525,13.58252-26.95459,26.37744A30.31677,30.31677,0,0,1,399.96943,235.37611Z" transform="translate(-136.81231 -124.89013)" fill="#706a6a"/><g opacity="0.5"><path d="M547.27107,175.41336l-4.44737-.787a28.726,28.726,0,0,1,.53685-3.27013c.755-9.53438-5.85637-19.5673-15.15089-22.09755l1.18941-4.36851c8.46878,2.30548,15.00018,9.39253,17.47811,17.64613a31.29632,31.29632,0,0,1,20.41514-14.80232l.89537,4.43852c-9.74294,1.965-18.02418,10.24958-20.34034,19.90482A22.87807,22.87807,0,0,1,547.27107,175.41336Z" transform="translate(-136.81231 -124.89013)" fill="url(#b7455b34-8431-4804-9964-905371e7992b)"/></g><g opacity="0.5"><path d="M818.27107,155.41336l-4.44737-.787a28.726,28.726,0,0,1,.53685-3.27013c.755-9.53438-5.85637-19.5673-15.15089-22.09755l1.18941-4.36851c8.46878,2.30548,15.00018,9.39253,17.47811,17.64613a31.29632,31.29632,0,0,1,20.41514-14.80232l.89537,4.43852c-9.74294,1.965-18.02418,10.24958-20.34034,19.90482A22.87807,22.87807,0,0,1,818.27107,155.41336Z" transform="translate(-136.81231 -124.89013)" fill="url(#a8bee007-5617-4059-9c68-754326cfe534)"/></g><path d="M547.59591,170.06886l-2.88993-.51143a18.66413,18.66413,0,0,1,.34885-2.125c.49059-6.19552-3.80552-12.715-9.84517-14.35916l.77289-2.83869A16.85575,16.85575,0,0,1,547.34,161.70122a20.33658,20.33658,0,0,1,13.26591-9.61866l.58182,2.88418a17.71236,17.71236,0,0,0-13.21731,12.93431A14.86648,14.86648,0,0,1,547.59591,170.06886Z" transform="translate(-136.81231 -124.89013)" fill="#706a6a"/><path d="M818.59591,150.06886l-2.88993-.51143a18.66413,18.66413,0,0,1,.34885-2.125c.49059-6.19552-3.80552-12.715-9.84517-14.35916l.77289-2.83869A16.85575,16.85575,0,0,1,818.34,141.70122a20.33658,20.33658,0,0,1,13.26591-9.61866l.58182,2.88418a17.71236,17.71236,0,0,0-13.21731,12.93431A14.86648,14.86648,0,0,1,818.59591,150.06886Z" transform="translate(-136.81231 -124.89013)" fill="#706a6a"/><g opacity="0.5"><circle cx="138.37538" cy="76.68325" r="67" fill="url(#b5786f2b-186c-4311-b51e-a01aadf48633)"/></g><circle cx="138.37538" cy="76.68325" r="62" fill="#fdd835"/></svg> \ No newline at end of file diff --git a/assets/img/services/undraw_check_boxes_m3d0.svg b/assets/img/services/undraw_check_boxes_m3d0.svg new file mode 100644 index 0000000000000000000000000000000000000000..6a9e543d3775a6a946b2dae5ebe0f8a9ae606ad7 --- /dev/null +++ b/assets/img/services/undraw_check_boxes_m3d0.svg @@ -0,0 +1 @@ +<svg id="a43d4114-cd98-41f6-b9a0-b0700c71b140" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="722" height="628.5076" viewBox="0 0 722 628.5076"><ellipse cx="325" cy="618.5076" rx="199" ry="10" fill="#e6e6e6"/><circle cx="98.7538" cy="98.7538" r="98.7538" fill="#e6e6e6"/><circle cx="98.7538" cy="98.7538" r="82.29483" fill="#005aa0"/><circle cx="361" cy="98.7538" r="98.7538" fill="#e6e6e6"/><circle cx="361" cy="98.7538" r="82.29483" fill="#fff"/><circle cx="623.2462" cy="98.7538" r="98.7538" fill="#e6e6e6"/><circle cx="623.2462" cy="98.7538" r="82.29483" fill="#fff"/><polygon points="91.121 132.566 67.146 101.741 81.088 90.896 92.44 105.492 130.789 65.011 143.612 77.16 91.121 132.566" fill="#fff"/><path d="M512.74375,254.63706c-6.48534-15.6637-7.53825-30.44721,1.60416-43.5788h0v0a32.97462,32.97462,0,0,1,35.17524-31.68663l5.96094.40277a32.84642,32.84642,0,0,1,28.29082,20.38647c11.11549,27.56779,11.46537,64.20685,8.6913,103.47825H510.94C515.78212,285.27325,518.268,268.03621,512.74375,254.63706Z" transform="translate(-239 -135.7462)" fill="#2f2e41"/><path d="M407.46181,302.69572l-21.54424-9.67784a16.4179,16.4179,0,0,1-7.14015-23.76472l0,0a16.4179,16.4179,0,0,1,26.59776-1.57931l9.9532,12.22112,46.40234,41.15415,30.84512-20.584,13.9796,23.70151-50.03519,30.22389Z" transform="translate(-239 -135.7462)" fill="#9f616a"/><path d="M504.30871,331.13847l-17.00916-32.54663,66.23159-29.50091.57344,6.22557a33.008,33.008,0,0,1-13.61467,29.83813Z" transform="translate(-239 -135.7462)" fill="#005aa0"/><path d="M590.13685,267.14641l-67.55026,55.90367-3.8822-5.43508,18.63455-33.38691,8.54084-3.8822c2.04631-8.66972-3.1777-20.29608-10.09372-32.61047l32.61047-4.65864C569.97055,253.6534,577.1384,261.71207,590.13685,267.14641Z" transform="translate(-239 -135.7462)" fill="#9f616a"/><polygon points="432.663 517.291 421.405 533.984 331.726 483.127 344.149 421.789 432.663 517.291" fill="#2f2e41"/><path d="M553.256,732.62207l-18.24634-8.15262L530.351,510.94851,512.88109,394.87076l67.93848-12.81126,13.97592,30.28116C629.14072,459.44606,579.07306,603.77941,553.256,732.62207Z" transform="translate(-239 -135.7462)" fill="#2f2e41"/><path d="M554.727,729.72092l3.74388,8.14845a10.82449,10.82449,0,0,1-8.30515,15.23492l-49.49793,7.07113a10.1726,10.1726,0,0,1-11.21982-7.27573h0a10.17259,10.17259,0,0,1,4.6703-11.59011l41.58323-20.81312Z" transform="translate(-239 -135.7462)" fill="#2f2e41"/><path d="M669.34554,649.88259l8.94332-.65645a10.82449,10.82449,0,0,1,11.36645,13.11038l-10.69313,48.84366a10.1726,10.1726,0,0,1-10.74129,7.96525h0a10.17261,10.17261,0,0,1-9.22368-8.43008l-4.94943-46.23693Z" transform="translate(-239 -135.7462)" fill="#2f2e41"/><circle cx="308.43266" cy="91.80178" r="31.05759" fill="#9f616a"/><path d="M579.26669,386.71814l-67.55026,13.97592-1.55288-45.03351c-9.78142-10.35567,13.03153-51.83053,20.96387-71.43246l10.09372-3.10576-17.08167,31.05759,59.78586-48.91571,11.6466,3.10576,3.10576,56.68011Z" transform="translate(-239 -135.7462)" fill="#005aa0"/><path d="M583.92533,413.89353l-14.64879,18.52641a16.4179,16.4179,0,0,1-24.789,1.11683l0,0a16.4179,16.4179,0,0,1,4.9677-26.17741l14.28273-6.66527,51.245-34.93979-12.423-34.93979,26.399-7.7644,17.08167,55.90366Z" transform="translate(-239 -135.7462)" fill="#9f616a"/><path d="M586.642,297.42757h-56.2686c2.11426-10.63575,7.78226-20.28466,23.28356-27.20291,11.303-21.60269,16.13191-41.19716,0-54.28965-18.42666-4.245-25.56315-11.95345-23.28356-22.55038l32.985-5.43508C590.48494,212.10816,590.79463,253.34681,586.642,297.42757Z" transform="translate(-239 -135.7462)" fill="#2f2e41"/><path d="M635.17036,326.93228l-35.71623,8.54084-12.423-71.43247,6.177.96516A33.00806,33.00806,0,0,1,618.815,285.4987Z" transform="translate(-239 -135.7462)" fill="#005aa0"/></svg> \ No newline at end of file diff --git a/assets/img/services/undraw_conference_call_b0w6 copy.svg b/assets/img/services/undraw_conference_call_b0w6 copy.svg new file mode 100644 index 0000000000000000000000000000000000000000..f92203454fa4573f34bbd839a193a6ce0dcbaa01 --- /dev/null +++ b/assets/img/services/undraw_conference_call_b0w6 copy.svg @@ -0,0 +1 @@ +<svg id="a1564cff-f165-45d5-b330-5a55512dec45" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="817.21528" height="523.62072" viewBox="0 0 817.21528 523.62072"><rect x="0.34879" y="0.46308" width="816.86649" height="523.15763" fill="#e6e6e6"/><rect x="23.7069" y="66.0801" width="770.15027" height="426.59057" fill="#fff"/><rect width="816.86649" height="34.70348" fill="#005aa0"/><circle cx="25.78884" cy="17.74225" r="6.43202" fill="#fff"/><circle cx="50.20318" cy="17.74225" r="6.43202" fill="#fff"/><circle cx="74.61753" cy="17.74225" r="6.43202" fill="#fff"/><rect x="118.46528" y="101.16701" width="150.63" height="163.41998" fill="#e6e6e6"/><rect x="333.46528" y="101.16701" width="150.63" height="163.41998" fill="#e6e6e6"/><rect x="548.46528" y="101.16701" width="150.63" height="163.41998" fill="#e6e6e6"/><rect x="118.46528" y="294.16701" width="150.63" height="163.41998" fill="#e6e6e6"/><rect x="333.46528" y="294.16701" width="150.63" height="163.41998" fill="#e6e6e6"/><rect x="548.46528" y="294.16701" width="150.63" height="163.41998" fill="#e6e6e6"/><circle cx="176.97482" cy="174.51978" r="25.46232" fill="#ffb9b9"/><path d="M358.42091,382.204s3.18279,15.11827,3.18279,16.70964,15.11825,8.75269,15.11825,8.75269l13.52686-2.38709,4.77419-14.32258s-7.957-11.93546-7.957-16.70965Z" transform="translate(-191.39236 -188.18964)" fill="#ffb9b9"/><path d="M346.28627,342.19527s8.08418-17.51576,23.5789-13.47366,24.25258,10.10523,24.92628,16.16835-.33685,15.1579-.33685,15.1579-1.68418-12.46314-12.46314-9.76844-27.621.67369-27.621.67369l-2.69472,24.25259s-3.03158-4.37894-6.4-1.68421S335.50737,347.58472,346.28627,342.19527Z" transform="translate(-191.39236 -188.18964)" fill="#2f2e41"/><path d="M449.12766,446.65664l-6.36005-28.65c-3.19-9.55-11.13995-17.5-11.13995-17.5l-39.24-13.8h-.01a16.47935,16.47935,0,0,1-11.67005,15.4c-11.94,3.97-20.16-9.41-20.16-9.41l-33.17,25.31s-10.34,8.76-9.54,25.47l-1.1,9.3h135.45Z" transform="translate(-191.39236 -188.18964)" fill="#005aa0"/><ellipse cx="391.39963" cy="175.98401" rx="34.56023" ry="36.687" fill="#2f2e41"/><circle cx="422.06386" cy="213.32033" r="18.18116" fill="#2f2e41"/><polygon points="409.402 188.971 419.142 214.294 394.468 224.684 392.301 219.773 384.727 202.607 409.402 188.971" fill="#9f616a"/><circle cx="389.92219" cy="183.77594" r="21.75246" fill="#9f616a"/><path d="M563.53471,369.57978c13.67218-9.12328,17.75933-11.30419,33.43067-7.78014l.93991-22.86273-40.49715,8.49536Z" transform="translate(-191.39236 -188.18964)" fill="#2f2e41"/><path d="M651.43765,421.30666l-.6.07a.37833.37833,0,0,0-.05-.06006c-2.38-2.37994-13.74-6.71-22.21-9.71h-.01c-5.38-1.91-9.59-3.28-9.59-3.28l-10.24-10.53c-2.58,2.9-8.03,5.14-13.21,6.72a103.73786,103.73786,0,0,1-12.08,2.88h-.01l-2.12,6.77s-24.03,18.19-25.97,20.13h-.01v.02a1.057,1.057,0,0,0-.18.76v.05a88.17172,88.17172,0,0,0-1.86,17.65h104.64v-6.14C657.93765,438.19661,651.43765,421.30666,651.43765,421.30666Z" transform="translate(-191.39236 -188.18964)" fill="#575a89"/><path d="M843.85764,452.77663h-51.74l-2.85-28.11-.17-1.71-.35-3.39-1.43-14.17-1.79,15.22-3.78,32.16h-9.4l.35-10.01.35-10.15.15-4.09,1.93-55.64a39.72794,39.72794,0,0,1,7.93-24.49,30.94226,30.94226,0,0,1,24.99-12.09,31.83983,31.83983,0,0,1,25.42,12.53,40.26067,40.26067,0,0,1,8.31,24.86l.89,33.68006Z" transform="translate(-191.39236 -188.18964)" fill="#2f2e41"/><circle cx="616.6557" cy="181.84964" r="22.75803" fill="#fbbebe"/><path d="M796.669,386.295s6.50229,21.94524,0,28.44753-8.12787,8.94066-8.12787,8.94066l18.69409,25.19639,32.51147-39.82655s-22.758-6.5023-17.06852-24.3836Z" transform="translate(-191.39236 -188.18964)" fill="#fbbebe"/><polygon points="675.485 264.587 656.285 264.587 655.965 261.297 655.675 258.257 664.515 257.147 675.175 255.817 675.295 259.227 675.485 264.587" fill="#fbbebe"/><path d="M868.19425,447.254s-3.25116-20.31964-5.68952-28.44751-4.87671-8.12787-4.87671-8.12787h-.00048l.00012-.00195c-2.87-2.87-9.77-3.38-14.96-3.3-3.64.04-6.44.36-6.44.36l-28.99,30.58-14.6-19.41v-.01a21.2487,21.2487,0,0,0-3.89.67,25.75678,25.75678,0,0,0-3.22,1.05,44.18213,44.18213,0,0,0-12.33,7.91h-.01c-2.1,1.89-3.34,3.28-3.34,3.28a95.18694,95.18694,0,0,0-7.22,20.97h92.9l.21-4.18v-.008Z" transform="translate(-191.39236 -188.18964)" fill="#005aa0"/><path d="M788.94755,366.38175c14.69852-7.92443,20.73643-7.58887,39.01376,0L832.838,354.5003a8.44772,8.44772,0,0,0-8.43821-8.43822H791.69631a8.44773,8.44773,0,0,0-8.43822,8.43822Z" transform="translate(-191.39236 -188.18964)" fill="#2f2e41"/><path d="M383.18073,521.91086a5.995,5.995,0,0,0-3.477.77673,9.06994,9.06994,0,0,0-2.35192,3.10434,37.1345,37.1345,0,0,1-10.11607,11.42691c-3.00585,2.202-6.82735,4.94767-6.31308,9.00764a12.17511,12.17511,0,0,0,1.46516,3.8024c2.77293,5.59759,10.33985,9.92334,9.59556,16.31066,2.755-4.61216-.93-6.89275,1.825-11.50486,1.312-2.19642,3.59117-4.67576,5.572-3.29641.66326.46185,1.09876,1.2902,1.78933,1.69545,1.64783.96695,3.40088-.88165,4.85952-2.191,5.0298-4.51524,12.18265-3.33235,18.44175-1.92551,2.9549.66416,6.20051,1.53553,7.9473,4.3597,2.29665,3.71319-2.182,7.72347-3.3136,11.9216a2.28755,2.28755,0,0,0,2.455,2.8469c1.87807-.18527,4.10284-.33711,4.214-1.16125,2.36291.0841,5.25816-.18348,6.27058-2.64391a10.34621,10.34621,0,0,0,.48533-3.00883c.3716-4.133,2.12572-7.90347,3.28777-11.83709s1.66733-8.54356-.29372-12.03113a13.921,13.921,0,0,0-2.56926-3.12263C411.82571,523.67091,397.194,521.89487,383.18073,521.91086Z" transform="translate(-191.39236 -188.18964)" fill="#2f2e41"/><path d="M374.40362,574.40713s2.42027,20.169-6.45407,21.7825,8.06759,29.04333,8.06759,29.04333l40.338,4.84057L406.674,597.80315s-6.45406-2.42028-2.42027-18.55547S374.40362,574.40713,374.40362,574.40713Z" transform="translate(-191.39236 -188.18964)" fill="#9f616a"/><circle cx="201.16334" cy="375.32623" r="24.20279" fill="#9f616a"/><path d="M350.89762,645.77663c4.28-16.83,10.19-39.5,10.19-39.5s2.3.47,5.92,1a140.1124,140.1124,0,0,0,15.96,1.45c6.84.19,14.04-.26,19.61-2.19a18.36251,18.36251,0,0,0,5.79-3.09,11.16158,11.16158,0,0,0,1.94-2.00994c9.68-12.91,13.71,36.3,13.71,36.3l.75,8.04Z" transform="translate(-191.39236 -188.18964)" fill="#005aa0"/><path d="M428.22763,697.77663q-.48,0-.96.03l.46-.86005C427.88767,697.21663,428.04764,697.49666,428.22763,697.77663Z" transform="translate(-191.39236 -188.18964)" fill="#ffb8b8"/><path d="M384.35976,528.24346a5.49315,5.49315,0,0,0-2.83045.549,6.59728,6.59728,0,0,0-1.91456,2.19412,27.87411,27.87411,0,0,1-8.2349,8.07646c-2.4469,1.55639-5.55775,3.497-5.1391,6.36654a7.961,7.961,0,0,0,1.19269,2.68751,21.13962,21.13962,0,0,1,2.56871,13.17621l6.7281-9.77948c1.068-1.55241,2.92338-3.3048,4.53588-2.32988.53991.32644.89444.91191,1.4566,1.19833,1.3414.68344,2.76844-.62312,3.95586-1.54862,4.09447-3.19133,9.91718-2.35527,15.01235-1.36093,2.40541.46943,5.04747,1.08531,6.46942,3.08142,2.363,3.31714-.10441,8.11016,1.2747,11.94227a3.52062,3.52062,0,0,0,1.45671-2.32479c1.92349.05946,4.28037-.12966,5.10451-1.8687a6.43931,6.43931,0,0,0,.3951-2.12662c.30249-2.92115,1.7304-5.58614,2.67637-8.36638s1.35727-6.03853-.2391-8.50352a10.28883,10.28883,0,0,0-2.09147-2.20706C407.678,529.48745,395.76717,528.23216,384.35976,528.24346Z" transform="translate(-191.39236 -188.18964)" fill="#2f2e41"/><path d="M382.06766,607.07662c-5.52-6.31-8.8-15.51-8.95-15.92v-.01s-8.8-5.04-11.22-.2-25.01,16.94-27.43,16.94a.32075.32075,0,0,1-.06.02c-.96.32-12.98,4.69-16.07,20.96a121.76607,121.76607,0,0,0-1.34,16.91h65.79c.68-7.13,1.19-13.8,1.39-19.56.29-8.03.01-14.27-1.21-17.49A5.0946,5.0946,0,0,0,382.06766,607.07662Z" transform="translate(-191.39236 -188.18964)" fill="#2f2e41"/><path d="M438.63767,611.61666c-.04-.19-.07-.35-.1-.5a3.72037,3.72037,0,0,0-.54-1.2.07747.07747,0,0,1-.01-.03c-4.66-7.22-34.63-17.16-34.63-17.16l-1.12,3.87s.14,3.82.34,9.94c.2,5.73.44,13.47.67,21.97.16,5.55.3,11.43006.43,17.27h44.83A261.80046,261.80046,0,0,0,438.63767,611.61666Z" transform="translate(-191.39236 -188.18964)" fill="#2f2e41"/><path d="M858.07761,645.77663l3.43-16.76,3.19-1.35.02.01c.29.11,3.76,1.58,3.76,7.15,0,1.12-.17,5.15-.45,10.95Z" transform="translate(-191.39236 -188.18964)" fill="#575a89"/><circle cx="630.65786" cy="371.19086" r="27.85562" fill="#ffb8b8"/><polygon points="648.068 387.44 645.746 435.026 609.766 414.135 614.408 387.44 648.068 387.44" fill="#ffb8b8"/><polygon points="658.515 437.347 656.155 457.587 637.265 457.587 616.765 418.197 610.985 407.107 608.215 405.297 611.425 404.567 613.955 406.397 642.265 426.907 646.805 413.277 646.925 412.927 648.065 409.497 658.515 437.347" fill="#005aa0"/><path d="M805.22079,532.1052s3.48194-17.40975,23.213-13.92781l-2.32131,1.16065s18.57042-2.3213,16.24911,8.12456c0,0,15.08845,9.28521,11.6065,19.73106a118.097,118.097,0,0,0-4.64261,18.5704l-3.48194-3.48194s-3.48195-23.213-24.37367-20.89171c-15.66878,1.741-22.05237,9.14012-23.68453,14.47186a47.09447,47.09447,0,0,1-2.86747,7.29458l-1.30362.2859S786.65037,537.90845,805.22079,532.1052Z" transform="translate(-191.39236 -188.18964)" fill="#2f2e41"/><path d="M864.71762,627.67666l-.02-.01-14.79-13.74v-9.28l-11.42-9-.17,5.47-1.18,37.19-18.99-26.12-12.8-17.6-2.3-3.15.56-2.95-7.09,8.03-25.66,19.25-2.2,1.65a69.98687,69.98687,0,0,0-6.96,8.12c-.69,1.03-3.83,9.23-7.92,20.24h114.25c.28-5.8.45-9.83.45-10.95C868.47763,629.25661,865.00766,627.78664,864.71762,627.67666Z" transform="translate(-191.39236 -188.18964)" fill="#2f2e41"/><path d="M597.88035,528.78277h0c-18.87588,0-34.17774,16.98175-34.17774,37.92977v26.61472H571.888l4.73894-9.861-1.18476,9.861h52.613l4.30813-8.96453-1.077,8.96453H637.21V572.43C637.21,548.3243,619.6015,528.78277,597.88035,528.78277Z" transform="translate(-191.39236 -188.18964)" fill="#2f2e41"/><path d="M570.29764,645.77663h-22.23l-.21-18.13c-.01-.19-.01-.37-.01-.56l4.45-5.01.08-.09,16.99,10.76Z" transform="translate(-191.39236 -188.18964)" fill="#d0cde1"/><circle cx="403.46402" cy="377.08755" r="24.33111" fill="#fbbebe"/><path d="M580.90658,579.87585s7.13713,36.98327,3.893,40.87623,34.388-7.13713,34.388-7.13713-12.32774-25.30435-5.83948-39.57858Z" transform="translate(-191.39236 -188.18964)" fill="#fbbebe"/><path d="M646.91764,604.88662h-.01a5.586,5.586,0,0,0-2.79-2.72c-4.77-2.01-8.88-3.55-12.26-4.72a25.9264,25.9264,0,0,0-18.34.57c-.56995.23-1.12994.48-1.68.76,0,0-23.79,4.53-26.62,3.96-.21-.04-.43-.07-.64-.09a11.22637,11.22637,0,0,0-1.29-.11,28.50287,28.50287,0,0,0-15.8,3.92c-7.81,4.53-19.39,12.56-19.63,20.38l-.22.25.22,18.69h104.42c.21-17.91.33-31.37.33-32.28C652.60764,610.66665,646.91764,604.88662,646.91764,604.88662Z" transform="translate(-191.39236 -188.18964)" fill="#005aa0"/><path d="M607.59648,539.23118a17.92461,17.92461,0,0,0-14.14307-7.21731h-.671c-12.93754,0-23.42543,11.707-23.42543,26.1483v.00005h4.335l.70008-5.32888,1.02648,5.32888h25.71083l2.15407-4.50834-.53856,4.50834H607.803q3.54044,17.58255-10.17392,35.165h8.61626l4.30813-9.01668-1.077,9.01668h16.42473l3.23108-20.73842C629.13227,557.05767,620.10816,543.8876,607.59648,539.23118Z" transform="translate(-191.39236 -188.18964)" fill="#2f2e41"/><circle cx="420.92645" cy="340.42412" r="12.80115" fill="#2f2e41"/></svg> \ No newline at end of file diff --git a/assets/img/services/undraw_developer_activity_bv83.svg b/assets/img/services/undraw_developer_activity_bv83.svg new file mode 100644 index 0000000000000000000000000000000000000000..357cfa6889b820cf12573161848326b3da6f6f97 --- /dev/null +++ b/assets/img/services/undraw_developer_activity_bv83.svg @@ -0,0 +1 @@ +<svg id="aa7bae02-e79e-4d6b-a496-aba15f39787c" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1144" height="617.32" viewBox="0 0 1144 617.32"><title>developer activity</title><path d="M1172,537.57a181.92,181.92,0,0,1-6.85,49.6,180.06,180.06,0,0,1-19.27,44.28c0,50.1-33.82,93.4-82.91,114a167.3,167.3,0,0,1-64.73,12.8H245.17c-40.25,0-77.55-10.86-108.14-29.36A185.76,185.76,0,0,1,112.2,711c-34-29.22-55.08-69.6-55.08-114.2A180.5,180.5,0,0,1,28,498.08c0-73.36,43.39-136.44,105.55-164.29a174.52,174.52,0,0,1,25.51-9.12q4.63-1.26,9.36-2.26a175.39,175.39,0,0,1,25.51-3.5q4.65-.29,9.35-.33H205c3.46,0,6.89.12,10.3.32l1.12-1.9q2.06-3.44,4.22-6.81,3.9-6.14,8.18-12.1,4.48-6.29,9.35-12.38l.83-1q2.76-3.44,5.64-6.8,9-10.49,19-20.35c72.11-70.68,185.08-116.18,312.08-116.18,98.82,0,189.15,27.55,258.34,73.07A174.18,174.18,0,0,1,920,191.86c97.74,0,177,80.37,177,179.51a184.9,184.9,0,0,1-1,18.78A180,180,0,0,1,1172,537.57Z" transform="translate(-28 -141.34)" fill="#005aa0" opacity="0.1"/><path d="M263.66,257.52v20.35h-19Q253.59,267.39,263.66,257.52Z" transform="translate(-28 -141.34)" fill="#005aa0" opacity="0.2"/><rect x="245.02" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="279.88" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="314.75" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="349.61" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="384.48" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="419.35" y="111.02" width="25.51" height="25.51" fill="#005aa0"/><rect x="454.21" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="489.08" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="523.94" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="558.81" y="111.02" width="25.51" height="25.51" fill="#005aa0"/><rect x="593.68" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="628.54" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="663.41" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="698.28" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="733.14" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="768.01" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="802.87" y="111.02" width="25.51" height="25.51" fill="#005aa0"/><rect x="837.74" y="111.02" width="25.51" height="25.51" fill="#005aa0"/><rect x="872.61" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="907.47" y="111.02" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="942.34" y="111.02" width="25.51" height="25.51" fill="#005aa0"/><rect x="977.2" y="111.02" width="25.51" height="25.51" fill="#005aa0"/><path d="M228.8,298.08v12.1h-8.18Q224.52,304,228.8,298.08Z" transform="translate(-28 -141.34)" fill="#005aa0"/><rect x="210.15" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="245.02" y="143.33" width="25.51" height="25.51" fill="#005aa0"/><rect x="279.88" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="314.75" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="349.61" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="384.48" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="419.35" y="143.33" width="25.51" height="25.51" fill="#005aa0"/><rect x="454.21" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="489.08" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="523.94" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="558.81" y="143.33" width="25.51" height="25.51" fill="#005aa0"/><rect x="593.68" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="628.54" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="663.41" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="698.28" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="733.14" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="768.01" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="802.87" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="837.74" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="872.61" y="143.33" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="907.47" y="143.33" width="25.51" height="25.51" fill="#005aa0"/><rect x="942.34" y="143.33" width="25.51" height="25.51" fill="#005aa0"/><rect x="977.2" y="143.33" width="25.51" height="25.51" fill="#005aa0"/><path d="M159.06,324.67V342.5H133.55v-8.71A174.52,174.52,0,0,1,159.06,324.67Z" transform="translate(-28 -141.34)" fill="#005aa0" opacity="0.2"/><polygon points="165.93 177.57 165.93 201.16 140.42 201.16 140.42 181.07 165.93 177.57" fill="#005aa0" opacity="0.2"/><rect x="175.28" y="175.65" width="25.51" height="25.51" fill="#005aa0"/><rect x="210.15" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="245.02" y="175.65" width="25.51" height="25.51" fill="#005aa0"/><rect x="279.88" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="314.75" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="349.61" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="384.48" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="419.35" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="454.21" y="175.65" width="25.51" height="25.51" fill="#005aa0"/><rect x="489.08" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="523.94" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="558.81" y="175.65" width="25.51" height="25.51" fill="#005aa0"/><rect x="593.68" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="628.54" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="663.41" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="698.28" y="175.65" width="25.51" height="25.51" fill="#005aa0"/><rect x="733.14" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="768.01" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="802.87" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="837.74" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="872.61" y="175.65" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="907.47" y="175.65" width="25.51" height="25.51" fill="#005aa0"/><rect x="942.34" y="175.65" width="25.51" height="25.51" fill="#005aa0"/><rect x="977.2" y="175.65" width="25.51" height="25.51" fill="#005aa0"/><rect x="105.55" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="140.42" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="175.28" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="210.15" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="245.02" y="207.96" width="25.51" height="25.51" fill="#005aa0"/><rect x="279.88" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="314.75" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="349.61" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="384.48" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="419.35" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="454.21" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="489.08" y="207.96" width="25.51" height="25.51" fill="#005aa0"/><rect x="523.94" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="558.81" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="593.68" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="628.54" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="663.41" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="698.28" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="733.14" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="768.01" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="802.87" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="837.74" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="872.61" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="907.47" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="942.34" y="207.96" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="977.2" y="207.96" width="25.51" height="25.51" fill="#005aa0"/><rect x="105.55" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="140.42" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="175.28" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="210.15" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="245.02" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="279.88" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="314.75" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="349.61" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="384.48" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="419.35" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="454.21" y="240.28" width="25.51" height="25.51" fill="#005aa0"/><rect x="489.08" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="523.94" y="240.28" width="25.51" height="25.51" fill="#005aa0"/><rect x="558.81" y="240.28" width="25.51" height="25.51" fill="#005aa0"/><rect x="593.68" y="240.28" width="25.51" height="25.51" fill="#005aa0"/><rect x="628.54" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="663.41" y="240.28" width="25.51" height="25.51" fill="#005aa0"/><rect x="698.28" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="733.14" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="768.01" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="802.87" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="837.74" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="872.61" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="907.47" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="942.34" y="240.28" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="977.2" y="240.28" width="25.51" height="25.51" fill="#005aa0"/><rect x="105.55" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="140.42" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="175.28" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="210.15" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="245.02" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="279.88" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="314.75" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="349.61" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="384.48" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="419.35" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="454.21" y="272.59" width="25.51" height="25.51" fill="#005aa0"/><rect x="489.08" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="523.94" y="272.59" width="25.51" height="25.51" fill="#005aa0"/><rect x="558.81" y="272.59" width="25.51" height="25.51" fill="#005aa0"/><rect x="593.68" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="628.54" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="663.41" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="698.28" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="733.14" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="768.01" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="802.87" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="837.74" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="872.61" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="907.47" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="942.34" y="272.59" width="25.51" height="25.51" fill="#005aa0" opacity="0.4"/><rect x="977.2" y="272.59" width="25.51" height="25.51" fill="#005aa0"/><rect x="105.55" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="140.42" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="175.28" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="210.15" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="245.02" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.7"/><rect x="279.88" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="314.75" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="349.61" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="384.48" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="419.35" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="454.21" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="489.08" y="304.91" width="25.51" height="25.51" fill="#005aa0"/><rect x="523.94" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="558.81" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="593.68" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="628.54" y="304.91" width="25.51" height="25.51" fill="#005aa0"/><rect x="663.41" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="698.28" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="733.14" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="768.01" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="802.87" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="837.74" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="872.61" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="907.47" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="942.34" y="304.91" width="25.51" height="25.51" fill="#005aa0" opacity="0.2"/><rect x="977.2" y="304.91" width="25.51" height="25.51" fill="#005aa0"/><circle cx="734.52" cy="363.89" r="34.87" fill="#767d9f"/><path d="M760.71,460.87q5.22,22.78,8.86,45.9c.73,4.58,1.38,9.41-.28,13.74-1.39,3.61-4.22,6.43-6.44,9.59s-3.9,7.21-2.55,10.83,5.29,5.6,9.05,6.62c10.76,2.9,22.23.79,32.94-2.35a53.29,53.29,0,0,0,13.81-5.72c4.54-2.88,8.26-6.88,11.68-11,15.61-18.93,25.83-41.65,35.45-64.23a39.12,39.12,0,0,1-33.11-13.34c-3.94-4.63-6.83-11.08-4.61-16.74-6.51,3.57-14.24,3.81-21.25,6.25a75.49,75.49,0,0,0-12.5,6.15q-7.18,4.15-14.28,8.46C772.07,458.29,767,461.19,760.71,460.87Z" transform="translate(-28 -141.34)" fill="#ae6e79"/><path d="M833.64,487.05c-6.11,11.89-14.06,23.32-25.41,30.4s-26.63,9-38,2c-5.6-3.42-9.84-8.62-14.73-13s-11-8.13-17.57-7.56c-7.24.63-12.91,6.28-17.76,11.69-7.36,8.22-14.47,16.79-19.68,26.52-10,18.7-12.37,40.56-11.93,61.76s3.51,42.29,3.58,63.49c.1,26.08-4.32,51.95-8.79,77.64,41.1-5.06,82.25,6,123.44,10.19,26.36,2.71,52.92,2.65,79.42,2.58,4.66,0,9.62-.12,13.5-2.7a18.2,18.2,0,0,0,5.59-6.64c3.66-6.75,5.13-14.45,6.15-22.06,2.59-19.22,2.67-38.68,2.74-58.08.18-47,.35-94.17-5.62-140.8-1.47-11.47-3.35-23-7.75-33.73s-11.58-20.6-21.62-26.35c-6.45-3.7-21.4-10.14-29-6.41C841.67,460.15,837.73,479.09,833.64,487.05Z" transform="translate(-28 -141.34)" fill="#767d9f"/><path d="M836.68,619.77c-1.55-29-7.86-59.95,5.57-85.69,3.3-6.32-8.54-14.21-4.88-20.33a92.08,92.08,0,0,0,10.06-23.93c.76-2.89,1.37-5.95.65-8.85-1.33-5.29-6.56-8.44-11-11.66-4.9-3.56-7.42-14.41-9-20.28s12.57,1.2,18.26-.89c7.9-2.89,17.94-1.07,25.82,1.86,4.4,1.62,9.18,1.76,13.87,1.88,9.11.24,18.25.47,27.29-.65,4.06-.51,8.13-1.28,12.21-1.05,10.41.59,19.46,7.71,25.62,16.13s10.08,18.23,15.13,27.35c4.21,7.6,9.23,14.78,12.82,22.69,3.18,7,5.19,14.52,7.18,22l5.13,19.19a25.58,25.58,0,0,1,1.26,8.51c-.26,3.07-1.62,5.93-3,8.66A164.12,164.12,0,0,1,971,603.2c-10.79,13.23-23.89,25.16-30.3,41-2.5,6.17-3.89,12.73-5.16,19.27a707.94,707.94,0,0,0-10.9,79.15,174.2,174.2,0,0,0-36.52-12.21,177.61,177.61,0,0,0-19-3c-5.59-.58-12.8.52-18.12-1-8.9-2.53-9.88-17.58-11.23-25.46-2.16-12.55-2.59-25.32-2.67-38C837,648.53,837.45,634.14,836.68,619.77Z" transform="translate(-28 -141.34)" fill="#4c4981"/><path d="M641.23,565.54c4.21,24,8.85,48.07,18,70.62-.23.22-.46.42-.69.62-.81.69-1.65,1.34-2.53,2-2.05,1.44-4.3,2.66-6,4.54a8,8,0,0,0-1.5,2.45,5.48,5.48,0,0,0,0,4.47c-4.77,2.11-10.31,1.46-15.66,1.26-4.61-.17-9.08,0-12.78,2.53-5.14,3.54-6.69,10.34-7.52,16.52q-.46,3.38-.79,6.77-.32,3.15-.52,6.32a188.61,188.61,0,0,0-.19,21q.08,1.92.21,3.84c-16.34-.39-31.23-8.91-45.32-17.19-3.22-1.89-6.54-3.88-8.63-7A15.8,15.8,0,0,1,555,674c0-.51.09-1,.16-1.52a41.58,41.58,0,0,1,2.29-8.68,107.2,107.2,0,0,1,19.19-32.65c3.58-4.18,7.61-8.27,9.28-13.52.73-2.29,1-4.72,1.74-7,3.32-9.88,15.3-14.55,19.4-24.14,1-2.29,1.46-4.8,2.7-7a17.63,17.63,0,0,1,4.25-4.75c.73-.61,1.49-1.2,2.24-1.79q10.54-8.26,20.31-17.45,1.82-1.71,3.6-3.46A59.48,59.48,0,0,0,641.23,565.54Z" transform="translate(-28 -141.34)" fill="#4c4981"/><path d="M742,494.56c-1.44,1.52-3,2.95-4.53,4.37l-.41.37-1.62,1.5a39,39,0,0,0-7.55,8.79l-.17.28c-5.1,9.13-3.21,20.37-1.79,30.74a261.55,261.55,0,0,1,2.37,39c-.26,18-2.38,35.88-2.42,53.86,0,4.08.09,8.15.27,12.23.29,6.63.79,13.25,1.39,19.87.65,7.26,1.43,14.51,2.16,21.76.58,5.61,1.13,11.21,1.59,16.81.23,2.9.45,5.79.63,8.69.21,3.4.38,6.81.48,10.21h0c.07,2.16.11,4.31.11,6.47,0,1.23,0,2.45,0,3.67q0,3.51-.19,7-.2,4.49-.61,9c-.31,3.27-.86,6.84-3.16,9.14-.14.14-.29.27-.44.4l-3.24-.4a332.72,332.72,0,0,0-67.3-1.2c.49-3.38.94-6.75,1.38-10.14.2-1.6.4-3.21.59-4.82q.33-2.76.63-5.52c.23-2,.44-4,.64-6q.78-7.73,1.37-15.47.87-11.29,1.32-22.62.22-5.41.34-10.83.17-6.72.16-13.45,0-6.54-.11-13.1c0-1.44-.06-2.88-.18-4.31a27.35,27.35,0,0,0-.53-3.83,49.87,49.87,0,0,0-3-8.48c-.22-.52-.43-1-.64-1.55-.12-.27-.23-.55-.34-.82,5.76-5.13,9.86-12,13.8-18.76,6.39-10.89,12.93-22.26,14-34.84s-5.18-26.71-17.2-30.55c-3.27-1-6.73-1.28-10.1-1.87-3.18-.56-9.81-1.83-13.49-4.11q-3,3.08-6,6.05a22.15,22.15,0,0,1,2.17-8.71l1.42.07a2.71,2.71,0,0,1-.16-1c0-1.07.74-2.28,2.32-3.62,4.71-4,12.12-4.89,15.09-10.3,1.24-2.25,1.45-4.93,2.45-7.29,2.87-6.73,11.11-9.21,16.07-14.59s6.2-13,10.21-19a28.62,28.62,0,0,1,12-10c.4-.19.81-.38,1.22-.55,8.3-3.55,18.16-4.36,26.76-4.34,3.34,0,12,.1,16.24,1.79a5.32,5.32,0,0,1,1.85,1.13C752.37,480.61,745.34,491,742,494.56Z" transform="translate(-28 -141.34)" fill="#4c4981"/><path d="M642.72,542.69a60.88,60.88,0,0,1,46.74,4.87c7.2,4,13.66,9.58,17.62,16.78,5.95,10.8,5.69,23.82,5.27,36.15-.21,6.17-.48,12.56-3.2,18.1C706,625,700.06,629.4,694,633a42.24,42.24,0,0,1-12.32,5.33c-6.72,1.46-13.7.22-20.47-1-7.36-1.36-15.26-3-20.37-8.48-3-3.18-4.64-7.31-6.26-11.35q-3.49-8.75-7-17.48c-4.05-10.11-5.42-18.52-.07-28.37,2.43-4.49,5.4-8.69,7.8-13.21C636.51,556.14,640.81,543.28,642.72,542.69Z" transform="translate(-28 -141.34)" fill="#4c4981"/><path d="M1063,715.56v29.9a167.3,167.3,0,0,1-64.73,12.8H728.58c-.14.14-.29.27-.44.4l-3.24-.4H245.17c-40.25,0-77.55-10.86-108.14-29.36V683.25l230.72-26.63.18,0L502.29,668l34.77,3,18.06,1.53,37.38,3.17,19.23,1.63,28,2.38,3.94.33,20.18,1.71L691.23,684l38.5,3.26,64.18,5.45,45.15,3.83,74.14,6.29,14.1,1.19,1.52.13,1.32.11,18.62,1.58,20.44,1.74,2.37.2Z" transform="translate(-28 -141.34)" fill="#504f60"/><polygon points="764 573.12 474.86 523.77 463.65 580.46 596.19 596.33 637 601.44 749.26 579.33 764 573.12" fill="#9c9ca1"/><path d="M642.33,739.94l144.86-27.23a5,5,0,0,1,5.94,4.93h0a5,5,0,0,1-4.09,4.93L647.57,749.06Z" transform="translate(-28 -141.34)" fill="#9c9ca1"/><path d="M705.17,654.31c4.51-.42,9.08-1.13,13.14-3.13,5-2.49,8.89-6.78,13.52-9.94,10.18-7,23.8-7.94,35.47-3.92s21.41,12.63,28.23,22.91c4.53,6.85,7.93,15.59,4.73,23.15a30.51,30.51,0,0,1-4.12,6.44l-8.34,10.9a29,29,0,0,1-5.66,6.09c-3.12,2.27-7,3.2-10.82,3.76-10.15,1.48-20.48.64-30.71,1.32-17.57,1.17-34.73,6.83-52.34,6.64-10.12-.11-20.11-2.15-30-4.19l-43.77-9c-7.62-1.56-16.23-3.84-19.82-10.75-1.61-3.11-1.91-6.71-2.1-10.21-.52-9.64,0-20.36,6.68-27.31,6.28-6.52,16.21-8.58,23.71-13.4,9.18-5.91,12.21-4,21.89.44A120,120,0,0,0,705.17,654.31Z" transform="translate(-28 -141.34)" fill="#ae6e79"/><path d="M705.17,654.31c4.51-.42,9.08-1.13,13.14-3.13,5-2.49,8.89-6.78,13.52-9.94,10.18-7,23.8-7.94,35.47-3.92s21.41,12.63,28.23,22.91c4.53,6.85,7.93,15.59,4.73,23.15a30.51,30.51,0,0,1-4.12,6.44l-8.34,10.9a29,29,0,0,1-5.66,6.09c-3.12,2.27-7,3.2-10.82,3.76-10.15,1.48-20.48.64-30.71,1.32-17.57,1.17-34.73,6.83-52.34,6.64-10.12-.11-20.11-2.15-30-4.19l-43.77-9c-7.62-1.56-16.23-3.84-19.82-10.75-1.61-3.11-1.91-6.71-2.1-10.21-.52-9.64,0-20.36,6.68-27.31,6.28-6.52,16.21-8.58,23.71-13.4,9.18-5.91,12.21-4,21.89.44A120,120,0,0,0,705.17,654.31Z" transform="translate(-28 -141.34)" opacity="0.05"/><path d="M880.94,640.6c-12.28,4.75-24.63,9.52-37.49,12.35-21.56,4.75-44.12,4-65.51,9.43-11.3,2.88-22.53,7.52-34.14,6.58-5.19-.42-10.2-2-15.25-3.2-28.37-7-60.62-4.73-83.66,13.27-7.88,6.15-14.33,13.82-20.18,22a14.7,14.7,0,0,0,5.91,21.88A86.62,86.62,0,0,0,659,730.48c13.13,1.16,26.32-.7,39.38-2.56,19.38-2.75,38.77-5.51,58.1-8.6,6.94-1.11,13.88-2.26,20.86-3.14,50.23-6.35,101.37,1.37,151.73-3.93,5.09-.54,10.27-1.24,14.9-3.41,11.72-5.5,17.52-20,15.1-32.74s-11.76-23.33-23-29.83c-9.42-5.47-19.58-7.68-30.07-10C896.26,634,890.32,637,880.94,640.6Z" transform="translate(-28 -141.34)" fill="#ae6e79"/><path d="M988.67,564.44c5.54,7.26,6.72,17,6.12,26.09s-2.76,18.08-3.08,27.21c-.44,12.52,2.58,25,2.07,37.48-.36,8.73-2.43,17.29-4.88,25.67-2.89,9.89-7.07,20.52-16.2,25.27-12.12,6.31-37.54,2.76-50.29,7.7,1.16-7.23,12.28-17.7,13.44-24.93.8-5,1.61-10.14.75-15.15-1.1-6.39-4.85-12.06-9.3-16.78-7.08-7.51-16.32-13.16-26.47-15s-35-.33-43.12,6.08c-1-6.62,17.6-13,24.14-14.43,3.26-.73,7-.32,9.61-2.39,5-3.92,1.37-11.73,1.61-18,.19-5,3.11-9.58,3.7-14.58,1-8-4.22-16.15-2.17-24,.76-2.9,2.45-5.45,3.62-8.21,3.56-8.45,2-18.09.1-27.07-1.18-5.64-2.33-12,.81-16.81,2.91-4.49,11.17,11.5,16.46,10.76,17.47-2.45,33.28-15.4,47.39-4.8,7.19,5.4,8.13,11,11,18.71C976.77,554.6,984,558.36,988.67,564.44Z" transform="translate(-28 -141.34)" opacity="0.1"/><path d="M991.67,564.44c5.54,7.26,6.72,17,6.12,26.09s-2.76,18.08-3.08,27.21c-.44,12.52,2.58,25,2.07,37.48-.36,8.73-2.43,17.29-4.88,25.67-2.89,9.89-7.07,20.52-16.2,25.27-12.12,6.31-37.54,2.76-50.29,7.7,1.16-7.23,12.28-17.7,13.44-24.93.8-5,1.61-10.14.75-15.15-1.1-6.39-4.85-12.06-9.3-16.78-7.08-7.51-16.32-13.16-26.47-15s-35-.33-43.12,6.08c-1-6.62,17.6-13,24.14-14.43,3.26-.73,7-.32,9.61-2.39,5-3.92,1.37-11.73,1.61-18,.19-5,3.11-9.58,3.7-14.58,1-8-4.22-16.15-2.17-24,.76-2.9,2.45-5.45,3.62-8.21,3.56-8.45,2-18.09.1-27.07-1.18-5.64-2.33-12,.81-16.81,2.91-4.49,8.6-6.19,13.89-6.94a68.42,68.42,0,0,1,50,12.9c7.19,5.4,8.13,11,11,18.71C979.77,554.6,987,558.36,991.67,564.44Z" transform="translate(-28 -141.34)" fill="#4c4981"/><path d="M330,517.06,384.37,718a12.55,12.55,0,0,0,10.91,9.21L640,750.72a12.54,12.54,0,0,0,13.38-15.48L593.84,492.86a12.54,12.54,0,0,0-13.12-9.51L341.13,501.27A12.54,12.54,0,0,0,330,517.06Z" transform="translate(-28 -141.34)" fill="#9c9ca1"/><ellipse cx="787.11" cy="387.68" rx="26.9" ry="27.25" fill="#fff"/><path d="M837.2,479.31s5.67,16.86-11.06,23.95L824,507l10.48,10.34S847.4,493.77,846,485.4C846,485.4,844,476.9,837.2,479.31Z" transform="translate(-28 -141.34)" fill="#fff"/><circle cx="790.2" cy="388.99" r="25.94" fill="#005aa0"/><path d="M846.13,489.23l-4.12-6.8-6-.85c1.28-22.39-4.53-29.06-4.53-29.06l-1.35-.13-5.88-.57-11.06-11.48v-3.26c15.54,1.85,24.13,9.23,28.77,17.88C850.16,470.14,846.13,489.23,846.13,489.23Z" transform="translate(-28 -141.34)" fill="#005aa0"/><path d="M830.18,448.27v4.12l-5.88-.57-11.06-11.48S830.35,444.17,830.18,448.27Z" transform="translate(-28 -141.34)" stroke="#4c4981" stroke-miterlimit="10" opacity="0.1"/><path d="M846.13,489.23l-4.12-6.8V455C850.16,470.14,846.13,489.23,846.13,489.23Z" transform="translate(-28 -141.34)" stroke="#4c4981" stroke-miterlimit="10" opacity="0.1"/><ellipse cx="757.11" cy="518.2" rx="14.43" ry="26.32" transform="translate(-185.67 306.64) rotate(-30)" fill="#fff"/><path d="M761,516c7.27,12.59,16.19,21,9.29,25s-27,2-34.27-10.6-.67-30,6.23-34S753.72,503.38,761,516Z" transform="translate(-28 -141.34)" fill="#005aa0"/><path d="M825.73,425.3c0,40.23-27.53,79-67.76,79a72.85,72.85,0,0,1,0-145.7C798.2,358.64,825.73,385.06,825.73,425.3Z" transform="translate(-28 -141.34)" opacity="0.1"/><circle cx="729.97" cy="288.15" r="72.85" fill="#ae6e79"/><path d="M751.57,397.21c8.67,3.19,13.8,12.15,21.58,17.14,11,7,25.32,5.19,37.88,1.73,7-1.91,14.32-4.24,21.21-2.12a6,6,0,0,0,3.23.46c1.5-.43,2.24-2.09,2.73-3.57,8.52-25.4,4.69-54.17-8.17-77.67-3.32-6.06-7.3-11.92-12.78-16.13-4.32-3.31-9.4-5.48-14.52-7.33a145,145,0,0,0-28.88-7.13,17.94,17.94,0,0,0-5.27-.17c-2.41.39-4.57,1.69-6.72,2.85A68.78,68.78,0,0,1,732,313.38c-14,.53-30-2.77-40.79,6.21-13,10.77-9.76,31.78-18.19,46.4-5.58,9.67-16.34,16.69-18.11,27.7a25.57,25.57,0,0,0,.63,10.07c4.12,16.94,20.52,30.06,38,30.37a14.42,14.42,0,0,0,7.76-1.59,17.55,17.55,0,0,0,4.09-3.89C716.84,415.09,729.94,389.25,751.57,397.21Z" transform="translate(-28 -141.34)" fill="#444053"/><path d="M838.2,403.48c-.49,1.48-1.23,3.14-2.73,3.57a6,6,0,0,1-3.23-.46c-6.89-2.12-14.25.21-21.2,2.12-12.57,3.46-26.92,5.31-37.88-1.73-7.79-5-12.91-14-21.59-17.14-21.63-8-34.73,17.88-46.21,31.44a17.55,17.55,0,0,1-4.09,3.89,14.42,14.42,0,0,1-7.76,1.59c-17.42-.31-33.83-13.43-38-30.37-.23-1-.43-2-.58-3,0,.09,0,.17-.05.26a25.57,25.57,0,0,0,.63,10.07c4.12,16.94,20.53,30.06,38,30.37a14.42,14.42,0,0,0,7.76-1.59,17.55,17.55,0,0,0,4.09-3.89c11.48-13.56,24.58-39.4,46.21-31.44,8.68,3.19,13.8,12.15,21.59,17.14,11,7,25.31,5.19,37.88,1.73,7-1.91,14.31-4.24,21.2-2.12a6,6,0,0,0,3.23.46c1.5-.43,2.24-2.09,2.73-3.57a90.29,90.29,0,0,0,4.48-32.26A88.8,88.8,0,0,1,838.2,403.48Z" transform="translate(-28 -141.34)" opacity="0.1"/></svg> \ No newline at end of file diff --git a/assets/img/services/undraw_feeling_proud_qne1.svg b/assets/img/services/undraw_feeling_proud_qne1.svg new file mode 100644 index 0000000000000000000000000000000000000000..6cfbdc1c1ff11a24bb4994176fd02b393b10f0b2 --- /dev/null +++ b/assets/img/services/undraw_feeling_proud_qne1.svg @@ -0,0 +1 @@ +<svg id="b52d7e2d-d80f-4111-b6ed-d15502ee1edd" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="711.1879" height="669.68268" viewBox="0 0 711.1879 669.68268"><title>feeling_proud</title><polygon points="516.326 380.018 516.326 565.013 547.27 615.443 549.625 619.279 671.722 619.279 674.189 380.018 516.326 380.018" fill="#e6e6e6"/><polygon points="516.326 380.018 516.326 565.013 547.27 615.443 549.169 380.018 516.326 380.018" opacity="0.1"/><polygon points="221.566 375.084 221.566 560.08 190.622 610.51 188.267 614.345 66.17 614.345 63.703 375.084 221.566 375.084" fill="#e6e6e6"/><polygon points="221.566 375.084 221.566 560.08 190.622 610.51 188.723 375.084 221.566 375.084" opacity="0.1"/><polygon points="711.188 371.385 711.188 382.484 47.67 382.484 47.67 366.451 109.335 334.385 656.923 334.385 711.188 371.385" fill="#e6e6e6"/><polygon points="711.188 371.385 711.188 382.484 47.67 382.484 47.67 366.451 711.188 371.385" opacity="0.1"/><polygon points="142.635 426.883 113.035 426.883 100.702 418.25 156.201 418.25 142.635 426.883" fill="#3f3d56"/><polygon points="142.635 462.649 113.035 462.649 100.702 454.016 156.201 454.016 142.635 462.649" fill="#3f3d56"/><polygon points="142.635 513.215 113.035 513.215 100.702 504.581 156.201 504.581 142.635 513.215" fill="#3f3d56"/><polygon points="142.635 563.78 113.035 563.78 100.702 555.147 156.201 555.147 142.635 563.78" fill="#3f3d56"/><polygon points="595.257 431.816 624.857 431.816 637.19 423.183 581.691 423.183 595.257 431.816" fill="#3f3d56"/><polygon points="595.257 467.582 624.857 467.582 637.19 458.949 581.691 458.949 595.257 467.582" fill="#3f3d56"/><polygon points="595.257 518.148 624.857 518.148 637.19 509.515 581.691 509.515 595.257 518.148" fill="#3f3d56"/><polygon points="595.257 568.713 624.857 568.713 637.19 560.08 581.691 560.08 595.257 568.713" fill="#3f3d56"/><path d="M859.81989,235.61493H610.63446a9.4227,9.4227,0,0,0-9.42389,9.42389V412.89655a9.4227,9.4227,0,0,0,9.42389,9.42388h94.5929l-3.54389,22.62623s-20.25281,10.75927-6.01251,11.07574,81.32764,0,81.32764,0,12.97448,0-7.59479-11.39221l-3.33362-22.30976h93.7497a9.42266,9.42266,0,0,0,9.42388-9.42388V245.03882A9.42266,9.42266,0,0,0,859.81989,235.61493Z" transform="translate(-244.40605 -115.15866)" fill="#3f3d56"/><rect x="365.82336" y="130.42445" width="249.99557" height="139.87094" fill="#f2f2f2"/><circle cx="490.82114" cy="125.99415" r="1.58225" fill="#f2f2f2"/><circle cx="490.82114" cy="294.34559" r="6.01255" fill="#f2f2f2"/><polygon points="481.452 357.952 481.452 361.117 311.202 361.117 311.202 358.585 311.436 357.952 315.632 346.56 477.971 346.56 481.452 357.952" fill="#3f3d56"/><path d="M791.37558,470.01266c-.31011,1.3259-1.481,2.72467-4.1265,4.04741-9.4935,4.74675-28.797-1.2658-28.797-1.2658s-14.87315-2.53161-14.87315-9.17706a11.86592,11.86592,0,0,1,1.30377-.77528c3.99133-2.11163,17.2253-7.32222,40.69051.22062a9.78618,9.78618,0,0,1,4.46035,2.923A4.667,4.667,0,0,1,791.37558,470.01266Z" transform="translate(-244.40605 -115.15866)" fill="#3f3d56"/><path d="M791.37558,470.01266c-11.62,4.45247-21.97744,4.78472-32.607-2.59805a23.34328,23.34328,0,0,0-13.88583-4.57268c3.99133-2.11163,17.2253-7.32222,40.69051.22062a9.78618,9.78618,0,0,1,4.46035,2.923A4.667,4.667,0,0,1,791.37558,470.01266Z" transform="translate(-244.40605 -115.15866)" opacity="0.1"/><ellipse cx="532.40017" cy="350.99016" rx="4.11385" ry="1.2658" fill="#f2f2f2"/><polygon points="481.452 357.952 481.452 361.117 311.202 361.117 311.202 358.585 311.436 357.952 481.452 357.952" opacity="0.1"/><path d="M339.06751,115.15881a8.55394,8.55394,0,0,0-4.96126,1.1083c-1.476,1.0108-2.40629,2.78162-3.35588,4.42947a52.98576,52.98576,0,0,1-14.43428,16.30464c-4.28894,3.142-9.74169,7.05966-9.00789,12.85269a17.37163,17.37163,0,0,0,2.09058,5.4255c3.9566,7.987,14.75357,14.15926,13.69156,23.27309,3.931-6.58092-1.327-9.835,2.604-16.41586,1.87205-3.134,5.12412-6.67168,7.95054-4.70353.94637.659,1.56777,1.84095,2.55314,2.41917,2.35122,1.37972,4.85259-1.258,6.93387-3.12633,7.17685-6.44263,17.383-4.7548,26.31387-2.74743,4.21624.94767,8.8473,2.191,11.33971,6.2207,3.277,5.29821-3.11344,11.02034-4.72807,17.01049a3.264,3.264,0,0,0,3.50293,4.06214c2.67975-.26434,5.8542-.481,6.01278-1.65694,3.37154.12,7.50269-.26181,8.94728-3.7725a14.76216,14.76216,0,0,0,.69252-4.29319c.5302-5.89718,3.0331-11.27719,4.69119-16.88993s2.37906-12.1905-.41909-17.1668a19.86362,19.86362,0,0,0-3.666-4.45557C379.94,117.67017,359.06259,115.136,339.06751,115.15881Z" transform="translate(-244.40605 -115.15866)" fill="#2f2e41"/><path d="M326.54375,190.06386s3.4534,28.7784-9.20909,31.08068,11.51136,41.4409,11.51136,41.4409l57.55681,6.90682-13.81364-46.04545s-9.20909-3.45341-3.4534-26.47613S326.54375,190.06386,326.54375,190.06386Z" transform="translate(-244.40605 -115.15866)" fill="#ffb8b8"/><polygon points="47.028 569.318 51.633 632.631 75.806 632.631 68.9 569.318 47.028 569.318" fill="#ffb8b8"/><polygon points="224.303 449.6 227.756 502.552 254.233 491.041 243.872 447.298 224.303 449.6" fill="#ffb8b8"/><path d="M274.16705,442.73826s1.15113,66.7659,8.058,88.63749,5.75568,23.02272,4.60455,26.47613-2.30228,1.15114-2.30228,6.90682-2.30227,96.69544,0,104.7534-6.90681,21.87159,0,23.02272,39.13863,0,40.28977-6.90682-9.20909-9.20909-4.60454-13.81363,11.51136-98.99772,11.51136-98.99772l16.11591-65.61476,29.92954-34.53409H441.0818l19.56932,75.975s-8.058,21.87159-2.30228,21.87159,40.28977,6.90682,40.28977-18.41818S487.12725,451.94735,484.825,449.64508s1.15113-10.36023-2.30228-13.81364-43.74317-27.62727-58.70794-32.23181S387.857,393.51476,387.857,393.51476Z" transform="translate(-244.40605 -115.15866)" fill="#2f2e41"/><path d="M498.63861,596.99051s-17.267-5.75568-25.325,11.51137-4.60454,21.87159-4.60454,21.87159,26.47613,9.20909,31.08068,4.60454c2.00333-2.00334,8.36471-2.69926,14.91273-2.84621,9.97289-.22381,12.62625-14.33323,3.20748-17.61885q-.42145-.147-.85317-.25539C507.8477,611.95529,498.63861,596.99051,498.63861,596.99051Z" transform="translate(-244.40605 -115.15866)" fill="#2f2e41"/><circle cx="108.03826" cy="59.36486" r="34.53409" fill="#ffb8b8"/><path d="M307.55,235.53374s56.40567,11.51136,70.21931-6.90682,19.56931,51.80113,19.56931,51.80113l6.90682,73.67272-10.36023,40.28977s-54.1034,43.74318-71.37044,47.19658-43.74318,5.75569-43.74318,5.75569,8.058-127.77613,8.058-130.0784S307.55,235.53374,307.55,235.53374Z" transform="translate(-244.40605 -115.15866)" fill="#005aa0"/><path d="M324.70433,213.94456s-12.54979-7.18923-16.0032-.28241S273.01591,237.836,269.5625,237.836s6.90682,95.54431,2.30227,107.05567S245.38864,440.436,258.05114,447.34281s3.45341-6.90682,16.11591,10.36022,74.82385,17.267,78.27726,10.36023-27.62727-58.708-21.87159-107.05567,14.96477-115.11362,6.90682-124.32271S324.70433,213.94456,324.70433,213.94456Z" transform="translate(-244.40605 -115.15866)" fill="#2f2e41"/><path d="M366.258,221.7201l1.60341-5.518s47.89544,15.87824,50.19772,26.23847,1.15113,82.88181-6.90682,88.63749-19.56932,14.96477-11.51136,28.7784,17.267,28.77841,24.17386,29.92954,19.56931,9.20909,16.1159,17.267-44.89431-6.90682-44.89431-6.90682-27.62727-20.72045-26.47613-52.95227S366.258,221.7201,366.258,221.7201Z" transform="translate(-244.40605 -115.15866)" fill="#2f2e41"/><path d="M406.54771,357.55418l-27.62727,51.80113s-40.28976,41.4409-17.267,46.04545,35.68522-37.9875,35.68522-37.9875l29.92955-42.592Z" transform="translate(-244.40605 -115.15866)" fill="#ffb8b8"/><path d="M340.74981,124.19457a7.83806,7.83806,0,0,0-4.03868.78334,9.41322,9.41322,0,0,0-2.73182,3.13072,39.77267,39.77267,0,0,1-11.7501,11.524c-3.49138,2.22077-7.93014,4.98972-7.3328,9.0842a11.35949,11.35949,0,0,0,1.70182,3.8347,30.16344,30.16344,0,0,1,3.66519,18.80068l9.60011-13.954c1.52393-2.21507,4.17125-4.7155,6.47207-3.32442.77039.46577,1.27623,1.30117,2.07836,1.70985,1.914.97518,3.95021-.88912,5.64447-2.20967,5.84225-4.55361,14.15049-3.36066,21.42059-1.94187,3.43219.66981,7.20207,1.54859,9.231,4.39676,3.37169,4.73311-.149,11.5721,1.81882,17.04a5.02339,5.02339,0,0,0,2.07852-3.31717c2.74457.08484,6.1075-.185,7.28345-2.66638a9.18757,9.18757,0,0,0,.56374-3.03439c.43161-4.16809,2.46907-7.97065,3.81883-11.93769s1.93666-8.61616-.34116-12.13338a14.68107,14.68107,0,0,0-2.98426-3.14917C374.02174,125.96958,357.02664,124.17845,340.74981,124.19457Z" transform="translate(-244.40605 -115.15866)" fill="#2f2e41"/><path d="M406.54771,237.836l10.72528,2.84686s24.95995,63.919,19.20427,107.66222-9.20909,34.53409-9.20909,34.53409-9.20909-20.72046-29.92955-16.11591Z" transform="translate(-244.40605 -115.15866)" fill="#2f2e41"/><path d="M293.02894,739.422c-2.77592,3.77228-2.21935,9.16459-4.67828,13.15075-2.13144,3.45526-6.14837,5.26695-8.81439,8.32869a22.32616,22.32616,0,0,0-2.26617,3.25987c-2.47311,4.14255-4.4833,9.45174-2.04761,13.61641,1.95936,3.35022,6.07786,4.65961,9.855,5.552,4.77407,1.128,9.73436,2.03071,14.56354,1.16876s9.54882-3.819,11.27067-8.41239a32.50011,32.50011,0,0,1,1.2051-3.4007c2.61747-5.15294,10.82749-5.20864,13.50628-10.33,1.87466-3.584.15138-7.91623-1.57118-11.57578l-5.26109-11.1771c-1.74592-3.70919-8.82362-1.57608-12.51339-2.46492C301.46518,735.97844,296.49084,734.70126,293.02894,739.422Z" transform="translate(-244.40605 -115.15866)" fill="#2f2e41"/><path d="M254.59773,380.5769l48.34772,74.82386s29.92954,37.98749,39.13863,20.72045-32.23181-46.04545-32.23181-46.04545L278.77159,372.519Z" transform="translate(-244.40605 -115.15866)" fill="#ffb8b8"/><path d="M278.77159,240.13828,269.5625,237.836s-18.41818,5.75568-23.02272,29.92954-1.15114,120.86931,4.60454,122.02044,28.42725-16.83663,32.05624-13.02286-7.88238-15.75554-4.429-26.11577S278.77159,240.13828,278.77159,240.13828Z" transform="translate(-244.40605 -115.15866)" fill="#2f2e41"/><g id="f3c2397c-d780-4cc6-97d8-1503d8277a2c" data-name="Group 13"><rect id="ad41612f-86f7-46b2-a964-3a5da7bcf3cf" data-name="Rectangle 55" x="437.40692" y="176.36275" width="29.75235" height="7.1626" fill="#005aa0"/><rect id="b9a0b375-cc2a-4c59-8850-661af54e4f62" data-name="Rectangle 56" x="559.72215" y="176.36275" width="10.46842" height="7.1626" fill="#005aa0"/><rect id="e174c2ab-9bc5-41ec-b37c-b06fbf8a9878" data-name="Rectangle 57" x="580.65899" y="176.36275" width="10.46842" height="7.1626" fill="#005aa0"/><rect id="ba2479ac-4c7d-43b4-a028-73b1e20e4002" data-name="Rectangle 58" x="477.62768" y="176.36275" width="71.07506" height="7.1626" fill="#005aa0"/><rect id="ac60ef86-00f2-480b-8171-28b6fdfc1958" data-name="Rectangle 59" x="399.94099" y="222.6442" width="29.75235" height="7.1626" fill="#005aa0"/><rect id="b3d8298d-cd65-487a-8b19-4cee946356e7" data-name="Rectangle 60" x="522.25621" y="222.6442" width="10.46842" height="7.1626" fill="#005aa0"/><rect id="ed27f15f-f0c4-4569-8330-a6688f8e356c" data-name="Rectangle 61" x="543.19305" y="222.6442" width="10.46842" height="7.1626" fill="#005aa0"/><rect id="f685c005-adaf-4d60-acda-005b037d82a6" data-name="Rectangle 62" x="440.16176" y="222.6442" width="71.07506" height="7.1626" fill="#005aa0"/><rect id="eca7c7fc-83f8-48ca-a588-6606db47af3f" data-name="Rectangle 63" x="522.80718" y="192.34088" width="29.75235" height="7.1626" fill="#005aa0"/><rect id="a71b5b2f-f8b9-481d-a301-5e3357e5fe42" data-name="Rectangle 64" x="563.02795" y="192.34088" width="29.75235" height="7.1626" fill="#005aa0"/><rect id="abb3a25a-f854-41fc-8391-e6ad9fbe2417" data-name="Rectangle 66" x="399.94099" y="192.34088" width="10.46842" height="7.1626" fill="#005aa0"/><rect id="add2b425-b775-4eb5-9c25-8c4c14f957c9" data-name="Rectangle 67" x="420.87784" y="192.34088" width="10.46842" height="7.1626" fill="#005aa0"/><rect id="b7159612-3b84-4b0b-a885-612eaab04c06" data-name="Rectangle 68" x="441.81466" y="192.34088" width="71.07506" height="7.1626" fill="#005aa0"/><rect id="edfc7301-4de5-47dc-80e2-1ae2da982d6d" data-name="Rectangle 69" x="461.09859" y="207.76802" width="29.75235" height="7.1626" fill="#005aa0"/><rect id="e1009f91-6275-4375-80fa-0d778e331fdc" data-name="Rectangle 70" x="420.87783" y="207.76802" width="29.75235" height="7.1626" fill="#005aa0"/><rect id="a060fb9f-1f1a-4862-9a69-16dd49199e18" data-name="Rectangle 71" x="399.941" y="207.76802" width="10.46842" height="7.1626" fill="#005aa0"/><rect id="b6754d5f-104f-449c-b9a9-cf9ac82bf5fe" data-name="Rectangle 73" x="582.31189" y="207.76802" width="10.46842" height="7.1626" fill="#005aa0"/><rect id="e6ed1ccd-2cfd-450f-a339-07df3a1ee6bb" data-name="Rectangle 74" x="500.76841" y="207.76802" width="71.07506" height="7.1626" fill="#005aa0"/></g></svg> \ No newline at end of file diff --git a/assets/img/services/undraw_fill_forms_yltj copy.svg b/assets/img/services/undraw_fill_forms_yltj copy.svg new file mode 100644 index 0000000000000000000000000000000000000000..db840778ae0087c3f242ebd7e4cd225d9fc08fcf --- /dev/null +++ b/assets/img/services/undraw_fill_forms_yltj copy.svg @@ -0,0 +1 @@ +<svg id="e4efdc2f-150c-4196-a68d-a8467dcc9971" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1012.29306" height="636.61261" viewBox="0 0 1012.29306 636.61261"><title>fill_forms</title><path d="M472.64653,398.128s83,4,88,33-97,3-97,3Z" transform="translate(-93.85347 -131.6937)" fill="#a0616a"/><path d="M341.64653,306.128s14,4,25,28,33,46,33,46l89,17-15,45-85-11-53-30Z" transform="translate(-93.85347 -131.6937)" fill="#575a89"/><path d="M341.64653,306.128s14,4,25,28,33,46,33,46l89,17-15,45-85-11-53-30Z" transform="translate(-93.85347 -131.6937)" opacity="0.1"/><rect x="824.29306" y="92.93432" width="105" height="2" fill="#3f3d56"/><rect x="409.29306" y="92.93432" width="333" height="2" fill="#3f3d56"/><rect x="30.29306" y="333.93432" width="789" height="301" fill="#3f3d56"/><polygon points="115.793 128.434 124.793 185.434 186.793 188.434 179.793 104.434 115.793 128.434" fill="#a0616a"/><path d="M144.14653,640.628l-3,126h94l14-50,11,50h98s2-144-9-145S144.14653,640.628,144.14653,640.628Z" transform="translate(-93.85347 -131.6937)" fill="#2f2e41"/><circle cx="135.79306" cy="89.43432" r="54" fill="#a0616a"/><path d="M138.64653,646.128l28-138-37-183,85.21434-31.97582,41.78566-5.02418,21.00654-3.92147,14.99346,3.92147s60,15,63,26-12,101-12,101l-14,74,31,133s-129,44-220,24Z" transform="translate(-93.85347 -131.6937)" fill="#575a89"/><polygon points="82.293 243.934 82.293 280.934 200.285 281.095 88.293 268.934 82.293 243.934" opacity="0.1"/><polygon points="72.159 346.12 220.293 324.934 72.159 366.89 72.159 346.12" opacity="0.1"/><polygon points="307.293 248.934 291.412 306.159 318.293 250.822 307.293 248.934" opacity="0.1"/><path d="M274.08747,166.97162l9.93007-3.97545s-20.76282-22.85871-49.65048-20.8709l8.12483-8.94481s-19.86015-7.95077-37.9148,12.92013c-9.491,10.97136-20.47216,23.86767-27.31776,38.39517H166.62491l4.4384,9.77288-15.53444,9.77288,15.94458-1.75541a54.612,54.612,0,0,0-.43268,16.21013,20.97371,20.97371,0,0,0,7.68035,13.72061h0s12.3151-25.49107,12.3151-29.46652v9.93858s9.93007-8.94467,9.93007-14.90777l5.41635,6.957,2.70817-10.93248,33.40108,10.93248-5.41635-8.94468,20.76283,2.98155-8.12483-10.93248s23.471,12.92013,24.37393,23.85261c.90262,10.93232,7.77269,21.29141,7.77269,21.29141S300.26671,181.8794,274.08747,166.97162Z" transform="translate(-93.85347 -131.6937)" fill="#2f2e41"/><rect x="233.29306" y="234.93432" width="384" height="401" fill="#d0cde1"/><rect x="273.29306" y="322.93432" width="284" height="40" fill="#005aa0"/><rect x="322.11632" y="428.93432" width="185.99441" height="20" fill="#005aa0"/><rect x="322.47538" y="463.93432" width="185.99441" height="20" fill="#005aa0"/><rect x="322.83445" y="498.93432" width="92.9972" height="20" fill="#005aa0"/><rect x="519.29306" y="599.93432" width="43" height="20" fill="#005aa0"/><path d="M299.64653,417.128s87-13,100,6-92,29-92,29Z" transform="translate(-93.85347 -131.6937)" fill="#a0616a"/><path d="M139.64653,324.128h-6.26587a10.21521,10.21521,0,0,0-6.9558,2.707c-5.94794,5.52277-18.52459,19.7749-23.77833,45.293-7,34-19,100,8,105s204-19,204-19l-13-46-128,1s2-22-2-36S139.64653,324.128,139.64653,324.128Z" transform="translate(-93.85347 -131.6937)" fill="#575a89"/><circle cx="409.29306" cy="93.93432" r="41" fill="#d0cde1"/><circle cx="596.29306" cy="93.93432" r="41" fill="#3f3d56"/><path d="M877.14653,267.628a42,42,0,1,1,42-42A42.0475,42.0475,0,0,1,877.14653,267.628Zm0-82a40,40,0,1,0,40,40A40.04551,40.04551,0,0,0,877.14653,185.628Z" transform="translate(-93.85347 -131.6937)" fill="#3f3d56"/><path d="M1064.14653,267.628a42,42,0,1,1,42-42A42.0475,42.0475,0,0,1,1064.14653,267.628Zm0-82a40,40,0,1,0,40,40A40.04551,40.04551,0,0,0,1064.14653,185.628Z" transform="translate(-93.85347 -131.6937)" fill="#3f3d56"/><polygon points="403.641 111.377 385.873 87.688 392.273 82.887 404.506 99.197 460.745 42.959 466.401 48.615 403.641 111.377" fill="#3f3d56"/><rect x="16.49572" y="633.8306" width="816.59467" height="2.78201" fill="#3f3d56"/></svg> \ No newline at end of file diff --git a/assets/img/services/undraw_finish_line_katerina_limpitsouni_xy20 copy.svg b/assets/img/services/undraw_finish_line_katerina_limpitsouni_xy20 copy.svg new file mode 100644 index 0000000000000000000000000000000000000000..08705f046b8e3a9578c733592cc6502810e29679 --- /dev/null +++ b/assets/img/services/undraw_finish_line_katerina_limpitsouni_xy20 copy.svg @@ -0,0 +1 @@ +<svg id="bfbf73d7-c530-40db-b058-cfcd33b42d36" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="1100.11" height="731.98" viewBox="0 0 1100.11 731.98"><title>finish line_katerina_limpitsouni</title><path d="M691.18,230C626.46,227.7,564.82,206.81,506,184s-117.16-48.19-180.33-60.3c-40.63-7.79-87.1-8.89-119.83,12.89-31.51,21-41.69,57.15-47.16,90.73-4.12,25.26-6.54,51.84,4.74,75.49,7.84,16.42,21.74,30.22,31.36,45.95,33.47,54.72,9.81,122.2-26.45,175.63-17,25.07-36.75,49-49.88,75.66s-19.2,57.25-7.71,84.47c11.38,27,38.51,47.24,67.9,61.49,59.69,28.94,130,37.23,198.61,41.92,151.83,10.39,304.46,5.89,456.69,1.39,56.34-1.67,112.92-3.36,168.34-12.07,30.78-4.84,62.55-12.52,84.9-31.05,28.36-23.53,35.39-63.38,16.38-92.88-31.88-49.49-120-61.78-142.31-114.9-12.26-29.23.33-61.8,18.16-88.91,38.24-58.16,102.33-109.19,105.7-175.68,2.32-45.66-28.49-91.39-76.13-113-49.93-22.65-119.18-19.8-156,17.69C815,217.08,748.33,231.93,691.18,230Z" transform="translate(-49.94 -84.01)" fill="#005aa0" opacity="0.1"/><ellipse cx="171.26" cy="717.9" rx="73.21" ry="14.08" fill="#005aa0"/><ellipse cx="170.03" cy="711.92" rx="8.52" ry="11.16" fill="#3f3d56"/><ellipse cx="170.03" cy="698.28" rx="8.52" ry="11.16" fill="#3f3d56"/><ellipse cx="170.03" cy="684.64" rx="8.52" ry="11.16" fill="#3f3d56"/><ellipse cx="170.03" cy="671.01" rx="8.52" ry="11.16" fill="#3f3d56"/><ellipse cx="170.03" cy="657.37" rx="8.52" ry="11.16" fill="#3f3d56"/><ellipse cx="170.03" cy="643.73" rx="8.52" ry="11.16" fill="#3f3d56"/><ellipse cx="170.03" cy="630.09" rx="8.52" ry="11.16" fill="#3f3d56"/><path d="M251.88,620.77a40.41,40.41,0,0,0,3.18-4.67l-22.4-3.68,24.22.18a40.87,40.87,0,0,0,.78-32.35l-32.49,16.86,30-22a40.83,40.83,0,1,0-67.44,45.69,41.2,41.2,0,0,0-4.66,7.45l29.08,15.1-31-10.4a40.81,40.81,0,0,0,6.58,38.34,40.83,40.83,0,1,0,64.18,0,40.83,40.83,0,0,0,0-50.49Z" transform="translate(-49.94 -84.01)" fill="#005aa0"/><path d="M179,646a40.66,40.66,0,0,0,8.74,25.24,40.83,40.83,0,1,0,64.18,0C257.36,664.31,179,641.43,179,646Z" transform="translate(-49.94 -84.01)" opacity="0.1"/><path d="M575.89,632c.62,8,3.7,16.28,10.18,21s16.79,4.63,21.74-1.71a24.32,24.32,0,0,0,3.61-7.85c4.17-13.18,7.13-27.6,2.56-40.65-10.31-.67-22.26-5.52-30,3C577.73,612.73,575.17,622.75,575.89,632Z" transform="translate(-49.94 -84.01)" fill="#3f3d56"/><path d="M623.75,551.37c-1.37,11.63-3.7,23.21-3.46,34.92.09,4.52.57,9,.58,13.54a66.74,66.74,0,0,1-9,33.57,11.26,11.26,0,0,1-2.46,3.18c-2.37,1.92-5.94,1.76-8.6.29a16.92,16.92,0,0,1-6.11-6.63c-7.45-12.76-7.66-28.27-10.61-42.74-2.26-11.07-6.22-21.8-7.65-33-.93-7.21-.79-14.56-2.27-21.68-.45-2.15-1.71-5.38-2.54-8.55-.76-2.83-1.18-5.61-.4-7.52,1.59-3.91,6.8-2.39,10.19-2.15a234.58,234.58,0,0,0,35.86-.09c1.18-.09,2.52-.14,3.35.7a4.12,4.12,0,0,1,.8,1.45,48.53,48.53,0,0,1,2.17,8C625.25,533.37,624.79,542.5,623.75,551.37Z" transform="translate(-49.94 -84.01)" fill="#fabdbd"/><g opacity="0.1"><path d="M619.15,514.51a8.8,8.8,0,0,0-1.85,0c-5.72.46-11.45.69-17.17.72Q609.64,515.25,619.15,514.51Z" transform="translate(-49.94 -84.01)"/><path d="M602.83,636.87a16.92,16.92,0,0,1-6.11-6.63c-7.45-12.76-7.66-28.27-10.61-42.74-2.26-11.07-6.22-21.8-7.65-33-.93-7.21-.79-14.56-2.27-21.68-.45-2.15-1.71-5.38-2.54-8.55-.76-2.83-1.18-5.61-.4-7.52a4.26,4.26,0,0,1,4-2.6c-2.53-.17-5,.13-6,2.6-.78,1.91-.36,4.69.4,7.52.83,3.17,2.09,6.4,2.54,8.55,1.48,7.12,1.34,14.47,2.27,21.68,1.43,11.21,5.39,21.94,7.65,33,2.95,14.47,3.16,30,10.61,42.74a16.92,16.92,0,0,0,6.11,6.63,8.88,8.88,0,0,0,5.24,1.06A9.22,9.22,0,0,1,602.83,636.87Z" transform="translate(-49.94 -84.01)"/></g><path d="M661.56,612.7c-6,12-5,29-5,29,1,40-15,124-15,124h-14s-2-93,0-101-1-36-4-75c-2.23-29,3.84-55.28,7.1-66.81,1.12-4,1.9-6.19,1.9-6.19s23-34,36-18c3,3.72,4.59,11.23,5.14,20.71C675.48,550.69,666.16,603.49,661.56,612.7Z" transform="translate(-49.94 -84.01)" fill="#fabdbd"/><path d="M673.7,519.41c-.55-9.48-2.12-17-5.14-20.71-2.9-3.56-6.3-4.64-9.82-4.17a10.66,10.66,0,0,1,6.82,4.17c3,3.72,4.59,11.23,5.14,20.71,1.78,31.28-7.54,84.08-12.14,93.29-6,12-5,29-5,29,1,40-15,124-15,124h3s16-84,15-124c0,0-1-17,5-29C666.16,603.49,675.48,550.69,673.7,519.41Z" transform="translate(-49.94 -84.01)" opacity="0.1"/><path d="M620.28,762.05a13,13,0,0,0-2.86,3.12c-1.79,3.38.75,7.42,3.47,10.11s6,5.57,6,9.4c0,3.08-2.33,5.72-4.94,7.36-1.4.88-3.16,2-2.87,3.66a3.44,3.44,0,0,0,.53,1.17c2.24,3.43,6.21,5.44,10.23,6.2s8.17.43,12.26.1a2.47,2.47,0,0,0,1.68-.58,2.28,2.28,0,0,0,.45-1.38c.2-2.12.07-4.36,1-6.27,1.3-2.61,4.29-3.94,6-6.28,2.4-3.2,2.07-7.65,1.16-11.54-2-8.47-6.45-18.13-13.13-24C631.52,746.38,625.45,757.18,620.28,762.05Z" transform="translate(-49.94 -84.01)" fill="#3f3d56"/><path d="M650.58,258c5.58-8.34,4.13-20-1.57-28.3s-14.86-13.52-24.31-16.89c-12.74-4.54-26.79-6.09-39.88-2.68-10.42,2.71-19.78,8.38-29.6,12.76a127.29,127.29,0,0,1-55.28,11c-21.11-.59-44.24-6-61.95,5.54-32.42,21.09-18,78.49-48.67,102-8.27,6.34-18.68,9.11-27.88,14s-17.92,13.4-17.7,23.82c.1,5,2.3,9.77,5,14,11.5,18.23,33,29.51,54.53,29.3s42.54-11.66,54.95-29.28c3.11-4.41,5.85-9.32,10.36-12.26,9-5.9,20.86-1.77,31.6-.89,23.91,1.95,47.83-16,52.59-39.55,2-10.05,1.65-22.06,9.74-28.37,6.53-5.09,15.72-4,24-4.87,15.14-1.57,27.09-11,35.31-23.32,3.77-5.65,4.21-12.4,9.35-16.85C636.71,262.27,645.28,265.88,650.58,258Z" transform="translate(-49.94 -84.01)" fill="#3f3d56"/><g opacity="0.1"><path d="M479.94,235.82a126.77,126.77,0,0,0,26.17-2c-2.38.07-4.78.07-7.17,0-16.57-.46-34.38-3.88-49.84.24C459.3,234.16,469.85,235.54,479.94,235.82Z" transform="translate(-49.94 -84.01)"/><path d="M448.56,383c-4.51,2.94-7.25,7.85-10.36,12.26a70.25,70.25,0,0,1-39.47,27.21c1.17.05,2.34.08,3.52.07,21.55-.21,42.54-11.66,54.95-29.28,3.11-4.41,5.85-9.32,10.36-12.26l.78-.48C461.28,379.55,454.35,379.21,448.56,383Z" transform="translate(-49.94 -84.01)"/><path d="M648,229.67c-5.69-8.26-14.86-13.52-24.31-16.89-12.74-4.54-26.79-6.09-39.88-2.68-.3.07-.59.16-.88.24a76.55,76.55,0,0,1,21.76,4.44c9.45,3.37,18.62,8.63,24.31,16.89s7.15,20,1.57,28.3c-5.3,7.91-13.87,4.3-19.48,9.17-5.14,4.45-5.58,11.2-9.35,16.85-7.07,10.57-16.91,19-29.16,22.2,4.21-.5,8.65-.44,12.85-.88,15.14-1.57,27.09-11,35.31-23.32,3.77-5.65,4.21-12.4,9.35-16.85,5.61-4.87,14.18-1.26,19.48-9.17C655.16,249.63,653.71,237.93,648,229.67Z" transform="translate(-49.94 -84.01)"/><path d="M566.44,309.31c-8.23.86-17.42-.22-24,4.87-8.09,6.31-7.7,18.32-9.74,28.37C529.19,360.12,514.93,374.61,498,380l1.19.11c23.91,1.95,47.83-16,52.59-39.55,2-10.05,1.65-22.06,9.74-28.37a18.06,18.06,0,0,1,6.21-3C567.28,309.2,566.87,309.27,566.44,309.31Z" transform="translate(-49.94 -84.01)"/></g><path d="M808.06,222.2s-24,48-32,66-81,45-91,46a12.88,12.88,0,0,0-7.14,3.44c-5.65,5-8.86,13.56-8.86,13.56s4,27-1,72c-.1.87-.19,1.74-.27,2.58-4.36,42.82,4.77,52.92,4.77,52.92s-97,37-94-11c.94-15.11.8-26.15-.13-35.38a148.57,148.57,0,0,0-5.74-27.86c-2.37-8.29-5.2-17.38-8.13-29.76A130.53,130.53,0,0,0,559,356.55c-.07-.18-.14-.36-.2-.53-5-12.41-10-16.42-12.86-17.72a43.23,43.23,0,0,1-7.68-4.32c-9.24-6.67-29.07-21.62-46.73-39.28-24-24-48-81-48-81s-7-33,9-60,9,53,9,53,29,39,36,57c3.6,9.26,9.32,14,14,16.46A166,166,0,0,1,533.67,294a129.29,129.29,0,0,0,14.89,9.72c11.18,6,24.57,12.77,35.73,14.55a33.69,33.69,0,0,0,5.27.45,5.46,5.46,0,0,0,4.4-2c3-3.53,2.93-11.13,2.24-17.38a88.32,88.32,0,0,0-1.64-9.63s32.5-20.5,31.5,4.5a27.94,27.94,0,0,0,.76,8.22,14.25,14.25,0,0,0,9.69,10.6,24,24,0,0,0,12,.39,11.73,11.73,0,0,0,3.54-1.21c3-2,33-11,42-12s54-23,54-23l49-68s-1-40,19-56S808.06,222.2,808.06,222.2Z" transform="translate(-49.94 -84.01)" fill="#fabdbd"/><g opacity="0.1"><path d="M667.79,419.78a199.39,199.39,0,0,0-1.15,24.2c.1-5.28.45-11.31,1.15-18.2.08-.84.17-1.71.27-2.58a392.15,392.15,0,0,0,2.5-46.39,401.7,401.7,0,0,1-2.5,40.39C668,418.07,667.87,418.94,667.79,419.78Z" transform="translate(-49.94 -84.01)"/><path d="M595.6,289.07c-.67.39-1,.63-1,.63a85.66,85.66,0,0,1,1.92,13A61.34,61.34,0,0,0,595.6,289.07Z" transform="translate(-49.94 -84.01)"/><path d="M462,201.27c.49-7,1.22-19.55,1.08-30.71-.17,14.92-1.5,30.14-1.5,30.14Z" transform="translate(-49.94 -84.01)"/><path d="M578.63,466.53c0,.39,0,.78-.07,1.17-3,48,94,11,94,11a16.28,16.28,0,0,1-2.53-5.08C655.42,478.82,582,503,578.63,466.53Z" transform="translate(-49.94 -84.01)"/><path d="M808.06,216.2s-24,48-32,66-81,45-91,46a12.88,12.88,0,0,0-7.14,3.44c-5.65,5-8.86,13.56-8.86,13.56s.24,1.63.53,4.73c1.12-2.57,4-8.47,8.33-12.29a12.88,12.88,0,0,1,7.14-3.44c10-1,83-28,91-46s32-66,32-66,16.91-51.35,15.05-66.71C821.57,175.17,808.06,216.2,808.06,216.2Z" transform="translate(-49.94 -84.01)"/><path d="M578.43,426.32a148.57,148.57,0,0,0-5.74-27.86c-2.37-8.29-5.2-17.38-8.13-29.76A130.53,130.53,0,0,0,559,350.55c-.07-.18-.14-.36-.2-.53-5-12.41-10-16.42-12.86-17.72a43.23,43.23,0,0,1-7.68-4.32c-9.24-6.67-29.07-21.62-46.73-39.28-24-24-48-81-48-81a90.42,90.42,0,0,1-1.48-14.58,96.4,96.4,0,0,0,1.48,20.58s24,57,48,81c17.66,17.66,37.49,32.61,46.73,39.28A43.23,43.23,0,0,0,546,338.3c2.85,1.3,7.84,5.31,12.86,17.72.06.17.13.35.2.53a130.53,130.53,0,0,1,5.53,18.15c2.93,12.38,5.76,21.47,8.13,29.76a148.57,148.57,0,0,1,5.74,27.86c.42,4.18.67,8.73.74,13.85A174.17,174.17,0,0,0,578.43,426.32Z" transform="translate(-49.94 -84.01)"/></g><path d="M677.47,382.88a59.56,59.56,0,0,0-4,7.88c-1.51,4.2-1.52,8.77-1.8,13.22a106.14,106.14,0,0,1-2.84,18.52,20.48,20.48,0,0,1-1,3.28,8.67,8.67,0,0,1-1.17,2,8.53,8.53,0,0,1-1.86,1.69,21.82,21.82,0,0,1-3.39,1.85c-13.92,6.5-29.1,12.24-44.29,10a64.45,64.45,0,0,1-18.43-6.2c-5.5-2.67-11.72-5.84-17.42-3.62h0a8.77,8.77,0,0,1-2.79.87,2.65,2.65,0,0,1-.56-.05c-1.88-.36-1.88-6.7-2.31-8.57-1.64-7.18-1.89-13-2.87-19.24a63.13,63.13,0,0,0-2.41-10.17c-4-12.1-5.21-25-5.21-37.68,0-.63-4.5,0-6-.06-.38,0-.59-.06-.5-.19a2,2,0,0,1,.3-.34,4.57,4.57,0,0,1,1.79-.89l1.18-.35c6.18-1.75,13-2.48,17.62-6.83,4.8-4.49,6-11.66,5.79-18.22-.06-2.11-1.09-7.23-.92-11.48a33.69,33.69,0,0,0,5.27.45,5.46,5.46,0,0,0,4.4-2,79,79,0,0,1,4.32,10c1.7,4.18,3,8.58,5.49,12.36,4,6.16,11.38,10.21,18.72,9.59s14.17-6.26,15.48-13.5c1.15-6.35-1.52-15.49-1.46-22.09a24,24,0,0,0,12,.39,10.84,10.84,0,0,1,.43,1.25c2.25,7.72,5.25,16.58,12.8,19.32,4.88,1.76,10.65.44,15.16,3a9.73,9.73,0,0,1,1,.66,11.07,11.07,0,0,1,2.65,2.81,22.59,22.59,0,0,1,3.21,10.08A55.92,55.92,0,0,1,677.47,382.88Z" transform="translate(-49.94 -84.01)" fill="#005aa0"/><path d="M626.82,302.42a34.08,34.08,0,0,1-30.62-3.09,88.32,88.32,0,0,0-1.64-9.63s32.5-20.5,31.5,4.5A27.94,27.94,0,0,0,626.82,302.42Z" transform="translate(-49.94 -84.01)" opacity="0.1"/><circle cx="564.61" cy="184.69" r="34" fill="#fabdbd"/><path d="M555.06,353.2s66-42,271,3,324,9,324,9v47s-230,25-318,0-213.27-39.42-257.14-.71Z" transform="translate(-49.94 -84.01)" fill="#f86d70"/><path d="M555.06,353.2s66-42,271,3,324,9,324,9v47s-230,25-318,0-213.27-39.42-257.14-.71Z" transform="translate(-49.94 -84.01)" opacity="0.1"/><path d="M557.06,355.2s64-42,269,3,322,9,322,9l1,43s-228,25-316,0-212.27-42.42-256.14-3.71Z" transform="translate(-49.94 -84.01)" fill="#f86d70"/><path d="M533,419.8s-66,42-271-3-195-9-195-9v-47s101-25,189,0,213.27,39.42,257.14.71Z" transform="translate(-49.94 -84.01)" fill="#f86d70"/><path d="M533,419.8s-66,42-271-3-195-9-195-9v-47s101-25,189,0,213.27,39.42,257.14.71Z" transform="translate(-49.94 -84.01)" opacity="0.1"/><path d="M531,417.8s-64,42-269-3-193-9-193-9l-1-43s99-25,187,0,212.27,42.42,256.14,3.71Z" transform="translate(-49.94 -84.01)" fill="#f86d70"/><path d="M585.31,274.33c-1-6.24-2.54-14.1,2.68-17.67a11.1,11.1,0,0,1,6.19-1.6c10.81-.11,21.14,7.42,31.74,5.22a17.89,17.89,0,0,0,7-31.87c-4.17-3.1-9.44-4.22-14.54-5.27-13.41-2.76-27.41-5.51-40.65-2s-25.34,15.38-24.28,29c.5,6.52,3.82,12.44,7.29,18,2.64,4.22,12.92,24,17.91,24.3C585.69,292.85,586,278.41,585.31,274.33Z" transform="translate(-49.94 -84.01)" fill="#3f3d56"/><path d="M669.56,461.7s-69,17-92,0c0,0-10,39-7,59,0,0,49,3,54,6,0,0,1-8,6-4,0,0,17-20,48-2C678.56,520.7,684.56,473.7,669.56,461.7Z" transform="translate(-49.94 -84.01)" fill="#005aa0"/><path d="M632.94,228.41a19.84,19.84,0,0,0-2.23-1.4,17.85,17.85,0,0,1-9.79,29.27c-10.6,2.2-20.93-5.33-31.74-5.22a11.1,11.1,0,0,0-6.19,1.6c-5.22,3.57-3.69,11.43-2.69,17.67.66,4.08.39,18.52-6.63,18.13l-.12,0c1.93,2.35,3.73,3.94,5.12,4,7,.39,7.29-14,6.63-18.13-1-6.24-2.53-14.1,2.69-17.67a11.1,11.1,0,0,1,6.19-1.6c10.81-.11,21.14,7.42,31.74,5.22a17.89,17.89,0,0,0,7-31.87Z" transform="translate(-49.94 -84.01)" opacity="0.1"/><g opacity="0.1"><path d="M136.3,180.91s-74.77-31.44-84.57,25.26c0,0-5.11,8.83,2,16.13,0,0,1.53-3.91,8.76.14a37.6,37.6,0,0,0,8.16,3.31,18.36,18.36,0,0,0,11.62-.62h0s24.59-1.33,45.27-33.5c0,0,8.86-5.48,9.31-7.53l-14.82,1s1.13,10.85-5,17.36c0,0,5.45-16.83,2.83-17.31-.53-.1-7.83.87-7.83.87s1.89,18.86-8,28.62c0,0,9.18-19.19,5.18-28.28l-10.93,2.11s3,19.84-7.82,31.39c0,0,8.89-20.4,5.46-30.77l-10.48,3.52s2.53,19.42-6.52,29c0,0,7.9-24.61,4.18-28,0,0-9.42,3.82-11.44,6,0,0,1.5,14-4.26,19,0,0,3.54-17,1.79-17.7,0,0-10.95,8.24-14.28,15.35,0,0,4.16-10.86,12.9-17,0,0-7.34-1.24-13,1.83,0,0,3.79-7.21,15.65-3.79,0,0,8.79-6.08,10.55-6,0,0-11.22-5-19.33-4.39,0,0,8.69-5,22.08,3.36l10.44-3.78s-14.49-7.43-21.76-7.4c0,0,9.66-3.73,24.48,6.67l10.69-2.19s-12-7.35-20.09-9.06c0,0,9.71-1.53,23.18,8.56l7.32-.62s-8.86-5.21-11.54-6.48-2.56-2.1-2.56-2.1a34.9,34.9,0,0,1,17.17,8.26S136.23,181.84,136.3,180.91Z" transform="translate(-49.94 -84.01)" fill="#005aa0"/></g><g opacity="0.1"><path d="M133.54,124.55S107,63.28,68.91,91.38c0,0-8.07,2.34-8,10.7,0,0,3.14-1.45,5.12,5.07a31.39,31.39,0,0,0,3,6.62A15,15,0,0,0,76.22,120h0s15.36,13.22,46,5.89c0,0,8.39,1.8,9.83.83l-9.37-7.86s-5.5,7.09-12.88,7.44c0,0,12.83-6.9,11.54-8.68-.26-.36-5.14-3.94-5.14-3.94s-9.63,12.28-21,12.47c0,0,16.39-6.18,19.19-13.85l-7.69-5s-9.54,13.49-22.53,14.19c0,0,16.9-7,20.77-15.16l-8.23-3.88s-9.56,13-20.37,13.49c0,0,18.71-10.12,18.42-14.25,0,0-7.77-3.1-10.23-2.92,0,0-7.07,9.15-13.38,8.89,0,0,11.79-8.09,11.14-9.5,0,0-11.2-1.34-17.23,1,0,0,8.66-4.08,17.35-2.74,0,0-3.65-4.93-8.74-6.3,0,0,6.36-2.13,11.46,6.66,0,0,8.68,1.39,9.69,2.43,0,0-3.8-9.39-9-13.62,0,0,8,2,11.2,14.57l8.35,3.71S101,91.2,96.61,87.09c0,0,7.87,3.28,10.75,17.9l7.59,4.79S112,98.58,108.18,93c0,0,6.64,4.61,8.9,18.28l4.7,3.8s-2.3-8.14-3.17-10.42-.32-2.7-.32-2.7a28.81,28.81,0,0,1,5.49,14.69S133,125.07,133.54,124.55Z" transform="translate(-49.94 -84.01)" fill="#005aa0"/></g></svg> \ No newline at end of file diff --git a/assets/img/services/undraw_order_delivered_p6ba.svg b/assets/img/services/undraw_order_delivered_p6ba.svg new file mode 100644 index 0000000000000000000000000000000000000000..8c375fe875b2f4cf954d82115bfbb5c1b51f9c11 --- /dev/null +++ b/assets/img/services/undraw_order_delivered_p6ba.svg @@ -0,0 +1 @@ +<svg id="ab8ae2a1-21db-4159-bb67-e2c62dcc19dc" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="867.93857" height="588.5" viewBox="0 0 867.93857 588.5"><path d="M925.055,325.47994H809.02141c-15.70477-42.51261-22.52583-82.0414,0-111.71322A58.01672,58.01672,0,0,1,867.03813,155.75h.00012a57.94434,57.94434,0,0,1,47.293,24.40356c9.16871,12.877,11.00592,29.47655,5.74836,44.38425C910.7093,251.10718,916.43032,287.36181,925.055,325.47994Z" transform="translate(-166.03071 -155.75)" fill="#2f2e41"/><path d="M986.33673,744.25h0a15.70205,15.70205,0,0,1-15.0077-11.0843l-4.78036-15.53616a23.1288,23.1288,0,0,1-.61965-11.10129l3.25577-17.209h22.83639l9.47609,35.14049A15.70206,15.70206,0,0,1,986.33673,744.25Z" transform="translate(-166.03071 -155.75)" fill="#2f2e41"/><path d="M819.952,744.25h0a15.70206,15.70206,0,0,0,15.0077-11.0843l4.78035-15.53616a23.12867,23.12867,0,0,0,.61965-11.10129l-3.25576-17.209H814.26761l-9.47609,35.14049A15.70206,15.70206,0,0,0,819.952,744.25Z" transform="translate(-166.03071 -155.75)" fill="#2f2e41"/><path d="M993.87275,691.17082h-25.3052L858.706,482.55729,838.438,691.17082H816.11921c-11.45007-131.36776-39.30814-256.49986,0-303.6623l91.96277,8.6408Z" transform="translate(-166.03071 -155.75)" fill="#2f2e41"/><circle cx="697.92148" cy="59.86838" r="30.85999" fill="#9f616a"/><path d="M907.46478,334.42934H838.9556l-11.7268-54.31358c22.75118-6.72118,28.17526-22.35365,23.4536-43.204l37.032-2.4688c2.09887,16.7954,5.93889,32.4559,29.62559,35.18039Z" transform="translate(-166.03071 -155.75)" fill="#9f616a"/><path d="M907.46478,402.32132c-38.8692,14.75815-70.48976,14.29779-92.58-6.172,9.96854-32.87311,10.56517-73.35384,6.172-117.88516l12.344-5.5548,4.3204,39.50079,61.10278-3.086,13.5784-43.204,13.57839,3.086C927.02154,322.57291,923.81334,370.76229,907.46478,402.32132Z" transform="translate(-166.03071 -155.75)" fill="#e6e6e6"/><path d="M943.26236,468.97889l7.25707,23.58547a12.77544,12.77544,0,0,1-12.2105,16.53252h0a12.77544,12.77544,0,0,1-12.70628-14.103l2.84695-27.24942-11.7268-92.58,8.6408-40.73519h21.602Z" transform="translate(-166.03071 -155.75)" fill="#9f616a"/><path d="M770.39935,464.07329,757.64619,485.199a12.77544,12.77544,0,0,0,7.843,18.99758h0a12.77544,12.77544,0,0,0,15.74359-10.60578l3.83732-27.12768,33.79955-86.98367,6.81613-41.65553-26.29294-5.19141Z" transform="translate(-166.03071 -155.75)" fill="#9f616a"/><path d="M962.39556,339.36694l-40.73519-.6172v-70.978l6.27186.91465a29.98433,29.98433,0,0,1,25.52968,26.906Z" transform="translate(-166.03071 -155.75)" fill="#e6e6e6"/><path d="M788.34522,346.77334l40.73518-.6172v-70.978l-6.27185.91465a29.98433,29.98433,0,0,0-25.52968,26.906Z" transform="translate(-166.03071 -155.75)" fill="#e6e6e6"/><path d="M892.34338,200.80558c-13.10909,7.41716-38.302,10.8099-56.78238,5.5548L829.389,174.266h61.10278Z" transform="translate(-166.03071 -155.75)" fill="#2f2e41"/><rect x="40" y="426" width="201" height="162" fill="#e6e6e6"/><rect x="123.5" y="541" width="34" height="46" fill="#005aa0"/><path d="M428.93606,716.81743l-3.47308-2.90485.25671,1.814S426.94693,716.1118,428.93606,716.81743Z" transform="translate(-166.03071 -155.75)" fill="none"/><polygon points="488.026 430.784 493.376 416.518 543.307 387.986 577.189 380.853 488.026 430.784" fill="#005aa0"/><polygon points="304.352 430.784 299.002 416.518 249.071 387.986 215.189 380.853 304.352 430.784" fill="#005aa0"/><polygon points="491.593 434.35 300.785 434.35 284.736 359.454 507.642 359.454 491.593 434.35" fill="#005aa0"/><polygon points="491.593 434.35 300.785 434.35 284.736 359.454 507.642 359.454 491.593 434.35" opacity="0.1" style="isolation:isolate"/><rect x="299.89341" y="429.89163" width="192.59109" height="158.10837" fill="#005aa0"/><rect x="379.18898" y="540.97662" width="34" height="46" fill="#3f3d56"/><polygon points="867.543 588.19 0 588.19 0 586.008 867.939 586.008 867.543 588.19" fill="#3f3d56"/><rect x="356.18896" y="462.25" width="80" height="25" fill="#fff"/><rect x="99.96929" y="462.25" width="80" height="25" fill="#fff"/></svg> \ No newline at end of file diff --git a/assets/img/services/undraw_team_goals_hrii copy.svg b/assets/img/services/undraw_team_goals_hrii copy.svg new file mode 100644 index 0000000000000000000000000000000000000000..9ecc663b22eb770ad6c72bf668bb88e46fd56ebd --- /dev/null +++ b/assets/img/services/undraw_team_goals_hrii copy.svg @@ -0,0 +1 @@ +<svg id="ae50b0f8-1e91-4a07-b038-015d07e00e48" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" width="882.19063" height="486.8907" viewBox="0 0 882.19063 486.8907"><title>team_goals</title><ellipse cx="761.81858" cy="468.54799" rx="120.37205" ry="16.59149" fill="#e6e6e6"/><ellipse cx="120.72327" cy="470.29921" rx="120.72327" ry="16.59149" fill="#e6e6e6"/><path d="M360.08869,429.17856l3.10546,6.41733s17.62635,23.52346,6.73753,27.20873S353.265,440.494,353.265,440.494l-2.87885-3.63847Z" transform="translate(-158.90468 -206.55465)" fill="#ffb8b8"/><path d="M339.7846,307.66472l2.89738-1.22579s3.42881,1.22579,3.42881,6.49761-4.21746,82.24043-4.21746,82.24043l8.43491,42.17457-11.598,2.10873L320.806,400.44879Z" transform="translate(-158.90468 -206.55465)" fill="#575a89"/><path d="M339.7846,307.66472l2.89738-1.22579s3.42881,1.22579,3.42881,6.49761-4.21746,82.24043-4.21746,82.24043l22.66883,36.37557-14.7611,10.54364-28.995-41.64739Z" transform="translate(-158.90468 -206.55465)" fill="#575a89"/><path d="M337.67587,429.971s13.70674,5.27182,12.65237,14.76111-14.7611,198.22051-14.7611,198.22051l4.21746,21.08729-40.06585,1.05437-1.05437-136.013-28.46784,136.013H230.13069l28.46785-239.34074Z" transform="translate(-158.90468 -206.55465)" fill="#2f2e41"/><path d="M334.51278,659.82245l9.48928,9.48928s22.14165,4.21745,16.86983,11.598-60.09878-2.10872-60.09878-2.10872l1.05437-16.86984Z" transform="translate(-158.90468 -206.55465)" fill="#2f2e41"/><path d="M265.97909,659.82245l9.48928,9.48928s22.14165,4.21745,16.86983,11.598-60.09878-2.10872-60.09878-2.10872l1.05437-16.86984Z" transform="translate(-158.90468 -206.55465)" fill="#2f2e41"/><circle cx="145.03152" cy="37.8482" r="25.30475" fill="#ffb8b8"/><polygon points="160.847 52.609 158.738 95.838 126.053 76.86 130.27 52.609 160.847 52.609" fill="#ffb8b8"/><polygon points="124.999 66.316 155.575 88.458 160.847 72.642 170.336 97.947 165.064 143.285 124.999 66.316" fill="#cfcce0"/><path d="M283.90328,269.70759l33.73967,46.392,1.22185-38.75476,10.37615,8.17819V293.958l14.76111,13.70674-5.27183,52.71822-1.05436,62.2075s6.32619,5.27182,4.21746,8.43492S331.34968,441.569,321.8604,441.569s-68.53369-7.38055-68.53369-11.598,2.10873-59.04441,2.10873-59.04441V297.12107l25.30475-18.97856Z" transform="translate(-158.90468 -206.55465)" fill="#575a89"/><polygon points="92.313 238.177 106.02 258.21 111.292 235.014 104.966 230.797 92.313 238.177" fill="#ffb8b8"/><rect x="279.29976" y="501.70563" width="58.52536" height="2.10922" transform="translate(-428.85289 411.54885) rotate(-69.73678)" opacity="0.2"/><path d="M288.64792,219.62528s3.1631-15.81546,21.08729-12.65237l-2.10873,1.05436s16.86983-2.10873,14.76111,7.38055c0,0,13.70673,8.43492,10.54364,17.9242a107.284,107.284,0,0,0-4.21746,16.86983l-3.16309-3.16309s-3.16309-21.08729-22.14166-18.97856c-14.23392,1.58154-20.03292,8.30312-21.51562,13.14661a42.78187,42.78187,0,0,1-2.6049,6.62659l-1.18422.25972S271.77809,224.8971,288.64792,219.62528Z" transform="translate(-158.90468 -206.55465)" fill="#2f2e41"/><path d="M267.03345,296.06671l-9.5982-.44549-1.99981,1.49985a63.11947,63.11947,0,0,0-6.32619,7.38055c-2.10872,3.1631-29.5222,80.1317-29.5222,80.1317a26.86655,26.86655,0,0,0,2.10873,13.70674c3.16309,7.38055,28.46784,51.66386,28.46784,51.66386l18.97856-11.598-25.30475-51.66386,17.9242-25.30475Z" transform="translate(-158.90468 -206.55465)" fill="#575a89"/><polygon points="726.044 420.319 726.044 448.719 743.084 448.719 745.356 420.319 726.044 420.319" fill="#a0616a"/><polygon points="766.372 422.023 773.187 437.927 784.547 442.471 786.819 410.663 777.731 406.12 766.372 422.023" fill="#a0616a"/><path d="M940.04393,642.2097s-.96356-7.1709-10.7056-4.15344l1.61776,21.19315S923.00422,683.105,934.364,680.833s18.17569-23.85559,18.17569-23.85559l7.95187-36.35138L941.289,615.00073Z" transform="translate(-158.90468 -206.55465)" fill="#2f2e41"/><path d="M868.47716,401.38181s-15.90373,120.414-10.22383,134.04571,65.31889,101.67027,65.31889,101.67027l26.12755-34.07942-58.503-73.27075,54.52707-74.97472,4.54392-45.43922Z" transform="translate(-158.90468 -206.55465)" fill="#2f2e41"/><polygon points="772.051 237.994 787.048 245.93 786.819 248.218 749.9 432.815 721.5 427.135 740.244 297.065 772.051 237.994" fill="#2f2e41"/><path d="M883.2449,646.75362,876.429,656.97745S861.66127,681.969,877.565,681.969s22.71961,0,23.85559-5.6799a74.854,74.854,0,0,1,3.408-11.35981l-1.136-14.76774Z" transform="translate(-158.90468 -206.55465)" fill="#2f2e41"/><circle cx="768.64346" cy="39.19782" r="24.99157" fill="#a0616a"/><path d="M907.1005,253.70433s3.40794,19.31167-6.81589,22.71961,12.49579,48.84717,12.49579,48.84717L938.908,282.10385s-6.81588-14.76775-2.272-21.58364Z" transform="translate(-158.90468 -206.55465)" fill="#a0616a"/><path d="M912.7804,305.95944l-6.16652-37.01863-12.00917,7.48313-31.80746,18.17569L875.293,347.99072l-4.54392,32.94344s-5.67991,10.22383-4.54393,14.76775-1.136,6.81588,0,7.95186,57.935,10.22383,74.97472,17.03971,19.31168,9.08785,18.17569,3.40794S945.72384,391.158,945.72384,391.158l10.22382-45.43923,13.63177-39.75932-33.0937-30.54126Z" transform="translate(-158.90468 -206.55465)" fill="#575a89"/><path d="M961.62757,355.94259l7.95186,21.58363-20.44765,37.48736-6.6722,5.18949a6.81483,6.81483,0,0,0-2.40655,7.11365l4.53483,17.23235,11.88576-17.65165s32.41748-39.14738,31.2815-49.3712-4.54392-26.12756-4.54392-26.12756Z" transform="translate(-158.90468 -206.55465)" fill="#a0616a"/><path d="M849.16548,337.7669l-5.6799,28.39951L821.902,419.5575s-23.85559,22.71961-12.49579,27.26354,24.99158-22.71962,24.99158-22.71962l27.26353-51.11912,10.22383-30.67148Z" transform="translate(-158.90468 -206.55465)" fill="#a0616a"/><path d="M957.08364,303.68748l9.1443-.821,3.35149,3.093s19.31167,43.16726,17.03971,47.71118-24.99157,6.81589-24.99157,6.81589L952.53972,333.223Z" transform="translate(-158.90468 -206.55465)" fill="#575a89"/><path d="M870.74912,295.73561l-5.63566-2.45952-2.31621,1.32354s-22.71961,45.43923-17.03971,47.71119,32.94344,5.6799,32.94344,5.6799Z" transform="translate(-158.90468 -206.55465)" fill="#575a89"/><polygon points="735.7 328.597 728.775 376.651 722.329 366.75 735.7 328.597" opacity="0.2"/><path d="M943.79238,230.95184s2.51693,6.625-9.16564,3.2288c0,0-4.62767,2.25616-4.35853-1.59445,0,0-6.37956,6.00314-7.59317,2.04889s-4.538.97263-4.538.97263l-2.51694-6.625-3.23463,3.64334-10.37925-.72546s-1.17123-25.878,34.23532-20.82366,15.05729,44.50353,15.05729,44.50353.22373-7.32083-3.01091-3.67749S943.79238,230.95184,943.79238,230.95184Z" transform="translate(-158.90468 -206.55465)" fill="#2f2e41"/><path d="M368.50886,434.98376V544.06509H824.17374V434.98376Zm273.00855,90.7791H396.6943V510.389H641.51741Zm0-28.55149H396.6943V481.83749H641.51741Zm154.47088-28.55149H396.6943V453.286h399.294Z" transform="translate(-158.90468 -206.55465)" fill="#005aa0"/><polygon points="460.743 180.28 399.248 180.28 399.248 118.784 440.977 118.784 440.977 120.249 400.712 120.249 400.712 178.816 459.279 178.816 459.279 149.532 460.743 149.532 460.743 180.28" fill="#3f3d56"/><path d="M588.58358,370.7943c-1.4211-4.19614-19.242-18.45992-8.3218-20.8574l8.95523,11.94078,41.17217-41.17145,4.14088,4.14088Z" transform="translate(-158.90468 -206.55465)" fill="#005aa0"/></svg> \ No newline at end of file diff --git a/assets/img/services/undraw_version_control_9bpv.svg b/assets/img/services/undraw_version_control_9bpv.svg new file mode 100644 index 0000000000000000000000000000000000000000..2adb98ddfe3e8321df9ec17c1b48c5a9b2ede904 --- /dev/null +++ b/assets/img/services/undraw_version_control_9bpv.svg @@ -0,0 +1 @@ +<svg id="b543c902-2711-464d-9f40-b15eb324e31e" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1038.23" height="693.31" viewBox="0 0 1038.23 693.31"><defs><linearGradient id="be976a09-f639-4984-bf14-ee296c482822" x1="320.96" y1="796.01" x2="320.96" y2="284.81" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="gray" stop-opacity="0.25"/><stop offset="0.54" stop-color="gray" stop-opacity="0.12"/><stop offset="1" stop-color="gray" stop-opacity="0.1"/></linearGradient></defs><title>version control</title><path d="M696.13,214.75c-64.72-2.25-126.36-23.14-185.23-46s-117.16-48.19-180.33-60.3c-40.63-7.79-87.09-8.89-119.83,12.89-31.5,21-41.68,57.15-47.16,90.72-4.11,25.27-6.54,51.85,4.75,75.5,7.83,16.42,21.74,30.22,31.36,45.95,33.46,54.72,9.81,122.2-26.46,175.63-17,25.06-36.74,49-49.87,75.66s-19.2,57.25-7.72,84.47c11.39,27,38.52,47.24,67.9,61.49,59.69,28.94,130,37.23,198.62,41.92,151.82,10.39,304.46,5.89,456.68,1.39,56.34-1.67,112.92-3.36,168.34-12.07,30.78-4.84,62.56-12.52,84.9-31,28.36-23.53,35.39-63.38,16.39-92.88-31.88-49.49-120-61.79-142.31-114.9-12.27-29.23.33-61.8,18.15-88.91,38.24-58.17,102.33-109.19,105.71-175.68,2.32-45.66-28.49-91.39-76.13-113-49.94-22.65-119.18-19.8-156,17.69C819.93,201.88,753.27,216.73,696.13,214.75Z" transform="translate(-80.89 -103.35)" fill="#005aa0" opacity="0.1"/><path d="M529.62,754.84c-1-3.62-2-7.28-4-10.43a36.53,36.53,0,0,0-6.55-7.17c-7.25-6.58-16.15-13.26-25.76-11.6a34.39,34.39,0,0,0-8.54,3.12c-1.4.65-2.81,1.3-4.25,1.85a21.17,21.17,0,0,1-12.82,1.12c-2.2-.59-4.25-1.65-6.42-2.31a20.35,20.35,0,0,0-3.15-.68,53.64,53.64,0,0,0,6.09-3.21C475,718.93,483.6,707,482.4,694.24c-.41-4.29-1.88-8.4-3.34-12.45l-3.84-10.62c-1.66-4.6-3.38-9.29-6.41-13.11-3.37-4.26-8.17-7.15-13.13-9.3-10.65-4.63-22.29-6.26-33.78-7.84l-.8-.11V516.68a8,8,0,0,0-8-8H398q-1-6.12-2-12.22c-1.9-11.61-3.87-23.43-9.22-33.88-3.5-6.84-9.07-13.37-16.58-14.71a16.08,16.08,0,0,1-4.31-1c-2.2-1.08-3.4-3.48-5.09-5.25-4.36-4.57-11.45-4.64-17.29-7-5.16-2.05-9.38-5.91-14.08-8.88s-10.54-5.08-15.74-3.15c0,.38-.07.76-.11,1.13l-3.34-1.54c-3.6-1.67-7.27-3.38-10.16-6.12-3.71-3.5-5.69-8.14-7.23-13.07-.16-.51-.31-1-.47-1.55a46.43,46.43,0,0,0,12.44-23.75l.81,2.63a17.45,17.45,0,0,0,.64,1.74,6.86,6.86,0,0,0,2,2.83,3.55,3.55,0,0,0,.84.49,3.5,3.5,0,0,0,.86.22,3.2,3.2,0,0,0,1.24-.09,4.73,4.73,0,0,0,3-2.78,6,6,0,0,0,.35-1.22,6.31,6.31,0,0,0,.07-.76c0-.08,0-.16,0-.24s0-.35,0-.52,0-.18,0-.28,0-.33-.05-.5l0-.26c0-.2-.06-.4-.1-.59s0-.11,0-.16c-.05-.25-.11-.51-.16-.76,0-.06,0-.13,0-.19s-.09-.41-.14-.62-.07-.27-.1-.41l0-.06h0c-.1-.4-.19-.79-.28-1.19a34.38,34.38,0,0,1-.55-10.56,113.08,113.08,0,0,1,2.86-15.35l.21-.91c.08-.35.16-.7.23-1.06.16-.72.32-1.44.47-2.17v0l.36-1.84.27-1.64,0-.21A47.41,47.41,0,0,0,318,330h0c-.46-5.23-2.08-10.18-5.63-14.12-2.51-2.79-5.82-4.85-8.15-7.78-2.18-2.74-3.41-6.12-5.67-8.81-6.24-7.45-22.26-13.19-32.09-14.19-11.26-1.14-29.45,1.74-38.53,8.39-3.36,2.45-5.66,6-8,9.36-4.3,6.25-9.18,12.49-16.07,16-2.6,1.32-5.58,2.32-7.31,4.62a12.49,12.49,0,0,0-1.95,5.18,102.71,102.71,0,0,0-2.06,19.78h0c0,.83,0,1.66,0,2.5a18.23,18.23,0,0,0,1.56,7.23c.16.34.34.67.53,1l.12.21a39.78,39.78,0,0,1,3.2,5.45,7.22,7.22,0,0,1,.49,1.66,12.24,12.24,0,0,1-.28,4.38h0c0,.22-.09.44-.13.66l-.09.43c0,.15,0,.3-.08.44-.08.43-.15.86-.21,1.28h0a9,9,0,0,0,.22,3.46,4.55,4.55,0,0,0,2.22,3,6.5,6.5,0,0,0,1.8.56c.63.11,1.27.18,1.89.32a9.33,9.33,0,0,1,2.29.85A9.22,9.22,0,0,1,208,383.1a11,11,0,0,1,.83.84,14,14,0,0,1,1.42,1.94q.32.53.6,1.08a24.67,24.67,0,0,1,1.71,4.52c.26.93.48,1.87.67,2.81.09.42.17.84.24,1.25s.14.83.2,1.24h0a2.91,2.91,0,0,0,.8-.16c1.47-.53,2.29-2.24,2.75-3.9.08-.28.15-.55.21-.82.23-1,.47-2.1.7-3.15a46.37,46.37,0,0,0,18.25,20.1c.28.83.55,1.65.79,2.49,1.31,4.53,1.94,9.27-.33,13.23-1.62,2.81-4.34,4.54-7.38,5.74a4.88,4.88,0,0,0-1.65-1.4c-2.63-1.32-5.79.28-8,2.25-4,3.62-7.26,8.81-12.52,10-1.9.44-4,.35-5.58,1.51a13,13,0,0,0-2.59,3.4,11.92,11.92,0,0,1-10.23,5.1c-1.83-.09-4-.51-5.25.83-.93,1-1,2.58-2,3.53-1.34,1.32-3.54.68-5.41.6-3.56-.15-6.87,2.15-8.9,5.1s-3,6.48-4,10l0,.06a7.15,7.15,0,0,0-.73.61,10.55,10.55,0,0,0-2.21,3.58,170.87,170.87,0,0,0-14.1,58.18,6,6,0,0,1-.64,2.82,13.87,13.87,0,0,1-1.47,1.6,5.61,5.61,0,0,0,.93,8,6.3,6.3,0,0,1,1.07-1.42c-.11.46-.21.91-.28,1.32a35.49,35.49,0,0,0-.11,8.8q1.42,20.84,2.87,41.65c.27,3.93.54,7.85.9,11.77q1.05,11.38,3,22.67c.06.34.13.69.22,1-8.15,2.59-15.4,7.27-18.45,15.08-1.06,2.7-1.54,5.64-2.84,8.23-1.43,2.84-3.78,5.11-5.34,7.89-2.69,4.78-2.81,10.64-1.83,16,1.89,10.45,7.54,19.79,15,27.39-.33,0-.67,0-1,0a15.64,15.64,0,0,0-6.83,2.45c-15.78,9.22-24.8,29-21.51,47.06.65,3.53,1.78,7.11,4.14,9.8a15.51,15.51,0,0,0,7.28,4.46,25.29,25.29,0,0,0,5.37,1c12.3,1,24.21-4.7,36.54-5.18a98,98,0,0,1,12.23.57q8.91.74,17.85.94c9.69.23,15.14-2.35,21.32-9.59a26.1,26.1,0,0,0,3.77-5.94c5.26-.3,11.07-.76,15.27-1.1l.06.58c.23,2,.58,4.3,2.18,5.56a7.61,7.61,0,0,0,3,1.23c10.1,2.48,20.32,5,30.72,5a129.71,129.71,0,0,0,14.59-1.12l18.27-2.11a91,91,0,0,1,15.7,3.42c5.28,1.79,10.21,4.45,15.37,6.56,12,4.86,24.9,6.6,37.68,8.3,2.18.29,4.68.49,6.29-1,2.08-2,1.39-5.34.8-8.14-.24-1.15-.42-2.3-.56-3.46a175.25,175.25,0,0,1,25.24,8.76l1.43.63c.42,2.18,2.43,3.92,4.36,6.27a16,16,0,0,0,2.21,2.74,7.37,7.37,0,0,0,3.17,1.14,147.82,147.82,0,0,0,40.93,1.85,41.86,41.86,0,0,1,8.44-.29,36.58,36.58,0,0,1,6.1,1.37l11.57,3.32c8.53,2.44,17.26,4.91,26.11,4.36a33.4,33.4,0,0,0,5.33-.77c7-1.62,13.52-5.53,16.88-11.82C534.37,774.76,532.18,764.24,529.62,754.84Z" transform="translate(-80.89 -103.35)" fill="url(#be976a09-f639-4984-bf14-ee296c482822)"/><path d="M205.91,752.89c-2.11-4.8-4.11-10.32-2-15.12a12.85,12.85,0,0,1,6.65-6.25,32,32,0,0,1,9-2.22,125.61,125.61,0,0,1,29.26-.4c.71,5.62-.79,11.32-2.08,16.75-1.17,5-1.84,5.74-7,6C236.4,751.83,206.7,754.66,205.91,752.89Z" transform="translate(-80.89 -103.35)" fill="#fbbebe"/><ellipse cx="214.07" cy="577.16" rx="143" ry="40" fill="#464353"/><ellipse cx="214.07" cy="577.16" rx="143" ry="40" opacity="0.1"/><path d="M320.6,469.35a44.49,44.49,0,0,1-22.94,20.84,57.58,57.58,0,0,1-18.21,3.46c-6.79.31-13.72-.13-20.1-2.45-8.56-3.1-15.67-9.44-21-16.83s-9-15.83-12.19-24.34c-1.68-4.43-3.28-9.15-2.49-13.83,5.15-1.17,10.79-2.89,13.45-7.46,2.27-3.92,1.64-8.62.33-13.1-.37-1.27-.8-2.53-1.23-3.74-1-2.9-4.45-8.41-2-10.89,1.53-1.57,7.94-2.37,10.15-3.39,6.81-3.14,13.09-7.68,20.57-9.17,6.47-1.29,13.15-.08,19.61,1.26a6.45,6.45,0,0,1,2.42.87,5.82,5.82,0,0,1,1.8,2.7c1.84,4.48,2.92,9.43,4.4,14.1,1.54,4.89,3.52,9.48,7.23,12.95,2.89,2.71,6.57,4.41,10.17,6.06l8.86,4.06a11.65,11.65,0,0,1,4.19,2.71,10.61,10.61,0,0,1,2,5.44A50.82,50.82,0,0,1,320.6,469.35Z" transform="translate(-80.89 -103.35)" fill="#fbbebe"/><path d="M293.13,407.38a46,46,0,0,1-55.67,8.26c-.37-1.27-.8-2.53-1.23-3.74-1-2.9-4.45-8.41-2-10.89,1.53-1.57,7.94-2.37,10.15-3.39,6.81-3.14,13.09-7.68,20.57-9.17,6.47-1.29,13.15-.08,19.61,1.26a6.45,6.45,0,0,1,2.42.87,5.82,5.82,0,0,1,1.8,2.7C290.57,397.76,291.65,402.71,293.13,407.38Z" transform="translate(-80.89 -103.35)" opacity="0.1"/><circle cx="179.07" cy="270.16" r="46" fill="#fbbebe"/><path d="M400.11,522.8l-3.78-22.9c-1.91-11.49-3.88-23.2-9.22-33.55-3.51-6.78-9.08-13.24-16.59-14.58a16.05,16.05,0,0,1-4.32-1c-2.2-1.06-3.4-3.44-5.09-5.2-4.36-4.52-11.46-4.59-17.3-6.89-5.16-2-9.38-5.85-14.08-8.79s-10.55-5-15.75-3.12c-.84,8.95-1.73,18.1-5.53,26.25a39.28,39.28,0,0,1-59.26,14.76c-8.91-6.71-14.62-17.06-17.28-27.89-.65-2.64-1.39-5.67-3.82-6.88-2.63-1.32-5.79.28-8,2.22-4,3.59-7.27,8.73-12.53,9.94-1.9.44-4,.35-5.58,1.5a12.7,12.7,0,0,0-2.6,3.37,12,12,0,0,1-10.23,5.06c-1.83-.09-4-.51-5.25.82-.93,1-1,2.56-2,3.49-1.35,1.31-3.54.67-5.42.6-3.56-.15-6.87,2.13-8.91,5s-3,6.42-4,9.86c10.93,24.34,20.93,48.71,31.86,73.05a6.23,6.23,0,0,1,.79,3,7.31,7.31,0,0,1-1.36,3c-5.36,8.61-5.19,19.44-4.6,29.56s1.31,20.81-3.21,29.88c-1.23,2.49-2.83,4.77-4,7.26-2.74,5.64-3.73,23.68-2.13,29.74H407c-4.31-11.85-2.67-35.63-1.77-48.21.63-8.8-1-17.59-1.7-26.39C402,557.79,403.08,540.74,400.11,522.8Z" transform="translate(-80.89 -103.35)" fill="#005aa0"/><path d="M146.25,549a35.4,35.4,0,0,0-.12,8.73L149,599c.27,3.89.54,7.77.9,11.65.69,7.53,1.72,15,3,22.46A4,4,0,0,0,157,637c12.65,2.68,25.72,2.57,38.63,1.84,19.7-1.1,39.37-3.61,59.1-3.18,5.08.11,11,0,14.08-4s1.29-10.47-2.73-13.7-9.48-4-14.64-4c-6.83-.07-13.66.9-20.47.5-6.25-.37-12.36-1.88-18.42-3.39l-17-4.23c.65-5.15,2.61-10,4.47-14.89,3.34-8.67,6.46-17.63,6.52-26.92s-3.44-19.06-11.05-24.38c-6.26-4.37-14.32-5.18-21.95-5-5.55.16-15.14-1.17-20.21,1C149.32,538.41,147,545.07,146.25,549Z" transform="translate(-80.89 -103.35)" fill="#fbbebe"/><path d="M411.68,643.36c3.33-1.27,7-.81,10.57-.33,11.49,1.57,23.15,3.18,33.8,7.77,5,2.14,9.76,5,13.14,9.21,3,3.79,4.75,8.43,6.41,13l3.84,10.52c1.46,4,2.94,8.08,3.35,12.33,1.2,12.59-7.41,24.46-18.24,31s-23.58,8.87-36,11.31-24.89,5.14-37.26,8a150,150,0,0,1-17.53,3.45c-13.24,1.5-27.08-.71-39.66,3.67-5,1.75-9.91,4.35-15.1,5.56a93.93,93.93,0,0,1-10.44,1.59l-23.81,2.72a129.89,129.89,0,0,1-14.6,1.12c-10.4,0-20.63-2.46-30.73-4.92a7.77,7.77,0,0,1-3-1.21c-1.6-1.26-1.95-3.49-2.18-5.51q-1.53-13.41-2.68-26.85c-.24-2.91-.42-6.06,1.17-8.51,2-3,5.9-3.94,9.46-4.52a246.88,246.88,0,0,1,45.68-3.17c5.81-5.81,15.39-5.84,23-9a68.39,68.39,0,0,0,8.11-4.41,106,106,0,0,1,44.53-14.07,41.45,41.45,0,0,0,9.11-1.3c5.89-1.83,11.26-6.81,17.31-5.59.75-2.07,1.27-4.84,3-6.26.86-.73,1.92-1.22,2.71-2,1.67-1.69,1.82-4.35,1.57-6.71s-.81-4.78-.2-7.08a9.79,9.79,0,0,1,1.11-2.47C401.12,645.52,405.65,642.86,411.68,643.36Z" transform="translate(-80.89 -103.35)" fill="#464353"/><path d="M411.68,643.36c3.33-1.27,7-.81,10.57-.33,11.49,1.57,23.15,3.18,33.8,7.77,5,2.14,9.76,5,13.14,9.21,3,3.79,4.75,8.43,6.41,13l3.84,10.52c1.46,4,2.94,8.08,3.35,12.33,1.2,12.59-7.41,24.46-18.24,31s-23.58,8.87-36,11.31-24.89,5.14-37.26,8a150,150,0,0,1-17.53,3.45c-13.24,1.5-27.08-.71-39.66,3.67-5,1.75-9.91,4.35-15.1,5.56a93.93,93.93,0,0,1-10.44,1.59l-23.81,2.72a129.89,129.89,0,0,1-14.6,1.12c-10.4,0-20.63-2.46-30.73-4.92a7.77,7.77,0,0,1-3-1.21c-1.6-1.26-1.95-3.49-2.18-5.51q-1.53-13.41-2.68-26.85c-.24-2.91-.42-6.06,1.17-8.51,2-3,5.9-3.94,9.46-4.52a246.88,246.88,0,0,1,45.68-3.17c5.81-5.81,15.39-5.84,23-9a68.39,68.39,0,0,0,8.11-4.41,106,106,0,0,1,44.53-14.07,41.45,41.45,0,0,0,9.11-1.3c5.89-1.83,11.26-6.81,17.31-5.59.75-2.07,1.27-4.84,3-6.26.86-.73,1.92-1.22,2.71-2,1.67-1.69,1.82-4.35,1.57-6.71s-.81-4.78-.2-7.08a9.79,9.79,0,0,1,1.11-2.47C401.12,645.52,405.65,642.86,411.68,643.36Z" transform="translate(-80.89 -103.35)" opacity="0.05"/><path d="M215.11,759.07c-6.19,7.17-11.64,9.73-21.33,9.5q-8.94-.21-17.86-.93a100.2,100.2,0,0,0-12.24-.57c-12.34.48-24.25,6.13-36.56,5.14a25.92,25.92,0,0,1-5.37-1,15.63,15.63,0,0,1-7.29-4.42c-2.36-2.67-3.49-6.21-4.14-9.71-3.29-17.94,5.73-37.48,21.52-46.61a15.78,15.78,0,0,1,6.84-2.43,16.21,16.21,0,0,1,6.92,1.52l.15.06a52.33,52.33,0,0,1,17.14,11.44,9.66,9.66,0,0,0,2.62,2.11,9,9,0,0,0,3.09.58l13.14.83a31.14,31.14,0,0,1,6.6.91,52.46,52.46,0,0,1,6.94,3c7.07,3.16,14.91,4,22.55,5.22a3.37,3.37,0,0,1,2,.8,3.13,3.13,0,0,1,.62,1.3A25.51,25.51,0,0,1,215.11,759.07Z" transform="translate(-80.89 -103.35)" fill="#3f3d56"/><path d="M145.75,709.63a78.9,78.9,0,0,0-13.15,16.44,82.28,82.28,0,0,0-10.74,32.54,60.4,60.4,0,0,0-.11,12.61,15.63,15.63,0,0,1-7.29-4.42c-2.36-2.67-3.49-6.21-4.14-9.71-3.29-17.94,5.73-37.48,21.52-46.61a15.78,15.78,0,0,1,6.84-2.43,16.21,16.21,0,0,1,6.92,1.52Z" transform="translate(-80.89 -103.35)" opacity="0.1"/><path d="M400.24,734.51c7.35-.2,15.6-.57,21,4.38,5.15,4.68,5.83,12.4,6.17,19.35l.39,8.07c.12,2.46.22,5-.77,7.28-1.76,4-6.59,5.93-11,5.7s-8.46-2.16-12.49-3.9a175.7,175.7,0,0,0-34-10.71q.57-8.37,1.9-16.66c.61-3.83.71-10.24,3.27-13.42,2.71-3.36,6.24-1.54,9.92-.92A79.63,79.63,0,0,0,400.24,734.51Z" transform="translate(-80.89 -103.35)" fill="#fbbebe"/><path d="M206,653.42c0,1-1.57,0-1.71-1.07-1.1-8.09-7.52-14.76-15-18s-16-3.41-24.1-2.64c-12.25,1.16-26,5.85-30.48,17.3-1.06,2.68-1.54,5.58-2.84,8.15-1.44,2.82-3.79,5.07-5.35,7.81-2.69,4.74-2.8,10.55-1.83,15.91,2.61,14.3,12.39,26.53,24.24,35s25.7,13.53,39.51,18.09a685.19,685.19,0,0,0,112,26.75c6.16.93,12.38,1.79,18.28,3.77,5.28,1.77,10.22,4.42,15.38,6.5,12,4.82,24.91,6.54,37.7,8.23,2.18.28,4.68.48,6.29-1,2.08-1.93,1.39-5.29.8-8.06A43.35,43.35,0,0,1,384,739.4c2.14-3.6,4.92-7.29,4.52-11.46-.48-4.86-5.32-8.3-10.14-9.08s-9.72.37-14.56,1c-1.67.22-3.49.36-4.95-.49a9.89,9.89,0,0,1-1.94-1.72,21.93,21.93,0,0,0-25.54-3.57c-1.79,1-4.5-1.23-6.36-2.07L304,702.49c-24.16-10.93-48.44-21.91-74-28.83a15.54,15.54,0,0,1-5.7-2.37c-1.27-1-2.18-2.36-3.35-3.47-2.55-2.41-6.1-3.37-9.16-5.08S205.3,656.85,206,653.42Z" transform="translate(-80.89 -103.35)" fill="#464353"/><path d="M530.21,784.11c-3.36,6.23-9.88,10.11-16.88,11.71a33.5,33.5,0,0,1-5.34.76c-8.85.55-17.59-1.9-26.12-4.32L470.29,789a36.55,36.55,0,0,0-6.1-1.36,41.86,41.86,0,0,0-8.44.29,149.59,149.59,0,0,1-41-1.84,7.23,7.23,0,0,1-3.17-1.13,15.75,15.75,0,0,1-2.21-2.71c-3.15-3.79-6.54-6-2.81-11,2.15-2.9,6.14-4.35,7.81-7.68s.6-8.06-.39-11.5c-1.35-4.75-5.79-6.8-7.38-11.16-1.19-3.29.81-7.11,3.82-8.9s6.73-1.93,10.2-1.47,6.87,1.44,10.36,1.71c10.26.82,20.75-4.47,30.6-1.49,2.17.66,4.22,1.71,6.42,2.29a21.35,21.35,0,0,0,12.83-1.11c1.44-.54,2.85-1.19,4.25-1.83a34.23,34.23,0,0,1,8.55-3.09c9.61-1.65,18.52,5,25.77,11.49a36.44,36.44,0,0,1,6.55,7.1c2,3.12,3.06,6.75,4,10.33C532.6,765.19,534.79,775.61,530.21,784.11Z" transform="translate(-80.89 -103.35)" fill="#3f3d56"/><path d="M530.21,784.11c-3.36,6.23-9.88,10.11-16.88,11.71a32.69,32.69,0,0,0,3.55-17.16c-.6-9.51-4.78-18.47-10.11-26.37a93.4,93.4,0,0,0-11.14-13.57c-3.18-3.2-7.09-5.74-10.51-8.67a34.23,34.23,0,0,1,8.55-3.09c9.61-1.65,18.52,5,25.77,11.49a36.44,36.44,0,0,1,6.55,7.1c2,3.12,3.06,6.75,4,10.33C532.6,765.19,534.79,775.61,530.21,784.11Z" transform="translate(-80.89 -103.35)" opacity="0.1"/><path d="M163,475.61a10.35,10.35,0,0,0-2.22,3.55,167.86,167.86,0,0,0-14.1,57.62,5.76,5.76,0,0,1-.65,2.79,12.21,12.21,0,0,1-1.47,1.59,5.52,5.52,0,0,0,.94,8c1.65-3.11,5.6-4.12,9.11-4.39,16.81-1.33,33.23,6.49,50.09,5.9-1.19-4.11-2.9-8.06-3.87-12.22-4.29-18.47,6.41-38.58-.15-56.37-1.31-3.56-3.5-7.06-6.95-8.62a18.51,18.51,0,0,0-4.45-1.18c-4.26-.77-12.74-4.06-16.86-2.74-1.52.49-2.12,1.92-3.38,2.78C167.13,473.55,164.59,474,163,475.61Z" transform="translate(-80.89 -103.35)" fill="#005aa0"/><rect x="117.57" y="408.66" width="223" height="142" rx="7.97" fill="#3f3d56"/><circle cx="228.57" cy="479.66" r="6" fill="#fff"/><path d="M228.18,298.85c-3.36,2.43-5.66,5.92-8,9.27-4.31,6.19-9.19,12.37-16.08,15.82-2.61,1.31-5.59,2.3-7.32,4.58a12.34,12.34,0,0,0-1.95,5.13,101.65,101.65,0,0,0-2.06,19.6c0,3.28.14,6.66,1.59,9.64,1.37,2.8,3.84,5.17,4.35,8.22.39,2.38-.49,4.75-.8,7.14s.23,5.22,2.44,6.36a14.79,14.79,0,0,0,3.7.87c6.65,1.48,8.88,9.28,9.89,15.73,2.26-.13,3.28-2.72,3.75-4.83l6.93-30.81c.75-3.34,2-7.21,5.33-8.38,2.23-.77,4.67-.05,7,.15,9.15.75,16.89-6.32,25.84-8.27a33,33,0,0,1,8.71-.58c7.06.35,15.27,3.25,16.77,9.84.25,1.07.4,2.35,1.4,2.88s2.05.08,3.1,0c4.48-.45,7.12,4.59,8.41,8.71l4.7,15c.7,2.27,1.88,4.94,4.34,5.23,2.27.28,4.2-1.87,4.54-4s-.4-4.34-.89-6.48c-2.21-9.85,1.17-19.93,3.23-29.8s2.43-21.21-4.48-28.81c-2.51-2.75-5.81-4.8-8.15-7.7-2.18-2.72-3.41-6.06-5.67-8.73-6.25-7.37-22.28-13.06-32.11-14C255.46,289.41,237.26,292.26,228.18,298.85Z" transform="translate(-80.89 -103.35)" fill="#3f3d56"/><g opacity="0.1"><path d="M310.26,383.15c-2.46-.3-3.64-3-4.34-5.23q-2.35-7.51-4.7-15c-1.29-4.13-3.93-9.17-8.41-8.71-1.05.11-2.18.52-3.1,0s-1.15-1.81-1.4-2.88c-1.5-6.6-9.71-9.49-16.77-9.84a33.43,33.43,0,0,0-8.71.57c-8.95,2-16.69,9-25.84,8.27-2.36-.19-4.8-.91-7-.14-3.37,1.16-4.58,5-5.33,8.38l-6.93,30.8c-.47,2.12-1.49,4.71-3.75,4.83-1-6.44-3.24-14.24-9.89-15.72a15.72,15.72,0,0,1-3.7-.87,4.34,4.34,0,0,1-1.93-2.15c-.18.93-.39,1.86-.51,2.79-.3,2.38.23,5.22,2.44,6.36a14.79,14.79,0,0,0,3.7.87c6.65,1.48,8.88,9.28,9.89,15.73,2.26-.13,3.28-2.72,3.75-4.83l6.93-30.81c.75-3.34,2-7.21,5.33-8.38,2.23-.77,4.67-.05,7,.15,9.15.75,16.89-6.32,25.84-8.27a33,33,0,0,1,8.71-.58c7.06.35,15.27,3.25,16.77,9.84.25,1.07.4,2.35,1.4,2.88s2.05.08,3.1,0c4.48-.45,7.12,4.59,8.41,8.71q2.34,7.51,4.7,15c.7,2.27,1.88,4.94,4.34,5.23,2.27.28,4.2-1.87,4.54-4a13.58,13.58,0,0,0-.6-5.31A4.13,4.13,0,0,1,310.26,383.15Z" transform="translate(-80.89 -103.35)"/><path d="M198.72,364.11c-.51-3.05-3-5.42-4.35-8.22a16.45,16.45,0,0,1-1.48-6c0,1.12-.1,2.24-.11,3.37,0,3.28.14,6.66,1.59,9.64,1.11,2.27,2.94,4.27,3.86,6.58A15.06,15.06,0,0,0,198.72,364.11Z" transform="translate(-80.89 -103.35)"/><path d="M317.14,342.83c-1.82,8.72-4.66,17.6-3.78,26.34.57-6.45,2.45-12.94,3.78-19.34A51,51,0,0,0,318.3,335,61.14,61.14,0,0,1,317.14,342.83Z" transform="translate(-80.89 -103.35)"/></g><g opacity="0.8"><line x1="330.04" y1="290.49" x2="955.1" y2="290.49" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="3"/><path d="M466.46,393.83s29.89,4.15,14.41-27.92,42-26,42-26" transform="translate(-80.89 -103.35)" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="3"/><path d="M665.53,393.83s29.89-4.14,14.41,27.93,42,26,42,26" transform="translate(-80.89 -103.35)" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="3"/><path d="M952.16,393.83s-29.9-4.14-14.41,27.93-42,26-42,26" transform="translate(-80.89 -103.35)" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="3"/><line x1="814.86" y1="344.4" x2="649.93" y2="344.4" fill="none" stroke="#3f3d56" stroke-miterlimit="10" stroke-width="3"/><circle cx="330.04" cy="290.49" r="18.25" fill="#005aa0"/><circle cx="442.29" cy="236.3" r="18.25" fill="#3acc6c"/><circle cx="442.29" cy="290.49" r="18.25" fill="#005aa0"/><circle cx="514.73" cy="290.49" r="18.25" fill="#005aa0"/><circle cx="641.35" cy="344.13" r="18.25" fill="#ff6584"/><circle cx="737.03" cy="344.13" r="18.25" fill="#ff6584"/><circle cx="732.04" cy="290.49" r="18.25" fill="#005aa0"/><circle cx="950.48" cy="290.49" r="18.25" fill="#005aa0"/><circle cx="861.12" cy="290.49" r="18.25" fill="#005aa0"/><rect x="299.38" y="122.66" width="61.23" height="42.2" fill="#005aa0"/><rect x="411.9" y="122.66" width="61.23" height="42.2" fill="#3acc6c"/><rect x="610.48" y="122.66" width="61.23" height="42.2" fill="#ff6584"/></g><g opacity="0.1"><path d="M167.24,402.71S92.47,371.27,82.67,428c0,0-5.11,8.84,2,16.14,0,0,1.53-3.92,8.75.13a37.17,37.17,0,0,0,8.16,3.32,18.36,18.36,0,0,0,11.62-.62h0s24.59-1.33,45.27-33.5c0,0,8.87-5.48,9.31-7.54l-14.82,1s1.14,10.85-5,17.36c0,0,5.44-16.84,2.83-17.31-.53-.1-7.83.86-7.83.86s1.89,18.87-8,28.63c0,0,9.18-19.19,5.19-28.29l-10.94,2.11s3,19.85-7.82,31.39c0,0,8.9-20.4,5.46-30.76l-10.47,3.52s2.52,19.41-6.53,29c0,0,7.9-24.61,4.18-28,0,0-9.42,3.82-11.43,6,0,0,1.49,14-4.26,19.05,0,0,3.53-17,1.78-17.7,0,0-10.94,8.24-14.28,15.35,0,0,4.16-10.86,12.91-17,0,0-7.35-1.24-13,1.83,0,0,3.78-7.21,15.65-3.79,0,0,8.79-6.09,10.55-6,0,0-11.23-5-19.34-4.38,0,0,8.7-5,22.08,3.35l10.45-3.77s-14.5-7.43-21.76-7.4c0,0,9.66-3.74,24.47,6.66l10.7-2.18s-12-7.35-20.09-9.06c0,0,9.7-1.54,23.18,8.55l7.31-.61s-8.85-5.22-11.53-6.49-2.56-2.09-2.56-2.09A34.89,34.89,0,0,1,152,403.94S167.18,403.64,167.24,402.71Z" transform="translate(-80.89 -103.35)" fill="#005aa0"/></g><g opacity="0.1"><path d="M164.48,346.35S138,285.08,99.85,313.18c0,0-8.06,2.34-8,10.7,0,0,3.14-1.46,5.13,5.07a30.1,30.1,0,0,0,3,6.61,15,15,0,0,0,7.25,6.25h0s15.37,13.22,46,5.89c0,0,8.4,1.79,9.83.83l-9.36-7.87s-5.51,7.1-12.89,7.44c0,0,12.83-6.9,11.55-8.67-.26-.36-5.15-3.94-5.15-3.94s-9.62,12.28-21,12.47c0,0,16.39-6.18,19.2-13.85l-7.7-5S128,342.62,115,343.32c0,0,16.91-7.05,20.77-15.17l-8.23-3.87s-9.56,13-20.37,13.49c0,0,18.72-10.12,18.43-14.25,0,0-7.77-3.1-10.24-2.92,0,0-7.07,9.15-13.38,8.89,0,0,11.79-8.09,11.15-9.5,0,0-11.2-1.34-17.23,1,0,0,8.66-4.08,17.35-2.74,0,0-3.66-4.93-8.75-6.3,0,0,6.36-2.13,11.46,6.65,0,0,8.68,1.4,9.7,2.44,0,0-3.81-9.39-9-13.62,0,0,8,2,11.2,14.57l8.36,3.71s-4.38-12.68-8.72-16.79c0,0,7.87,3.28,10.75,17.9l7.6,4.79s-2.94-11.2-6.77-16.83c0,0,6.64,4.62,8.89,18.29l4.7,3.8s-2.29-8.14-3.16-10.42-.33-2.7-.33-2.7a28.65,28.65,0,0,1,5.49,14.68S163.91,346.86,164.48,346.35Z" transform="translate(-80.89 -103.35)" fill="#005aa0"/></g></svg> \ No newline at end of file diff --git a/hifis-services-for-you/index.md b/hifis-services-for-you/index.md index 5df58bf3564fa3e90beb09302b54f26830c1c83a..68840688cb4d3dab10eb84824ebba5ce4a301af8 100644 --- a/hifis-services-for-you/index.md +++ b/hifis-services-for-you/index.md @@ -19,7 +19,7 @@ To this aim, since summer 2019, we are setting up the HIFIS platform, that is bu - a stable, high-bandwidth **network infrastructure** connecting all Helmholtz centres, - [**Software services**](#software-services) to provide you with a common platform, [training]({% link events.md %}) and - [support]({% link services/consulting.html%}) for high-quality sustainable software development. + [support]({% link services/software/consulting.html%}) for high-quality sustainable software development. ### Helmholtz Cloud The cloud team is currently preparing the Initial Service Portfolio. @@ -56,18 +56,18 @@ The Helmholtz Cloud is accessible for international users via the Helmholtz AAI. HIFIS Software Services' mission is to empower scientists of any domain to implement and to perpetuate modern scientific software development principles in order to make research software engineering more sustainable. -#### [Education & Training]({% link services/training.md %}) +#### [Education & Training]({% link services/software/training.md %}) The purpose of the Education & Training component is to offer courses, materials, and workshops to help you in getting started, or to boost your software engineering practices. -On [this page]({% link services/training.md %}), you can find upcoming workshops +On [this page]({% link services/software/training.md %}), you can find upcoming workshops on a range of topics, as well as external resources to help you get started. -#### [Consulting]({% link services/consulting.html%}) +#### [Consulting]({% link services/software/consulting.html%}) The Software team offers free-of-charge consulting as a service to research groups within the Helmholtz umbrella. We can help you deal with specific licensing issues, migrating code between different environments and languages, setting up new projects, and other problems that you need to solve. -[Fill out the form]({% link services/consulting.html%}) to request a consulting. +[Fill out the form]({% link services/software/consulting.html%}) to request a consulting. #### [Community Building](https://pad.gwdg.de/s/BkAKOLoPL) HIFIS Software will build and foster communities to support the necessary cultural change diff --git a/services/backbone/aai.md b/services/backbone/aai.md new file mode 100644 index 0000000000000000000000000000000000000000..78ff3ccc7fbcd85b2d5592aa990adf34a2de2a30 --- /dev/null +++ b/services/backbone/aai.md @@ -0,0 +1,11 @@ +--- +title: <i class="fas fa-external-link-alt"></i> Helmholtz AAI +title_image: markus-spiske-PsRUMc7vilg-unsplash.jpg +layout: services/default +author: none +additional_css: + - title/service-title-buttons.css +excerpt: + "Seamless Access to Cloud Services for Helmholtz & Friends." +redirect_to: https://aai.helmholtz.de +--- diff --git a/services/backbone/fts.md b/services/backbone/fts.md new file mode 100644 index 0000000000000000000000000000000000000000..8df25e49e67997f3c5fada1d72ce76346e496925 --- /dev/null +++ b/services/backbone/fts.md @@ -0,0 +1,11 @@ +--- +title: <i class="fas fa-external-link-alt"></i> File Transfer Service +title_image: globe.jpeg +layout: services/default +author: none +additional_css: + - title/service-title-buttons.css +excerpt: + "An FTS based file transfer service connecting Helmholtz research." +redirect_to: https://hifis.net/doc/core-services/fts-endpoint/ +--- diff --git a/services/backbone/helmholtzbackbone.md b/services/backbone/helmholtzbackbone.md new file mode 100644 index 0000000000000000000000000000000000000000..7c4035ff0e7b3d2256af81db651120234e8ce209 --- /dev/null +++ b/services/backbone/helmholtzbackbone.md @@ -0,0 +1,11 @@ +--- +title: Helmholtz Backbone (VPN) +title_image: pexels-brett-sayles-2881232.jpg +layout: services/default +author: none +additional_css: + - title/service-title-buttons.css +excerpt: + "An FTS based file transfer service connecting Helmholtz research." +redirect_to: news/2020/09/01/VPN.html +--- diff --git a/services/cloud/helmholtzcloud.md b/services/cloud/helmholtzcloud.md new file mode 100644 index 0000000000000000000000000000000000000000..c41c1f7a7036761b2569a4b47b15541fb0c44c0e --- /dev/null +++ b/services/cloud/helmholtzcloud.md @@ -0,0 +1,11 @@ +--- +title: <i class="fas fa-external-link-alt"></i> Helmholtz Cloud +title_image: background-cloud.jpg +layout: services/default +author: none +additional_css: + - title/service-title-buttons.css +excerpt: + "Browse our cloud services and enjoy seamless access with single-sign on." +redirect_to: https://cloud.helmholtz.de +--- diff --git a/services/index.md b/services/index.md index c6c3bdc0d8cd93116db370c6ddb392e96649b6bb..a95cd68cbfa7ccdeef906cf1ed09384739102cf8 100644 --- a/services/index.md +++ b/services/index.md @@ -1,18 +1,52 @@ --- -title: Services +title: HIFIS Services title_image: default -layout: services/index +layout: default author: none -additional_css: - - services/custom.css - - title/service-title-buttons.css -excerpt: - "The service portfolio of HIFIS Software is structured into 4 different - components that seamlessly interoperate with each other: Education & - Training, Technology, Consulting and Community Services." + --- -{% comment %} - This markdown file triggers the generation of the services page. - Only the frontmatter is required by Jekyll. - The contents section does not get rendered into HTML on purpose. -{% endcomment %} + +HIFIS ensures an excellent information environment for outstanding research +in all Helmholtz research fields. + +## Software +The service portfolio of HIFIS Software is structured into 4 different +components that seamlessly interoperate with each other: +Education & Training, Technology, Consulting and Community Services. + +<div class="flex-cards"> +{%- assign posts = site.pages | where_exp: "item", "item.path contains 'services/software'" -%} +{% for post in posts -%} +{% include cards/post_card_image.html post=post excerpt=true %} +{% endfor -%} +</div> + +## Cloud +The HIFIS Cloud cluster develops the technologies for access, harmonization, +integration and provisioning of cloud services into the Helmholtz +Cloud. + +<div class="flex-cards"> +{%- assign posts = site.pages | where_exp: "item", "item.path contains 'services/cloud'" -%} +{% for post in posts -%} +{% include cards/post_card_image.html post=post excerpt=true %} +{% endfor -%} +</div> + +## Backbone +High-performance trusted network infrastructure with unified basic services. + +<div class="flex-cards"> +{%- assign posts = site.pages | where_exp: "item", "item.path contains 'services/backbone'" -%} +{% for post in posts -%} +{% include cards/post_card_image.html post=post excerpt=true %} +{% endfor -%} +</div> + +## Overall +<div class="flex-cards"> +{%- assign posts = site.pages | where_exp: "item", "item.path contains 'services/overall'" -%} +{% for post in posts -%} +{% include cards/post_card_image.html post=post excerpt=true %} +{% endfor -%} +</div> diff --git a/services/overall/guidelines.md b/services/overall/guidelines.md new file mode 100644 index 0000000000000000000000000000000000000000..3cfabe66d8839da2fb0e0df1e299d7172d584ab3 --- /dev/null +++ b/services/overall/guidelines.md @@ -0,0 +1,12 @@ +--- +title: Guidelines +title_image: default +layout: services/default +author: none +additional_css: + - title/service-title-buttons.css +excerpt: + "We provide guidelines and helping information for the + optimal use of online collaboration tools." +redirect_to: guidelines/ +--- diff --git a/services/overall/helpdesk.md b/services/overall/helpdesk.md new file mode 100644 index 0000000000000000000000000000000000000000..16d7a9afb384fcad3adfb9e87b23a41eb7e3dccf --- /dev/null +++ b/services/overall/helpdesk.md @@ -0,0 +1,12 @@ +--- +title: <i class="fas fa-external-link-alt"></i> HIFIS Helpdesk +title_image: matthew-waring-MJAoiige14E-unsplash.jpg +layout: services/default +author: none +additional_css: + - title/service-title-buttons.css +excerpt: + "Contact us for queries on HIFIS and Helmholtz Cloud, + general questions and also feedback to the website." +redirect_to: https://support.hifis.net +--- diff --git a/services/software/communities.md b/services/software/communities.md new file mode 100644 index 0000000000000000000000000000000000000000..126d8b8516967c5d813261afa71a558dc1bf0994 --- /dev/null +++ b/services/software/communities.md @@ -0,0 +1,11 @@ +--- +title: Communities +title_image: adi-goldstein-mDinBvq1Sfg-unsplash.jpg +layout: services/default +author: none +additional_css: + - title/service-title-buttons.css +excerpt: + "We build and foster communities to support the necessary + cultural change in science when dealing with research software." +--- diff --git a/services/consulting.html b/services/software/consulting.html similarity index 91% rename from services/consulting.html rename to services/software/consulting.html index 297e7b5bb991b8636bd4f16e4478b8d50f24a7b0..f3f64c108a2d15c86e66585d071b417fbeddff8a 100644 --- a/services/consulting.html +++ b/services/software/consulting.html @@ -6,13 +6,8 @@ author: none additional_css: - services/consulting-help-images.css excerpt: >- - HIFIS offers free-of-charge consulting as a service - to research groups under the Helmholtz umbrella. - We can help you to deal with specific licensing issues, - pointing out solutions on how to improve your software or - setting up a new projects. We are also very happy to discuss - other software engineering topics such as software engineering - process in general. + We offer free-of-charge consulting in software engineering + as a service to research groups under the Helmholtz umbrella. --- <p> diff --git a/services/software/helmholtzgitlab.html b/services/software/helmholtzgitlab.html new file mode 100644 index 0000000000000000000000000000000000000000..6b80dbaa9286e4db0b0b7167c9173fc30a4162d5 --- /dev/null +++ b/services/software/helmholtzgitlab.html @@ -0,0 +1,239 @@ +--- +title: Helmholtz GitLab / Technology +title_image: adi-goldstein-mDinBvq1Sfg-unsplash_shrinked.jpg +layout: services/default +author: none +additional_css: + - services/services-page-images.css +excerpt: >- + We provide a sustainable, well integrated and easy to + use technology infrastructure for scientific software. +--- + +<p> + The HIFIS team offers IT services to all Helmholtz communities + which enable scientists to do research and develop research software in + tight collaboration with other scientists from within Helmholtz. + Offering a sophisticated Software Project Management Platform is an + important prerequisite to achieve this. + The Software Project Management Platform + <a href="https://about.gitlab.com">GitLab</a> + has already become a de-facto standard for many Helmholtz centers + in the past years. + Many centers offer GitLab to their scientists. + In order to bundle resources and foster cross-center collaboration + HIFIS Software offers + <a href="https://gitlab.hzdr.de">Helmholtz GitLab</a> + to all Helmholtz disregarding the center affiliation. + The benefits and synergies of using GitLab are manifold. + Nowadays, research software needs to be open, transparent, reproducible, + accessible, findable, reusable just to name a few desired properties. + We believe that a full-fledged feature-rich open-source software like + GitLab is the right tool to support scientists to develop such software + that adheres to these properties. +</p> + +<h1>Features of the Helmholtz GitLab Service</h1> + +<div class="image-block"> + <img + class="help-image left" + alt="A software developer working with version control." + src="{{ site.directory.images | relative_url }}/services/undraw_version_control_9bpv.svg" + /> + <div> + <h3>Version Control with Git</h3> + <p> + One reason for many Helmholtz research centers to have chosen GitLab as + the right tool might be the popularity of the Version Control System + <a href="https://git-scm.com/">Git</a>. + GitLab is using Git under the hood and Git and GitLab interact + with each other seamlessly. + With Version Control scientists are able to keep track of their + changes they make during research software development due to the + fact that Git stores the complete history of changes in the + respective Git repository. + One can jump back and forth in the history and for example inspect + previous versions or even restore previous versions of the software. + GitLab or any other Git-based Software Project Management Platform + offer a central point to exchange code and ideas with others and + render close and fruitful collaboration between scientists. + But what if you already use another Git-based Software + Project Management Platform? + That's perfect, no worries. + GitLab offers an + <a href="https://gitlab.hzdr.de/help/user/project/import/index.md">import wizard</a> + with which researchers can migrate their remote Git repositories + just easily if the necessity arises. + </p> + <p> + <a href="https://gitlab.hzdr.de/help/topics/git/index.md" type="button" class="btn btn-outline-secondary btn-sm"> + <i class="fas fa-file-alt"></i> Documentation + </a> + </p> + </div> +</div> + +<div class="image-block"> + <img + class="help-image right" + alt="A software developer working with GitLab." + src="{{ site.directory.images | relative_url }}/services/undraw_developer_activity_bv83.svg" + /> + <div> + <h3>Project Management with GitLab</h3> + <p> + As mentioned in the previous section, collaboration is such a necessity. + Today, there is literally no research project that is not driven + by collaboration. + Hence, project management is an important task and duty of + researchers in order to make good progress in their research + projects. + GitLab is a specialized tool to support software project management. + It offers + <a href="https://gitlab.hzdr.de/help/user/group/index.md">Groups</a>, + <a href="https://gitlab.hzdr.de/help/user/project/index.md">Projects</a>, + <a href="https://gitlab.hzdr.de/help/user/project/issues/index.md">Issue Trackers</a>, + <a href="https://gitlab.hzdr.de/help/user/project/issue_board.md">Issue/Kanban Boards</a>, + <a href="https://gitlab.hzdr.de/help/user/project/milestones/index.md">Milestones</a>, + <a href="https://gitlab.hzdr.de/help/user/project/labels.md">Labels</a>, + <a href="https://gitlab.hzdr.de/help/user/project/repository/branches/index.md">Branches</a>, + <a href="https://gitlab.hzdr.de/help/user/project/merge_requests/index.md">Merge Requests</a> + among many other useful features. + This platform is very open in terms of supported workflows in + research software projects and can be adapted to almost any + practical software development workflow you may think of. + Using the <a href="https://gitlab.hzdr.de">Helmholtz GitLab Service</a> + makes it easier to see and keep track of the progress of your projects. + </p> + <p> + <a href="https://gitlab.hzdr.de/help/user/project/index.md" type="button" class="btn btn-outline-secondary btn-sm"> + <i class="fas fa-file-alt"></i> Documentation + </a> + </p> + </div> +</div> + +<div class="image-block"> + <img + class="help-image left" + alt="A software developer watching Continuous Integration pipeline stages." + src="{{ site.directory.images | relative_url }}/services/undraw_check_boxes_m3d0.svg" + /> + <div> + <h3>GitLab Continuous Integration</h3> + <p> + Continuous Integration (CI) is a first-class citizen available free-of-charge + and already activated for all users. + Almost every software product benefits from automated tasks. + CI pipelines can automatically build, test and finally deploy the + software product to a container, package registry or a staging/production + environment on which simulations may run. + Often these automated task are used as quality gates which + need to be passed successfully in order to be able to integrate + the code change into some mainline. + Developers are able to "integrate" their contributions + "continuously" and due to a high level of automation many of the time + consuming tasks don't need to be done manually. + Thus, researchers can focus on doing research and not on doing + tedious tasks again and again. + </p> + <p> + <a href="https://gitlab.hzdr.de/help/ci/README.md" type="button" class="btn btn-outline-secondary btn-sm"> + <i class="fas fa-file-alt"></i> Documentation + </a> + </p> + </div> +</div> + +<div class="image-block"> + <img + class="help-image right" + alt="A container ship carrying some containers." + src="{{ site.directory.images | relative_url }}/services/undraw_Container_ship_ok1c.svg" + /> + <div> + <h3>GitLab Container Registry</h3> + <p> + Containers have become very popular: Gitlab takes that into account + by offering Container Registry very similar to Docker Hub. + Once research software developers build their own images they can + be stored centrally in such a registry for later reuse. + </p> + <p> + <a href="https://gitlab.hzdr.de/help/user/packages/container_registry/index.md" type="button" class="btn btn-outline-secondary btn-sm"> + <i class="fas fa-file-alt"></i> Documentation + </a> + </p> + </div> +</div> + +<div class="image-block"> + <img + class="help-image left" + alt="A software developer inspecting some packages." + src="{{ site.directory.images | relative_url }}/services/undraw_order_delivered_p6ba.svg" + /> + <div> + <h3>GitLab Package Registry</h3> + <p> + Package Registries exist already for a long time, GitLab supports + the most prominent candidates like PyPI (Python), Conan (C++), + Maven (Java), NPM (NodeJS), Composer (PHP), NuGet (.NET), etc. + so that packages can be stored independently from these public + registries. On top GitLab also adds access control to + keep the group of project members manageable. + </p> + <p> + <a href="https://gitlab.hzdr.de/help/user/packages/package_registry/index.md" type="button" class="btn btn-outline-secondary btn-sm"> + <i class="fas fa-file-alt"></i> Documentation + </a> + </p> + </div> +</div> + +<div class="image-block"> + <img + class="help-image right" + alt="A software developer with a bookshelf with some books." + src="{{ site.directory.images | relative_url }}/services/undraw_Bookshelves_re_lxoy.svg" + /> + <div> + <h3>GitLab Pages</h3> + <p> + Additionally, there is a feature called GitLab Pages that can be + used to publish static web sites e.g. your documentation. + Like other features, e.g. GitLab Container andd Package Registries, + GitLab Pages can be used during automation with CI pipelines. + Each time a contribution is made to your project + your documentation is rebuilt including the new changes + and automatically made accessible to anyone with the right permissions. + </p> + <p> + <a href="https://gitlab.hzdr.de/help/user/project/pages/index.md" type="button" class="btn btn-outline-secondary btn-sm"> + <i class="fas fa-file-alt"></i> Documentation + </a> + </p> + </div> +</div> + +<div class="image-block"> + <img + class="help-image left" + alt="A helpdesk agent at his/her desk." + src="{{ site.directory.images | relative_url }}/services/undraw_feeling_proud_qne1.svg" + /> + <div> + <h3>Help and Support</h3> + <p> + Please contact us regarding questions, issues, bugs or ideas + on how to improve the service via the HIFIS Helpdesk. + + {% include contact_us/mini.html contact_mail_link=site.contact_mail_for_gitlab %} + {% include helpdesk/mini.html %} + + </p> + </div> +</div> + +<div class="image-attrib">Images by Katerina Limpitsouni via <a href="https://undraw.co/">undraw.co</a></div> diff --git a/services/training.md b/services/software/training.md similarity index 94% rename from services/training.md rename to services/software/training.md index 0f73fd985a5afb8918c5fc2510a940268b33a550..241fa1ad7d5f6ab413910a6c72d2d9235671fc41 100644 --- a/services/training.md +++ b/services/software/training.md @@ -1,14 +1,13 @@ --- title: Education & Training -title_image: coding_background.jpg +title_image: group-of-people-watching-on-laptop-1595385.jpg layout: services/default author: none additional_css: - title/service-title-buttons.css excerpt: - "The service portfolio of HIFIS Software is structured into 4 different - components that seamlessly interoperate with each other: Education & - Training, Technology, Consulting and Community Services." + "We offer courses, materials or workshops to help you + in getting started or in boosting your software engineering practice." --- The purpose of the Education & Training component is to offer courses, materials, and workshops to help you in getting started, or to boost your engineering practices.