This commit is contained in:
thecyberlearn 2025-06-10 11:08:06 +05:30
parent 78e331a559
commit 09e30e988c
21 changed files with 564 additions and 28 deletions

View File

@ -135,13 +135,14 @@
/* Hero Section */ /* Hero Section */
.hero { .hero {
min-height: 100vh; height: 100vh;
display: flex; display: flex;
align-items: center; align-items: center;
background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcd3c 100%); background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcd3c 100%);
color: white; color: white;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
z-index: 1;
} }
.hero::before { .hero::before {
@ -532,12 +533,65 @@
box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2); box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
} }
.logo-item img {
max-width: 80px;
max-height: 60px;
width: auto;
height: auto;
object-fit: contain;
filter: brightness(0) invert(1);
transition: all 0.3s ease;
display: block;
margin: 0 auto;
}
.logo-item:hover img {
filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
transform: scale(1.1);
}
.logo-item span { .logo-item span {
font-weight: 700; font-weight: 700;
font-size: 1rem; font-size: 1rem;
color: white; color: white;
} }
.logo-item img {
max-width: 80px;
max-height: 60px;
width: auto;
height: auto;
object-fit: contain;
filter: brightness(0) invert(1);
transition: all 0.3s ease;
display: block;
margin: 0 auto;
}
.logo-item:hover img {
filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
transform: scale(1.1);
}
/* Fallback text styling when images don't load */
.logo-item {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 30px;
display: flex;
align-items: center;
justify-content: center;
height: 100px;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
text-align: center;
font-weight: 700;
font-size: 0.9rem;
color: white;
}
/* CTA Section */ /* CTA Section */
.cta-section { .cta-section {
padding: 120px 0; padding: 120px 0;
@ -897,21 +951,51 @@
<p>Leading brands choose Victory for their global logistics needs</p> <p>Leading brands choose Victory for their global logistics needs</p>
</div> </div>
<div class="logo-grid"> <div class="logo-grid">
<div class="logo-item"><span>ADIDAS</span></div> <div class="logo-item">
<div class="logo-item"><span>INTEL</span></div> <img src="./logos/Adidas.svg" alt="Adidas" onerror="this.style.display='none'; this.parentNode.innerHTML='ADIDAS';" />
<div class="logo-item"><span>TOYOTA</span></div> </div>
<div class="logo-item"><span>SHELL</span></div> <div class="logo-item">
<div class="logo-item"><span>APPLE</span></div> <img src="./logos/Intel.svg" alt="Intel" onerror="this.style.display='none'; this.parentNode.innerHTML='INTEL';" />
<div class="logo-item"><span>McDONALD'S</span></div> </div>
<div class="logo-item"><span>UNILEVER</span></div> <div class="logo-item">
<div class="logo-item"><span>COCA COLA</span></div> <img src="./logos/Toyota.svg" alt="Toyota" onerror="this.style.display='none'; this.parentNode.innerHTML='TOYOTA';" />
<div class="logo-item"><span>P&G</span></div> </div>
<div class="logo-item"><span>VOLKSWAGEN</span></div> <div class="logo-item">
<div class="logo-item"><span>GSK</span></div> <img src="./logos/Shell.svg" alt="Shell" onerror="this.style.display='none'; this.parentNode.innerHTML='SHELL';" />
<div class="logo-item"><span>VISA</span></div> </div>
<div class="logo-item"><span>ADOBE</span></div> <div class="logo-item">
<div class="logo-item"><span>PELCO</span></div> <img src="./logos/Apple.svg" alt="Apple" onerror="this.style.display='none'; this.parentNode.innerHTML='APPLE';" />
<div class="logo-item"><span>NSRTTC</span></div> </div>
<div class="logo-item">
<img src="./logos/McDonald.svg" alt="McDonald's" onerror="this.style.display='none'; this.parentNode.innerHTML='McDONALD';" />
</div>
<div class="logo-item">
<img src="./logos/Unilever.svg" alt="Unilever" onerror="this.style.display='none'; this.parentNode.innerHTML='UNILEVER';" />
</div>
<div class="logo-item">
<img src="./logos/Coca-Cola.svg" alt="Coca-Cola" onerror="this.style.display='none'; this.parentNode.innerHTML='COCA COLA';" />
</div>
<div class="logo-item">
<img src="./logos/P&G.svg" alt="P&G" onerror="this.style.display='none'; this.parentNode.innerHTML='P&G';" />
</div>
<div class="logo-item">
<img src="./logos/Volkswagen.svg" alt="Volkswagen" onerror="this.style.display='none'; this.parentNode.innerHTML='VOLKSWAGEN';" />
</div>
<div class="logo-item">
<img src="./logos/gasco.svg" alt="Gasco" onerror="this.style.display='none'; this.parentNode.innerHTML='GSK';" />
</div>
<div class="logo-item">
<img src="./logos/visa.svg" alt="Visa" onerror="this.style.display='none'; this.parentNode.innerHTML='VISA';" />
</div>
<div class="logo-item">
<img src="./logos/adobe.svg" alt="Adobe" onerror="this.style.display='none'; this.parentNode.innerHTML='ADOBE';" />
</div>
<div class="logo-item">
<img src="./logos/pfizer.svg" alt="Pfizer" onerror="this.style.display='none'; this.parentNode.innerHTML='PELCO';" />
</div>
<div class="logo-item">
<img src="./logos/contemporary.svg" alt="Contemporary" onerror="this.style.display='none'; this.parentNode.innerHTML='NSRTTC';" />
</div>
</div> </div>
</div> </div>
</section> </section>
@ -1057,7 +1141,7 @@
}); });
// Counter animation for stats // Counter animation for stats
function animateCounter(element, target) { function animateCounter(element, target, originalText) {
let count = 0; let count = 0;
const increment = target / 100; const increment = target / 100;
const timer = setInterval(() => { const timer = setInterval(() => {
@ -1066,7 +1150,20 @@
count = target; count = target;
clearInterval(timer); clearInterval(timer);
} }
element.textContent = Math.floor(count) + (target >= 1000 ? 'K+' : target === 99.8 ? '.8%' : target === 195 ? '' : target === 24 ? '/7' : '+');
// Determine the correct suffix based on original text
let displayText = Math.floor(count);
if (originalText.includes('K+')) {
displayText = Math.floor(count / 1000) + 'K+';
} else if (originalText.includes('%')) {
displayText = count.toFixed(1) + '%';
} else if (originalText.includes('/7')) {
displayText = Math.floor(count) + '/7';
} else {
displayText = Math.floor(count);
}
element.textContent = displayText;
}, 20); }, 20);
} }
@ -1076,15 +1173,21 @@
if (entry.isIntersecting) { if (entry.isIntersecting) {
const statNumbers = entry.target.querySelectorAll('.stat-number'); const statNumbers = entry.target.querySelectorAll('.stat-number');
statNumbers.forEach(stat => { statNumbers.forEach(stat => {
const text = stat.textContent; const originalText = stat.textContent;
let target; let target;
if (text.includes('K+')) target = parseInt(text) * 1000;
else if (text.includes('%')) target = parseFloat(text); if (originalText.includes('K+')) {
else if (text.includes('/')) target = parseInt(text); target = parseInt(originalText) * 1000;
else target = parseInt(text); } else if (originalText.includes('%')) {
target = parseFloat(originalText);
} else if (originalText.includes('/')) {
target = parseInt(originalText);
} else {
target = parseInt(originalText);
}
stat.textContent = '0'; stat.textContent = '0';
animateCounter(stat, target); animateCounter(stat, target, originalText);
}); });
statsObserver.unobserve(entry.target); statsObserver.unobserve(entry.target);
} }
@ -1096,13 +1199,27 @@
statsObserver.observe(statsSection); statsObserver.observe(statsSection);
} }
// Parallax effect for hero section // Enhanced parallax effect with fine-tuning
window.addEventListener('scroll', () => { window.addEventListener('scroll', () => {
const scrolled = window.pageYOffset; const scrolled = window.pageYOffset;
const parallax = document.querySelector('.hero'); const parallax = document.querySelector('.hero');
if (parallax) { const heroHeight = parallax.offsetHeight;
const speed = scrolled * 0.5; const windowHeight = window.innerHeight;
parallax.style.transform = `translateY(${speed}px)`;
if (parallax && scrolled < heroHeight + windowHeight * 0.3) {
// Extended parallax range for smoother transition
const progress = scrolled / (heroHeight + windowHeight * 0.3);
const speed = scrolled * 0.2; // Even smoother speed
const maxTransform = heroHeight * 0.15; // Reduced max transform
const easeOut = 1 - Math.pow(1 - progress, 3); // Cubic ease-out
const transform = Math.min(speed * easeOut, maxTransform);
parallax.style.transform = `translateY(${transform}px)`;
parallax.style.transition = 'none'; // Disable transition during scroll
} else if (parallax) {
// Smooth reset with transition
parallax.style.transition = 'transform 0.3s ease-out';
parallax.style.transform = 'translateY(0px)';
} }
}); });

24
logos/Adidas.svg Normal file
View File

@ -0,0 +1,24 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" width="725" height="500">
<g
transform="translate(-60,-430)" style="fill:#000">
<path
d="M 533.9435,756.70465 386.43318,500.34377 492.40483,439.4751 l 183.4283,317.22955 -141.88963,0" />
<path
d="m 141.03958,720.78673 105.97165,-61.27985 56.07037,97.19777 -141.47831,0 -20.56371,-35.91792" />
<path
d="m 349.00724,920.25463 30.16006,0 0,-122.01125 -30.16006,0 0,122.01125 z" />
<path
d="m 726.96825,923.13364 c -33.72452,0 -54.01413,-17.4106 -55.11081,-41.95001 l 31.80529,0 c 0,7.67715 4.79819,18.91861 25.36192,19.32994 13.70913,0 20.15239,-8.08849 20.15239,-14.12047 -0.82261,-9.59639 -12.88668,-10.419 -25.7732,-12.47534 -12.88652,-2.0564 -23.85386,-4.38692 -31.80518,-8.49966 -10.14488,-5.20948 -16.99942,-16.45093 -16.99942,-29.33745 0,-21.79767 18.91861,-39.07105 50.44967,-39.07105 30.57139,0 49.90133,16.03964 51.95773,39.8935 l -30.70861,0 c -0.27412,-6.44326 -1.5079,-16.58798 -19.60405,-16.58798 -12.20113,0 -20.28946,2.46752 -20.97501,10.96733 0,12.47519 25.36202,11.65274 45.10314,16.86211 18.9186,4.7983 30.98267,16.58814 30.98267,33.03907 0,30.29727 -24.53941,41.95001 -54.83653,41.95001" />
<path
d="m 265.24438,611.93622 105.97165,-61.14278 118.85823,205.91121 -110.90696,0 0,30.16006 -30.16006,0 0,-30.29712 -83.76286,-144.63137" />
<path
d="m 267.98623,923.13364 c -35.09542,0 -63.61043,-28.65221 -63.61043,-63.33619 0,-35.09547 28.51501,-62.78785 63.61043,-62.78785 13.29786,0 25.36187,3.56425 35.91793,10.83012 l 0,-51.13507 30.16011,0 0,163.54998 -30.16011,0 0,-8.08833 c -10.55606,6.85459 -22.62007,10.96734 -35.91793,10.96734 z m -34.68414,-63.33619 c 0,18.9185 16.17678,34.68398 35.50665,34.68398 18.91861,0 35.09542,-15.76548 35.09542,-34.68398 0,-18.91866 -16.17681,-35.09547 -35.09542,-35.09547 -19.32987,0 -35.50665,16.17681 -35.50665,35.09547" />
<path
d="m 490.89682,756.70465 29.74883,0 0,163.54998 -29.74883,0 0,-8.08833 c -10.14478,6.85459 -22.62007,10.96734 -36.32921,10.96734 -34.68414,0 -63.19913,-28.65221 -63.19913,-63.33619 0,-35.09547 28.51499,-62.78785 63.19913,-62.78785 13.70914,0 25.77315,3.56425 36.32921,10.83012 l 0,-51.13507 z m -70.19079,103.0928 c 0,18.9185 16.17676,34.68398 34.68414,34.68398 19.32989,0 35.50665,-15.76548 35.50665,-34.68398 0,-18.91866 -16.17676,-35.09547 -35.50665,-35.09547 -18.50738,0 -34.68414,16.17681 -34.68414,35.09547" />
<path
d="m 593.98956,923.13364 c -34.54703,0 -63.19913,-28.65221 -63.19913,-63.33619 0,-35.09547 28.6521,-62.78785 63.19913,-62.78785 13.29791,0 25.7731,3.56425 35.91798,10.83012 l 0,-9.7334 30.16006,0 0,122.14831 -30.16006,0 0,-8.08833 c -10.14488,6.85459 -22.20879,10.96734 -35.91798,10.96734 z m -33.86158,-63.33619 c 0,18.9185 16.17676,34.68398 35.09537,34.68398 18.91866,0 34.68419,-15.76548 34.68419,-34.68398 0,-18.91866 -15.76553,-35.09547 -34.68419,-35.09547 -18.91861,0 -35.09537,16.17681 -35.09537,35.09547" />
<path
d="m 93.468866,859.79745 c 0,18.9185 16.176784,34.68398 35.095404,34.68398 19.32987,0 35.50666,-15.76548 35.50666,-34.68398 0,-18.91866 -16.17679,-35.09547 -35.50666,-35.09547 -18.91862,0 -35.095404,16.17681 -35.095404,35.09547 z m 34.272844,63.33619 c -34.684124,0 -63.336218,-28.65221 -63.336218,-63.33619 0,-35.09547 28.652094,-62.78785 63.336218,-62.78785 13.29787,0 25.77319,3.56425 36.32922,10.83012 l 0,-9.7334 29.74883,0 0,122.14831 -29.74883,0 0,-8.08833 c -10.14475,6.85459 -22.62008,10.96734 -36.32922,10.96734" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

3
logos/Apple.svg Normal file
View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="814" height="1000">
<path d="M788.1 340.9c-5.8 4.5-108.2 62.2-108.2 190.5 0 148.4 130.3 200.9 134.2 202.2-.6 3.2-20.7 71.9-68.7 141.9-42.8 61.6-87.5 123.1-155.5 123.1s-85.5-39.5-164-39.5c-76.5 0-103.7 40.8-165.9 40.8s-105.6-57-155.5-127C46.7 790.7 0 663 0 541.8c0-194.4 126.4-297.5 250.8-297.5 66.1 0 121.2 43.4 162.7 43.4 39.5 0 101.1-46 176.3-46 28.5 0 130.9 2.6 198.3 99.2zm-234-181.5c31.1-36.9 53.1-88.1 53.1-139.3 0-7.1-.6-14.3-1.9-20.1-50.6 1.9-110.8 33.7-147.1 75.8-28.5 32.4-55.1 83.6-55.1 135.5 0 7.8 1.3 15.6 1.9 18.1 3.2.6 8.4 1.3 13.6 1.3 45.4 0 102.5-30.4 135.5-71.3z"/>
</svg>

After

Width:  |  Height:  |  Size: 660 B

1
logos/Coca-Cola.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.1 KiB

31
logos/Intel.svg Normal file
View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 388.2 150.6" style="enable-background:new 0 0 388.2 150.6;" xml:space="preserve">
<style type="text/css">
.st0{fill:#04C7FD;}
.st1{fill:#0068B5;}
</style>
<rect y="2.1" class="st0" width="28.1" height="28.1"/>
<path class="st1" d="M27.4,148.5V47.3H0.8v101.2H27.4z M204.2,149.5v-24.8c-3.9,0-7.2-0.2-9.6-0.6c-2.8-0.4-4.9-1.4-6.3-2.8
c-1.4-1.4-2.3-3.4-2.8-6c-0.4-2.5-0.6-5.8-0.6-9.8V70.1h19.3V47.3h-19.3V7.8h-26.7v97.9c0,8.3,0.7,15.3,2.1,20.9
c1.4,5.5,3.8,10,7.1,13.4s7.7,5.8,13,7.3c5.4,1.5,12.2,2.2,20.3,2.2L204.2,149.5L204.2,149.5z M357,148.5V0h-26.7v148.5H357z
M132.5,57.2c-7.4-8-17.8-12-31-12c-6.4,0-12.2,1.3-17.5,3.9c-5.2,2.6-9.7,6.2-13.2,10.8l-1.5,1.9v-1.7V47.3H43v101.2h26.5V94.6v3.7
c0-0.6,0-1.2,0-1.8c0.3-9.5,2.6-16.5,7-21c4.7-4.8,10.4-7.2,16.9-7.2c7.7,0,13.6,2.4,17.5,7c3.8,4.6,5.8,11.1,5.8,19.4l0,0v0.2l0,0
l0,0v53.5h26.9V91C143.7,76.6,139.9,65.2,132.5,57.2z M316.5,97.7c0-7.3-1.3-14.1-3.8-20.5c-2.6-6.3-6.2-11.9-10.7-16.7
c-4.6-4.8-10.1-8.5-16.5-11.2s-13.5-4-21.2-4c-7.3,0-14.2,1.4-20.6,4.1c-6.4,2.8-12,6.5-16.7,11.2s-8.5,10.3-11.2,16.7
c-2.8,6.4-4.1,13.3-4.1,20.6c0,7.3,1.3,14.2,3.9,20.6c2.6,6.4,6.3,12,10.9,16.7c4.6,4.7,10.3,8.5,16.9,11.2
c6.6,2.8,13.9,4.2,21.7,4.2c22.6,0,36.6-10.3,45-19.9l-19.2-14.6c-4,4.8-13.6,11.3-25.6,11.3c-7.5,0-13.7-1.7-18.4-5.2
c-4.7-3.4-7.9-8.2-9.6-14.1l-0.3-0.9h79.5L316.5,97.7L316.5,97.7z M237.2,88.4c0-7.4,8.5-20.3,26.8-20.4c18.3,0,26.9,12.9,26.9,20.3
L237.2,88.4z"/>
<path class="st1" d="M387.4,135.3c-0.5-1.2-1.2-2.2-2.1-3.1c-0.9-0.9-1.9-1.6-3.1-2.1s-2.5-0.8-3.8-0.8c-1.4,0-2.6,0.3-3.8,0.8
c-1.2,0.5-2.2,1.2-3.1,2.1c-0.9,0.9-1.6,1.9-2.1,3.1c-0.5,1.2-0.8,2.5-0.8,3.8c0,1.4,0.3,2.6,0.8,3.8s1.2,2.2,2.1,3.1
c0.9,0.9,1.9,1.6,3.1,2.1s2.5,0.8,3.8,0.8c1.4,0,2.6-0.3,3.8-0.8c1.2-0.5,2.2-1.2,3.1-2.1c0.9-0.9,1.6-1.9,2.1-3.1
c0.5-1.2,0.8-2.5,0.8-3.8S387.9,136.5,387.4,135.3z M385.8,142.3c-0.4,1-1,1.9-1.7,2.6c-0.7,0.7-1.6,1.3-2.6,1.7s-2,0.6-3.2,0.6
c-1.1,0-2.2-0.2-3.2-0.6c-1-0.4-1.9-1-2.6-1.7s-1.3-1.6-1.7-2.6c-0.4-1-0.6-2-0.6-3.2c0-1.1,0.2-2.2,0.6-3.2s1-1.9,1.7-2.6
c0.7-0.7,1.6-1.3,2.6-1.7s2-0.6,3.2-0.6c1.1,0,2.2,0.2,3.2,0.6c1,0.4,1.9,1,2.6,1.7s1.3,1.6,1.7,2.6c0.4,1,0.6,2,0.6,3.2
C386.5,140.3,386.2,141.3,385.8,142.3z M380.2,139.9c0.8-0.1,1.4-0.4,1.9-0.9s0.8-1.2,0.8-2.2c0-1.1-0.3-1.9-1-2.5
c-0.6-0.6-1.7-0.9-3-0.9h-4.4v11.3h2.1v-4.6h1.5l2.8,4.6h2.2L380.2,139.9z M379.1,138.3c-0.3,0-0.6,0-1,0h-1.5v-3.2h1.5
c0.3,0,0.6,0,1,0c0.3,0,0.6,0.1,0.9,0.2c0.3,0.1,0.5,0.3,0.6,0.5s0.2,0.5,0.2,0.9s-0.1,0.7-0.2,0.9c-0.2,0.2-0.4,0.4-0.6,0.5
C379.7,138.2,379.4,138.3,379.1,138.3z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

4
logos/McDonald.svg Normal file
View File

@ -0,0 +1,4 @@
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" height="238.5" width="272.7" viewBox="0 0 272.70001 238.5">
<path fill="#fc0" d="m195.8 17.933c23.3 0 42.2 98.3 42.2 219.7h34c0-130.7-34.3-236.5-76.3-236.5-24 0-45.2 31.7-59.2 81.5-14-49.8-35.2-81.5-59-81.5-42 0-76.2 105.7-76.2 236.4h34c0-121.4 18.7-219.6 42-219.6s42.2 90.8 42.2 202.8h33.8c0-112 19-202.8 42.3-202.8"/>
</svg>

After

Width:  |  Height:  |  Size: 389 B

3
logos/P&G.svg Normal file
View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 87.021">
<path d="M79.231 86.977c-6.824-.367-11.916-3.175-14.894-8.213-1.998-3.382-2.606-7.83-1.692-12.375 1.013-5.036 4.452-9.574 9.73-12.838 3.033-1.877 5.629-3.042 10.915-4.9 1.329-.467 2.476-.897 2.55-.957.106-.084.121-.382.068-1.349-.152-2.751.307-7.037 1.084-10.13 1.307-5.205 3.822-9.404 7.16-11.951 2.396-1.83 5.537-3.206 8.664-3.796 1.727-.325 4.619-.324 6.244.003 6.963 1.402 10.871 6.769 9.332 12.816-.324 1.275-1.348 3.365-2.215 4.521-2.221 2.962-5.562 5.596-10.28 8.102-.593.316-2.535 1.27-4.314 2.122-1.779.851-3.29 1.604-3.36 1.674-.099.099-.074.388.118 1.36.885 4.494 2.373 8.291 4.914 12.537 1.01 1.69 2.407 3.821 2.566 3.92.23.142 1.17-1.377 1.783-2.88.758-1.86 1.192-4.32.978-5.542-.154-.875-.632-1.799-1.242-2.396-.28-.276-.512-.537-.513-.58-.001-.042 2.367-.066 5.264-.051l5.267.027-.03.668c-.041.913-.38 2.86-.737 4.246-1.007 3.897-2.905 7.23-6.186 10.87-.387.429-.704.85-.704.936 0 .086.544.683 1.208 1.327 4.147 4.02 11.493 8.656 17.474 11.027.581.231 1.055.466 1.053.522-.002.068-3.455.112-10.091.13l-10.088.026-.574-.323c-1.172-.659-3.767-2.756-6.26-5.06-.528-.488-1.028-.887-1.111-.887-.083 0-.67.341-1.302.758-3.239 2.136-7.11 4.055-10.384 5.147-3.724 1.243-6.798 1.683-10.395 1.49zm8.494-8.74c1.51-.269 3.365-.817 5.071-1.498 1.715-.684 3.841-1.73 3.917-1.928.03-.078-.363-.735-.872-1.461-2.347-3.344-4.854-8.047-6.539-12.265-.621-1.555-1.781-4.999-2.003-5.943-.07-.301-.197-.574-.282-.607-.235-.09-2.162.937-3.827 2.041-5.918 3.923-8.755 8.712-8.125 13.716.28 2.224.984 3.845 2.265 5.214 2.368 2.53 6.07 3.503 10.395 2.731zM97.77 43.441c2.19-1.282 5.664-4.395 7.607-6.815 2.487-3.097 3.809-5.987 3.81-8.331 0-1.34-.19-1.94-.81-2.56-.617-.616-1.313-.871-2.376-.872-3.154 0-6.565 3.744-8.051 8.838-.75 2.568-.932 3.95-.937 7.087-.004 2.396.035 2.929.215 2.929.039 0 .283-.124.542-.276zm52.163 43.476c-5.197-.523-8.622-1.3-12.486-2.83-5.258-2.084-8.541-4.665-11.314-8.894-.83-1.266-2.162-3.924-2.7-5.393-2.405-6.545-2.933-14.785-1.5-23.381 1.451-8.7 4.756-17.085 9.316-23.639 2.958-4.25 7.359-8.726 11.902-12.106 7.502-5.58 16.137-9.01 25.73-10.216 2.91-.366 4.54-.46 7.977-.458 5.199.003 9.159.399 14.388 1.438 3.336.664 8.65 2.098 8.752 2.363.052.134-3.315 10.925-3.454 11.07-.043.045-.56-.3-1.147-.77-4.729-3.77-9.63-6.065-14.586-6.828-1.583-.244-4.558-.247-6.11-.006-6.948 1.076-13.39 5.515-19.109 13.168-1.858 2.486-3.905 5.818-5.497 8.946-2.157 4.24-3.64 7.988-5.14 13-4.778 15.946-5.02 27.087-.72 33.118 1.771 2.485 4.36 4.068 7.645 4.673 1.886.348 6.464.137 6.92-.318.073-.072 2.308-7.065 4.966-15.54 4.368-13.921 4.84-15.491 4.89-16.28.066-1.06-.131-2.007-.608-2.919-.433-.829-1.577-1.954-2.52-2.477-.407-.226-.741-.446-.742-.488-.001-.042 7.327-.077 16.286-.077 8.958 0 16.288.035 16.287.077 0 .042-.397.259-.882.48-2.536 1.16-4.374 2.898-5.467 5.172-.237.492-2.287 6.86-5.366 16.666l-4.983 15.87-1.44.69c-5.865 2.815-13.04 4.842-20.197 5.707-1.315.16-7.99.293-9.09.182zM.004 85.757c-.033-.052.184-.235.481-.406 1.77-1.019 3.757-3.133 4.599-4.895.244-.51 22.587-71.67 23.08-73.509.087-.322.16-1.002.161-1.51.007-1.552-.475-2.671-1.61-3.745-.31-.293-.563-.576-.563-.629 0-.141 39.015-.129 40.804.013 3.874.307 7.752 1.337 10.718 2.845 5.064 2.575 8.096 6.483 9.028 11.636.26 1.434.31 4.624.097 6.168-.868 6.294-3.72 12.97-7.603 17.8-6.29 7.824-16.577 12.827-29.202 14.203-4.002.436-9.045.546-12.616.274-1.032-.079-1.898-.122-1.924-.096-.127.128-8.182 25.973-8.274 26.55-.284 1.779.632 3.779 2.211 4.827.312.207.54.42.508.472-.08.129-29.816.13-29.896.001zM44.29 47.37c2.933-.52 5.521-1.606 8.018-3.363 1.213-.853 3.705-3.342 4.733-4.727 2.572-3.463 4.464-7.549 5.99-12.931.972-3.43 1.386-6.043 1.385-8.736 0-2.076-.188-3.316-.71-4.707-.775-2.064-2.353-3.695-4.358-4.505-1.722-.696-3.192-.879-6.728-.838l-2.666.03-6.197 19.732C40.35 38.178 37.58 47.11 37.603 47.174c.024.064.452.172.95.24.5.068.977.14 1.062.161.388.095 3.842-.056 4.675-.204z" fill="#165eaa" stroke-width=".103"/>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

5
logos/Shell.svg Normal file
View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg xmlns="http://www.w3.org/2000/svg" width="150px" height="139px">
<path fill="#FFCD00" d="M75.01,132.31c-1.18,0-2.3-0.36-3.24-1.04l-3.62-2.65H33.72l-3.18-25.32L7.61,86.61C6.96,82.87,6.63,79,6.63,75.07C6.63,37.36,37.3,6.7,75.01,6.7c37.7,0,68.37,30.67,68.37,68.37c0,3.85-0.33,7.73-0.98,11.55l-22.92,16.69l-3.19,25.32H81.87l-3.64,2.68C77.34,131.95,76.18,132.31,75.01,132.31z"/>
<path fill="#DA291C" d="M68.47,135.84c1.92,1.39,4.2,2.1,6.53,2.1c2.33,0,4.63-0.72,6.54-2.1l2.17-1.58h37.53l3.51-27.84l22.76-16.57C148.5,85,149,80.04,149,75.06c0-40.86-33.15-74-74-74S1,34.2,1,75.06C1,80.04,1.48,85,2.5,89.85l22.76,16.57l3.49,27.84h37.56L68.47,135.84z M67.49,121.31H40.18l-2.74-22.06L14.94,82.9c-0.66-2.57-1-5.18-1-7.84c0-4.42,0.93-8.79,2.75-12.82l39.81,40.23L17.8,54.72c1.52-6.2,4.89-11.79,9.67-16.02l34.7,59.86L31.41,33.03c3.97-5.31,9.51-9.2,15.85-11.15l21.21,74.33l-15.5-77.4c4.74-2.67,10.02-4.06,15.45-4.06c1.15,0,2.29,0.05,3.42,0.17L75,95.42l3.15-80.49c1.15-0.12,2.28-0.17,3.45-0.17c5.39,0,10.72,1.39,15.44,4.06l-15.5,77.4l21.23-74.33c6.31,1.95,11.85,5.85,15.83,11.15L87.86,98.56l34.7-59.86c4.75,4.23,8.13,9.82,9.67,16.02l-38.7,47.76l39.81-40.23c1.8,4.03,2.71,8.4,2.71,12.82c0,2.66-0.32,5.27-1,7.84l-22.46,16.35l-2.76,22.06H82.52l-4.02,2.93c-1.03,0.73-2.25,1.16-3.5,1.16c-1.25,0-2.47-0.42-3.48-1.16L67.49,121.31z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

3
logos/Toyota.svg Normal file
View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="950" height="157.02" viewBox="0 0 251.35 41.55">
<path d="M99.2 5.96H73.74v5.63h9.4v24h6.67v-24h9.4V5.96m24.89 19.57a8.17 8.17 0 0 1-6.16 5.03 8.96 8.96 0 0 1-1.54.14c-.53 0-1.05-.05-1.55-.14a8.15 8.15 0 0 1-6.15-5.03 13 13 0 0 1-.9-4.76 13 13 0 0 1 .9-4.75 8.16 8.16 0 0 1 6.15-5.04 8.52 8.52 0 0 1 3.1 0 8.16 8.16 0 0 1 6.15 5.03 13.1 13.1 0 0 1 0 9.52m-7.7-20.46a15.7 15.7 0 1 0 0 31.41 15.7 15.7 0 0 0 0-31.41zm15.8.9h7.86l7.33 12.73 7.33-12.74h7.85l-11.85 18.67v10.96h-6.66V24.63L132.2 5.96m46.2 24.74c.52 0 1.04-.05 1.54-.14a8.15 8.15 0 0 0 6.15-5.03 13 13 0 0 0 0-9.51 8.15 8.15 0 0 0-6.15-5.03 8.78 8.78 0 0 0-3.1 0 8.15 8.15 0 0 0-6.14 5.03 12.99 12.99 0 0 0-.9 4.75c0 1.68.32 3.29.9 4.76a8.14 8.14 0 0 0 6.15 5.03 8.84 8.84 0 0 0 1.55.14m-15.7-9.93a15.7 15.7 0 1 1 31.4 0 15.7 15.7 0 0 1-31.4 0zm76.87 3.1-4.36-11.71-4.37 11.7h8.73m1.93 5.19h-12.6l-2.43 6.52h-7.42l12-29.63h8.3l12 29.63h-7.4zM221.01 5.96h-25.46v5.63h9.4v24h6.67v-24H221V5.96M46.54 2.04A47.5 47.5 0 0 0 32.22 0 47.5 47.5 0 0 0 17.9 2.04C7.3 5.45 0 12.53 0 20.69c0 11.49 14.4 20.86 32.22 20.86 17.78 0 32.22-9.33 32.22-20.86 0-8.16-7.28-15.24-17.9-18.65zM32.22 32.6c-2.66 0-4.83-5.2-4.95-11.79 1.58.17 3.24.21 4.95.21 1.7 0 3.37-.08 4.96-.2-.13 6.57-2.3 11.78-4.96 11.78ZM27.6 15.7c.7-4.63 2.5-7.87 4.62-7.87 2.08 0 3.87 3.24 4.62 7.86a52.52 52.52 0 0 1-9.24.01zm12.07-.38c-1.08-7.2-4-12.4-7.45-12.4s-6.37 5.16-7.45 12.4c-6.54-1.04-11.12-3.33-11.12-6.04 0-3.66 8.33-6.62 18.57-6.62S50.8 5.62 50.8 9.28c0 2.7-4.58 5.04-11.12 6.04zM4.7 19.94c0-3.54 1.38-6.83 3.75-9.7-.04.2-.04.42-.04.58 0 4.46 6.66 8.2 15.94 9.62v1c0 8.24 2.3 15.24 5.46 17.65-14.07-.83-25.1-9.08-25.1-19.15zm29.94 19.2c3.16-2.42 5.45-9.42 5.45-17.66v-1c9.28-1.37 15.94-5.16 15.94-9.61 0-.21 0-.42-.04-.59a15.06 15.06 0 0 1 3.75 9.7c0 10.03-11.03 18.28-25.1 19.15z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

329
logos/Unilever.svg Normal file
View File

@ -0,0 +1,329 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 51448) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_svg "http://www.w3.org/2000/svg">
<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
]>
<svg version="1.1" id="Layer_1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" width="107.567" height="119"
viewBox="0 0 107.567 119" overflow="visible" enable-background="new 0 0 107.567 119" xml:space="preserve">
<g>
<g>
<defs>
<rect id="XMLID_1_" x="0" width="107.566" height="119"/>
</defs>
<clipPath id="XMLID_3_">
<use xlink:href="#XMLID_1_" />
</clipPath>
<path clip-path="url(#XMLID_3_)" fill="#1766A6" d="M13.854,104.624c-0.176-0.561-0.69-1.822-0.83-2.753
c-0.309-2.062,0.769-3.42,1.759-3.731c1.111-0.31,1.545,0.248,1.975,1.545c0.556,1.975,0.618,4.563,0.431,8.268
c-0.243,5.061-2.775,11.173-9.069,11.046c-5.433-0.119-7.837-3.638-8.087-9.007c-0.118-2.531,0.063-5.061,1.111-8.639
c0.556-1.916,1.052-2.598,2.777-2.965c1.356-0.248,1.234,1.17,0.927,2.842c-0.676,3.701-0.99,5.488-0.74,9.687
c0.242,4.444,2.283,6.173,4.505,6.173c3.333,0.064,4.813-2.713,5.433-6.729C14.535,107.153,14.166,105.61,13.854,104.624z
M84.918,109.007c1.298,0,1.67,1.535,1.36,2.465c-0.31,0.924-1.419,1.978-3.146,2.285
C82.76,112.829,82.574,109.007,84.918,109.007z M60.792,111.099c0-1.045-0.559-1.91-1.232-1.91c-0.562,0-1.853,0.615-1.853,2.591
c0,1.548,0.55,2.282,0.802,2.597C60.294,113.819,60.792,112.334,60.792,111.099z M41.594,98.511
c-0.087-0.99-0.863-1.664-1.913-1.664c-1.171,0-2.274,1.229-2.157,2.773c0.075,1.018,0.675,1.855,1.854,1.855
C40.731,101.476,41.718,99.933,41.594,98.511z M51.631,102.136c-0.107-1.726-0.525-2.505-1.452-2.441
c-1.229,0.074-1.797,3.941-1.546,8.006c0.16,2.652,0.555,3.061,0.923,3.035C50.236,110.695,51.867,105.957,51.631,102.136z
M92.572,108.633c-0.765,3.173-3.084,7.841-6.544,7.841c-0.801,0-2.221-0.311-2.221-1.113c0-0.865,5.435-0.984,5.435-5.122
c0-1.541-1.419-3.704-3.519-3.704c-2.777,0-5.486,3.027-5.486,7.223c0,3.762,2.337,4.997,4.682,4.997
c4.075,0,6.544-3.335,7.839-6.11c0.62,1.852,0.984,6.11,2.533,6.11c0.615,0,1.05-0.309,1.791-1.973
c1.847-4.138,3.639-8.89,6.109-8.89c0.923,0,0.37,1.67,2.591,1.67c1.047,0,1.785-0.864,1.785-1.856
c0-1.421-1.294-2.528-3.267-2.528c-5.803,0-7.033,8.703-7.96,8.703c-1.544,0-1.05-6.975-2.163-6.975
C93.189,106.905,92.704,108.082,92.572,108.633z M43.2,116.038c0.925,0,2.516-0.3,3.768-2.305
c-0.716-1.59-1.227-4.803-1.298-5.973c-0.368-5.983,1.937-11.611,4.46-11.767c1.85-0.112,3.33,1.639,3.5,4.476
c0.455,7.455-2.028,10.567-3.271,13.252c0.21,1.041,1.976,2.813,3.642,2.813c0.615,0,1.359-0.309,1.546-0.559
c-0.124-0.429-0.25-0.984-0.25-1.789c0-4.32,2.778-7.963,5.186-7.963c1.913,0,3.024,2.53,3.024,4.2
c0,1.972-1.668,3.58-4.135,5.123c0.434,0.429,1.232,0.741,1.914,0.741c3.521,0,5.363-4.26,6.727-8.15
c0.246-0.742,0.681-1.789,1.543-1.789c1.481,0,2.101,9.752,4.563,9.752c1.053,0,1.915-2.162,1.915-3.824
c0-1.236-0.432-1.36-0.432-3.15c0-1.973,1.05-3.638,2.473-3.638c0.863,0,1.175,0.86,1.175,1.907
c0,3.951-2.843,11.297-7.034,11.297c-3.153,0-2.907-5.432-4.017-5.432c-1.24,0-2.968,5.493-9.072,5.493
c-0.992,0-2.039-0.493-2.901-1.483c-1.479,0.99-2.717,1.422-4.137,1.422c-2.281,0-3.271-2.346-4.194-2.346
c-1.113,0-2.344,2.407-6.051,2.407c-2.962,0-3.456-3.946-4.503-3.946c-0.928,0-2.347,3.946-3.889,3.946
c-2.596,0-3.146-6.849-5.434-6.849c-1.789,0-7.444,6.956-8.979,6.797c-0.617-0.064-0.877-0.525-0.812-1.143
c0.087-0.854,0.822-3.14,1.12-4.221c0.499-1.877,0.957-3.934,1.213-4.59c0.254-0.662,0.939-1.134,1.489-1.083
c0.277,0.026,0.36,0.543,0.446,0.97c0.312,1.526,0.747,3.082,1.238,3.082c0.867,0,3.73-5.494,5.396-5.494
c2.04,0,2.284,8.643,5.06,8.643c0.928,0,1.609-1.109,2.224-2.471c0.063-2.287,0.68-5.551,2.531-5.551
c1.297,0,1.915,2.898,0.986,5.432C39.928,115.297,41.901,116.038,43.2,116.038"/>
</g>
<path fill="#1766A6" d="M86.188,19.254c-0.458,0-1.114,0-1.475-0.719c-0.296-0.59-0.196-1.541-0.753-1.966
c0.557,0.163,1.146,0.163,1.604,0.163c1.476,0,2.886-1.015,3.968-1.015c0.713,0,0.943,0.459,0.943,0.916
C90.476,18.076,87.566,19.254,86.188,19.254z M86.908,22.955c3.403,0,6.519-2.718,6.519-5.108c0-1.115-0.526-2.031-1.869-2.195
c0.229,0.295,0.327,0.524,0.327,1.048c0,1.802-2.745,3.8-5.729,3.8c-1.082,0-1.41,0.752-1.41,1.145
C84.746,22.563,85.632,22.955,86.908,22.955z M86.647,24.331c0.427,3.11,5.14,7.303,6.417,7.204
c0.854-0.072,1.181-4.061,1.181-7.204c0-1.801,0.099-3.21-0.852-3.538C91.884,23.84,87.926,24.462,86.647,24.331"/>
<path fill="#1766A6" d="M12.933,44.93c1.112,0,0.883-6.813,2.684-6.813c0.427,0,0.558,0.426,0.558,0.95
c0,1.539-0.754,3.8-0.754,5.043c0,0.623,0.164,0.82,0.459,0.82c0.787,0,2.162-7.501,3.504-7.501c0.426,0,0.622,0.426,0.622,0.852
c0,1.572-1.996,6.091-1.996,7.368c0,0.197,0.064,0.36,0.229,0.36c0.819,0,2.456-3.536,2.979-5.304
c0.295-0.918,0.688-1.41,1.049-1.41c0.327,0,0.623,0.361,0.623,1.115c0,1.768-1.639,5.927-3.08,8.712
c-1.112,2.161-2.848,5.27-2.848,7.006c0,0.885,0.161,1.801,1.439,2.915c-2.096-0.131-2.947-0.327-3.732-1.964
c-3.505,6.975,6.451,6.288,3.045,12.475c-0.623-1.111-5.534-2.258-5.534-8.742c0-5.6,4.911-8.875,4.911-11.199
c0-0.458-0.162-0.851-0.588-1.211c-1.082-0.919-1.115-1.67-1.966-1.67c-0.621,0-1.377,1.44-0.59,2.717
c0.263,0.426,0.492,0.688,0.492,1.081c0,0.916-1.442,3.371-2.456,3.371c-1.016,0-1.8-2.518-1.8-6.581
c0-3.604,0.817-7.237,1.833-7.237c0.294,0,0.392,0.196,0.392,0.459c0,0.426-0.13,1.276-0.13,2.717
C12.278,44.798,12.638,44.93,12.933,44.93"/>
<path fill="#1766A6" d="M21.282,54.524c1.377,0,2.522-1.017,2.522-3.273v-3.342c0-1.277,0.099-2.717,0.951-3.734
c-0.099,0.427-0.099,0.885-0.099,1.311c0,2.817,1.571,4.75,1.571,7.467c0,1.014-0.295,1.572-1.079,1.572
c-0.754,0-0.688-0.688-0.853-0.688c-0.13,0-0.327,0.425-0.327,0.884c0,0.688,0.491,1.768,1.866,1.768
c1.18,0,2.128-1.08,2.128-2.292c0-2.945-2.292-6.222-2.292-9.365c0-1.376,0.36-2.292,0.655-3.014
c0,6.518,5.534,11.266,5.534,13.983c0,0.623-0.458,1.115-1.146,1.115c-0.753,0-1.114-0.591-1.114-1.05
c0-0.229-0.033-0.294-0.131-0.294c-0.195,0-0.785,0.655-0.785,1.508c0,1.079,0.883,2.391,2.521,2.391
c1.865,0,2.881-1.574,2.881-2.982c0-3.437-6.713-8.645-6.713-14.211c0-0.951,0.162-2.49,0.852-3.668
c-4.323,2.782-5.665,6.484-5.665,9.726c0,2.817-0.098,4.223-1.539,4.223c-0.754,0-0.95-0.686-1.213-0.686
c-0.196,0-0.295,0.589-0.295,0.752C19.514,53.836,20.399,54.524,21.282,54.524"/>
<path fill="#1766A6" d="M70.897,17.65c0.416-0.279,2.262,0.163,4.649-1.017c0.294-0.161,0.589-0.227,0.851-0.227
c1.148,0,0.853,1.309,1.902,1.309c0.817,0,1.868-0.688,2.491-0.688c0.976,0,2.385,3.079,2.385,4.52c0,1.67-2.517,2.686-5.499,2.686
c-4.353,0-6.976-3.799-6.976-6.256C70.701,17.781,70.8,17.715,70.897,17.65z M78.037,21.809c1.442,0,2.523-0.655,2.523-1.049
c0-0.129-0.196-0.228-0.623-0.228c-0.426,0-1.278-0.032-2.884-0.295c-1.378-0.229-2.426-0.753-2.819-0.753
c-0.131,0-0.197,0.065-0.197,0.163C74.037,20.5,75.611,21.809,78.037,21.809"/>
<path fill="#1766A6" d="M21.971,66.87c-1.08,0.263-2.817,1.963-2.817,4.652c0,3.207,3.439,8.154,9.104,8.154
c4.78,0,5.96-3.308,5.96-5.537c0-4.944-3.044-8.416-7.006-8.416c-2.162,0-4.095,1.572-4.095,3.896c0,2.164,1.638,5.405,5.534,5.405
c1.834,0,2.914-1.312,2.914-2.814c0-1.475-1.342-3.504-3.308-3.504c-0.589,0-1.014,0.389-1.014,1.014
c0,0.784,1.079,1.572,2.423,1.572c0.326,0,0.589-0.066,0.721-0.132c0.064,0.101,0.098,0.263,0.098,0.394
c0,0.754-0.721,1.213-1.834,1.213c-1.67,0-3.275-1.244-3.275-3.213c0-1.176,1.016-2.027,2.489-2.027
c2.914,0,4.649,2.586,4.649,5.175c0,2.323-1.275,3.668-3.896,3.668C23.378,76.369,20.826,71.652,21.971,66.87"/>
<path fill="#1766A6" d="M59.353,86.058c1.571,0,1.489-0.131,1.981-0.131c0.49,0,0.524,0.295,0.524,0.492
c0,0.721-1.606,1.605-4.455,1.605c-1.67,0-2.686-0.885-2.98-1.867c-1.637,1.048-4.125,1.998-6.582,1.998
c-6.712,0-8.415-2.917-10.512-3.864c-1.605-0.721-4.061,0.688-7.5-3.144c0.459,0.099,1.082,0.131,1.573,0.131
c3.011,0,4.616-1.471,4.616-3.831c0-0.296-0.033-0.62-0.066-0.914c0.918,0.36,3.015,1.93,3.507,4.713
c0.064,0.328,1.406,0.622,2.258,0.622c1.18,0,2.686-0.492,2.915-2.422c3.93-0.327,6.584-2.651,7.141-5.602
c1.406,0.459,3.011,1.736,3.404,2.393c0.557-0.196,1.211-0.295,1.964-0.295c1.048,0,2.228,0.197,3.635,0.623
c0.066-0.426,0.131-0.95,0.787-0.95c0.982,0,0.72,1.081,1.048,1.7c0.164,0.328,0.984,0.524,0.984,1.18
c0,0.624-0.527,0.854-0.854,0.854c-0.131,0-0.295-0.033-0.394-0.065c-0.654,0.229-0.688,4.942-3.438,4.942
c-2.029,0-3.896-1.67-4.716-3.764c-0.229-0.622-0.72-1.016-1.179-1.016c-0.523,0-0.818,0.099-1.439,0.787
c-1.768,1.93-4.716,3.6-8.351,3.6c-1.114,0-1.998-0.1-2.228-0.1c-0.132,0-0.132,0.033-0.132,0.065c0,0.23,1.113,1.115,3.537,1.115
c5.764,0,7.173-3.243,8.089-3.243c0.133,0,0.523,0,0.752,0.525C54.587,85.337,57.519,86.058,59.353,86.058z M56.814,79.513
c0,0.721,0.59,1.311,1.311,1.311s1.31-0.59,1.31-1.311c0-0.722-0.589-1.312-1.31-1.312S56.814,78.791,56.814,79.513"/>
<path fill="#1766A6" d="M82.75,63.169c-0.459,0-0.95,0.361-0.95,1.247c0,0.979,0.754,1.603,1.179,1.798
c0.23,0.133,0.591,0.264,0.948,0.264c0.951,0,1.706-0.264,1.706-1.051C85.632,64.416,84.156,63.169,82.75,63.169z M79.217,65.198
c-0.688,0-4.492,5.076-6.943,5.076c-0.589,0-1.081-1.113-1.081-1.961c0-0.459,0.294-0.787,1.345-1.018
c5.631-1.277,4.385-5.503,9.195-5.503c2.652,0,5.604,1.804,5.604,5.863c0,4.323-6.153,9.692-7.071,9.692
c-0.754,0-1.573-1.08-1.573-1.8c0-0.229,0.099-0.524,0.754-0.786c3.14-1.246,4.939-4.127,4.939-5.602
c0-0.328-0.163-0.652-0.589-0.652c-0.556,0-2.94,5.434-5.596,5.434c-1.837,0-3.705-1.666-3.705-2.454
c0-1.312,5.311-3.733,5.311-5.569C79.806,65.229,79.479,65.198,79.217,65.198"/>
<path fill="#1766A6" d="M14.406,22.268c0,0-0.949,0.719-2.128,0.719c-1.407,0-2.521-1.047-2.521-2.521
c0-1.016,0.524-2.063,1.735-2.588c-0.032,0.197-0.032,0.36-0.032,0.557C11.459,20.303,12.507,21.71,14.406,22.268z M21.414,28.556
c-0.72,0.85-1.474,2.292-1.474,3.765c0,1.768,1.082,3.241,2.752,3.241c1.604,0,2.358-1.375,2.358-2.782
C25.05,30.586,23.052,29.045,21.414,28.556z M10.543,29.865c-0.062,0.101-0.099,0.23-0.099,0.361c0,0.295,0.328,0.622,0.621,0.622
c0.262,0,0.426-0.065,0.557-0.065c0.785,0,1.67,0.556,2.947,0.556c0.752,0,1.637-0.23,2.75-0.785
c2.358-1.18,3.276-4.094,3.276-4.586c0-0.623-0.5-0.541-0.918-1.114c-0.418-0.571-0.258-1.076-0.524-1.343
c-0.151-0.153-0.621-0.163-1.212-0.229c-0.197-0.021-0.459-0.033-0.721-0.033c-1.079,0-2.36,0.133-3.798,1.049
C10.582,26.111,11,29.112,10.543,29.865z M18.238,25.804c0.227,0.309,0.853,0.689,0.853,0.918c0,0.457-0.264,1.048-0.787,1.048
c-1.147,0-2.063-1.736-2.063-2.72c0-0.621,0.361-0.686,0.851-0.686c0.229,0,0.328,0.033,0.491,0.131
C17.877,24.659,17.877,25.313,18.238,25.804z M15.224,29.8c-1.08,0-2.259-1.342-2.259-2.555c0-0.654,0.491-1.474,0.851-1.474
c0.131,0,0.197,0.099,0.229,0.329c0.196,1.604,1.245,2.522,2.228,2.979c0.098,0.065,0.164,0.098,0.164,0.163
C16.437,29.472,15.814,29.8,15.224,29.8z M18.009,21.547c0.163-0.525,0.294-1.178,0.294-1.9c0-1.571-0.722-3.962-2.948-3.962
c-1.276,0-2.195,1.015-2.195,2.227C13.16,20.5,15.748,21.547,18.009,21.547z M9.527,34.646c0,2.488,0.754,3.668,2.096,3.668
c1.048,0,2.456-0.754,4.125-2.195c-1.276,0.295-2.26,0.492-3.143,0.492C11.426,36.611,10.51,36.152,9.527,34.646z M10.674,31.731
c-0.032,0.165-0.032,0.328-0.032,0.491c0,1.539,0.817,2.391,1.898,2.391c0.816,0,1.768-0.491,2.617-1.573
c-0.358,0.065-0.785,0.098-1.178,0.098C12.769,33.138,11.459,32.812,10.674,31.731z M18.697,31.273
c-0.755,0.196-2.326,1.113-2.326,2.75c0,1.178,0.916,1.933,2.063,1.933c0.59,0,1.015-0.132,1.277-0.328
c-0.916-0.884-1.244-1.867-1.244-2.848C18.467,32.091,18.565,31.666,18.697,31.273z M19.875,22.3c0,0.72,0.589,1.311,1.309,1.311
c0.721,0,1.311-0.59,1.311-1.311c0-0.72-0.59-1.311-1.311-1.311C20.464,20.989,19.875,21.58,19.875,22.3z M21.577,25.247
c0,0.721,0.591,1.311,1.313,1.311c0.719,0,1.309-0.59,1.309-1.311c0-0.719-0.59-1.309-1.309-1.309
C22.167,23.938,21.577,24.528,21.577,25.247"/>
<path fill="#1766A6" d="M72.668,41.326c0-0.654,0.59-1.211,1.237-1.211c0.722,0,1.279,0.557,1.279,1.211
c0,0.753-0.558,1.278-1.279,1.278C73.258,42.604,72.668,42.079,72.668,41.326z M61.17,31.24c0,0.72,0.591,1.31,1.309,1.31
c0.723,0,1.313-0.59,1.313-1.31c0-0.719-0.591-1.309-1.313-1.309C61.761,29.931,61.17,30.521,61.17,31.24z M60.058,35.857
c0,1.016,0.849,1.866,1.866,1.866c1.014,0,1.868-0.85,1.868-1.866c0-1.014-0.854-1.867-1.868-1.867
C60.907,33.99,60.058,34.843,60.058,35.857z M64.185,33.761c0,1.115,0.885,1.998,1.992,1.998c1.113,0,2.001-0.883,2.001-1.998
c0-1.113-0.888-1.997-2.001-1.997C65.07,31.764,64.185,32.648,64.185,33.761z M64.35,29.504c0,0.689,0.557,1.247,1.238,1.247
c0.688,0,1.245-0.558,1.245-1.247c0-0.686-0.558-1.243-1.245-1.243C64.907,28.261,64.35,28.818,64.35,29.504z M70.275,26.362
c0,0.686,0.557,1.243,1.246,1.243c0.688,0,1.246-0.557,1.246-1.243c0-0.689-0.558-1.246-1.246-1.246
C70.832,25.116,70.275,25.673,70.275,26.362z M67.817,30.39c0,1.145,0.95,2.094,2.097,2.094c1.148,0,2.099-0.949,2.099-2.094
c0-1.148-0.95-2.096-2.099-2.096C68.767,28.294,67.817,29.242,67.817,30.39z M64.447,38.052c0,0.721,0.59,1.309,1.305,1.309
c0.721,0,1.312-0.588,1.312-1.309c0-0.721-0.591-1.31-1.312-1.31C65.037,36.742,64.447,37.331,64.447,38.052z M68.735,35.431
c0,0.721,0.589,1.311,1.312,1.311c0.72,0,1.31-0.59,1.31-1.311c0-0.719-0.59-1.309-1.31-1.309
C69.324,34.122,68.735,34.712,68.735,35.431z M67.523,40.049c0,1.244,1.015,2.26,2.261,2.26c1.245,0,2.263-1.016,2.263-2.26
c0-1.244-1.018-2.26-2.263-2.26C68.538,37.789,67.523,38.805,67.523,40.049z M72.241,37.264c0,0.853,0.689,1.541,1.535,1.541
c0.852,0,1.54-0.688,1.54-1.541c0-0.85-0.688-1.538-1.54-1.538C72.93,35.726,72.241,36.414,72.241,37.264z M72.143,33.138
c0,0.755,0.624,1.377,1.369,1.377c0.755,0,1.378-0.622,1.378-1.377c0-0.752-0.623-1.374-1.378-1.374
C72.767,31.764,72.143,32.386,72.143,33.138"/>
<path fill="#1766A6" d="M75.479,76.106c-0.852,0.656-2.844,2.127-6.155,2.127c-1.769,0-2.556-0.557-2.818-0.557
c-0.328,0-0.688,0.327-1.049,0.754c-0.778,0.918-1.795,2.621-1.795,4.486c0,1.309,1.017,2.617,2.909,2.617
c6.13,0,10.711-3.83,10.711-6.939C77.282,76.827,76.234,76.106,75.479,76.106z M73.776,75.746c0.265-0.226,0.327-0.589,0.327-0.951
v-0.753c0-0.951-1.435-1.505-3.402-1.505c-2.393,0-3.671,1.078-3.671,1.538v1.506c0,0.624,1.443,1.246,3.213,1.246
C71.652,76.827,72.93,76.467,73.776,75.746z M73.512,78.988c0.165,0,0.36,0.097,0.36,0.688c0,0.719-0.326,1.668-1.5,2.42
c-0.819,0.559-1.934,1.018-3.572,1.047c0.262-0.783,0.459-1.604,0.459-2.386c0-0.263-0.032-0.46-0.065-0.754h0.426
C72.209,80.004,73.324,78.988,73.512,78.988"/>
<path fill="#1766A6" d="M61.006,38.97c0.36,2.782,4.097,1.374,4.097,4.746c0,0.492-0.131,1.214-0.131,1.835
c0,0.721,0.064,1.343,0.616,1.343c0.556,0,0.688-0.392,0.688-0.917s-0.132-1.179-0.132-1.539c0-1.147,0.82-1.408,1.313-1.408
c1.245,0,2.195,1.277,4.064,1.277c-0.427,2.096-4.753,1.539-4.753,3.832c0,1.147,1.147,1.407,1.901,1.407
c0.688,0,0.918-0.098,0.918-0.686c0-0.329-0.066-0.689-0.066-0.918c0-0.132,0.099-0.263,0.263-0.263
c0.723,0,4.253,2.686,4.253,3.506c0,0.752-3.729,1.505-4.81,1.505c-0.328,0-0.394-0.229-0.394-0.36
c0-0.229,0.557-0.917,0.557-1.309c0-0.295-0.491-0.492-1.803-0.492c-0.623,0-1.082,0.066-1.082,0.558
c0,0.882,1.442,1.964,1.442,2.781c0,0.656-0.393,1.049-1.442,1.049c-0.885,0-2.223-0.689-2.223-1.834
c0-0.917,0.945-1.832,0.945-2.39c0-0.164-0.125-0.426-0.518-0.426c-1.214,0-1.541,3.208-5.833,3.569
c0.688-0.622,1.276-1.31,1.276-2.716c0-0.688-0.162-1.246-0.162-1.998c0-0.983,0.457-1.475,1.112-1.475
c1.211,0,1.801,1.702,2.59,1.702c0.427,0,0.885-0.391,0.885-0.981c0-2.489-4.783-2.129-4.783-5.633
C59.795,41.785,60.121,40.606,61.006,38.97z M76.626,48.565c0,0.817,0.264,1.767,1.083,1.767c0.688,0,1.277-1.046,1.277-2.193
c0-1.31-0.229-2.326-0.229-2.851c0-0.228,0.099-0.326,0.229-0.326c0.492,0.033,0.95,1.375,1.476,1.375
c0.59,0,1.469-1.082,1.828-1.082c0.099,0,0.131,0.132,0.131,0.164c0,0.492-0.754,1.574-0.754,1.999c0,0.36,1.901,0.425,1.901,0.753
c0,0.492-1.993,0.492-2.942,0.918c-0.917,0.392-1.477,0.883-1.477,1.539c0,0.655,0.656,0.785,1.574,0.785
c2.188,0,3.728-1.178,4.219-1.178c0.098,0,0.163,0.064,0.163,0.163c0,0.328-1.113,1.408-1.113,1.9c0,0.556,2.032,1.209,1.999,1.538
c-0.032,0.098-0.164,0.13-0.393,0.13c-0.362,0-0.918-0.098-1.345-0.098c-0.262,0-0.491,0.032-0.591,0.163
c-0.227,0.263,0.066,1.999-0.39,1.999c-0.427,0-1.541-3.864-4.057-3.864c-0.361,0-0.623,0.295-0.623,0.786
c0,1.309,1.278,2.815,2.491,3.536c0.549,0.361,1.468,0.721,1.468,0.919c0,0.391-2.091,0.032-2.091,0.686
c0,0.59,0.262,1.476,0.262,1.998c0,0.164-0.033,0.359-0.229,0.359c-0.393,0-1.345-1.8-1.803-1.8c-0.393,0-1.245,1.08-1.606,1.08
c-0.098,0-0.163-0.098-0.163-0.195c0-0.754,1.213-2.456,1.213-4.127c0-0.786-0.099-2.489-1.05-2.489
c-0.786,0-1.672,1.244-2.065,2.489c-0.228,0.72-0.065,3.504-0.59,3.504c-0.491,0-0.36-1.866-1.017-1.866
c-0.483,0-1.532,0.883-1.893,0.883c-0.066,0-0.132-0.033-0.132-0.098c0-0.392,0.951-1.67,0.951-1.932
c0-0.491-2.163-0.556-2.163-0.949c0-0.23,0.852-0.393,1.638-0.525c1.666-0.295,4.123-1.506,4.123-3.208
c0-1.899-1.835-2.719-3.041-3.505c-0.623-0.393-1.311-0.719-1.311-0.981c0-0.263,0.786-0.263,1.114-0.263
c0.491,0,0.977-0.033,0.977-0.425c0-0.296-0.066-0.884-0.066-1.343c0-0.328,0.032-0.59,0.165-0.59c0.491,0,1.179,1.604,1.508,1.604
c0.523,0,1.244-1.31,1.737-1.31c0.162,0,0.229,0.099,0.229,0.393C77.25,46.009,76.626,47.384,76.626,48.565"/>
<path fill="#1766A6" d="M61.957,57.634c1.508,0.197,1.869,0.72,1.869,1.147c0,0.721-0.656,0.949-1.28,0.949
c-0.457,0-0.982-0.098-1.539-0.098c-0.722,0-1.441,0.164-2.03,0.852c0.425,0.065,1.048,0.361,1.048,1.017
c0,1.899-5.272,0.325-5.272,5.207c0,2.586,2.686,5.404,6.745,5.404c2.099,0,3.442-0.688,3.442-1.476
c0-0.621-1.113-0.197-1.113-0.721c0-0.229,0.393-0.656,0.393-1.018c0-0.158-0.131-0.455-0.393-0.455
c-0.592,0-1.706,0.947-3.966,0.947c-1.769,0-3.505-1.012-3.505-2.389c0-0.294,0.132-0.459,0.328-0.459
c0.197,0,0.458,0.132,0.688,0.132c0.197,0,0.229-0.132,0.229-0.491c0-0.361,0-1.377,0.621-1.377c0.624,0,1.803,2.293,6.325,2.293
c1.501,0,4.418-0.293,5.5-1.277c-0.033,3.603-2.853,8.351-8.745,8.351c-6.124,0-9.399-4.913-9.399-9.433
c0-5.009,4.092-9.56,9.694-9.56c1.439,0,2.654,0.49,2.654,1.113C64.25,57.145,62.12,56.62,61.957,57.634z M72.012,59.372
c0.229,0.358,0.328,0.719,0.328,1.046c0,0.918-0.623,1.769-0.623,2.72c0,1.08,0.82,1.963,2.059,1.963
c1.343,0,2.261-1.078,2.261-2.357C76.037,61.008,74.464,59.535,72.012,59.372z M61.17,61.467c0.326,0.326,0.426,0.654,0.426,0.982
c0,0.491-0.229,1.016-0.229,1.573c0,0.783,0.59,1.472,1.44,1.472c0.919,0,1.543-0.722,1.543-1.57
C64.35,62.679,63.068,61.467,61.17,61.467z M65.523,55.899c3.441,0.655,5.309,3.243,5.309,5.667c0,1.671-1.048,3.207-2.884,3.207
c-1.672,0-2.878-1.145-2.878-2.979c0-1.375,1.074-2.816,1.074-4.225C66.144,57.013,65.981,56.456,65.523,55.899z M67.227,60.255
c0,0.458,0.328,0.819,0.787,0.819c0.523,0,0.852-0.459,0.852-0.983c0-0.687-0.623-1.637-1.213-1.637
c-0.263,0-0.164,0.393-0.229,0.819C67.39,59.599,67.227,59.992,67.227,60.255"/>
<path fill="#1766A6" d="M31.076,26.558c1.113,0,2.389-6.026,2.389-7.042c0-0.262-0.097-0.459-0.326-0.459
c-1.016,0-2.423,5.732-2.423,7.01C30.715,26.296,30.78,26.558,31.076,26.558z M39.099,28.359c0.817,0,1.734-3.145,1.734-5.11
c0-0.426-0.065-0.883-0.263-0.883c-0.688,0-1.834,3.242-1.834,5.01C38.737,28.064,38.902,28.359,39.099,28.359z M33.758,25.444
c0.36,0,0.819-0.395,1.673-1.342c0.064-0.426,0.064-0.82,0.064-1.311c0-0.654-0.262-1.375-0.654-1.375
c-0.984,0-1.474,2.62-1.474,3.309C33.368,25.116,33.563,25.444,33.758,25.444z M38.246,24.102c0-0.558-0.132-0.689-0.262-0.689
c-0.328,0-0.687,0.394-1.211,1.278c0.065,1.179,0.262,1.703,0.589,1.703C37.722,26.394,38.246,25.247,38.246,24.102z
M40.768,20.237c2.162,0,3.143,1.867,3.143,3.963c0,0.916-0.26,2.26-0.686,2.26s-0.36-0.754-0.426-1.442
c-0.065-0.884-0.23-1.08-0.525-1.08c-0.557,0-0.916,1.309-0.916,2.522c0,0.752,0.131,1.604,0.719,1.604
c0.328,0,0.623-0.164,0.82-0.36c-0.131,1.505-1.246,2.817-2.817,2.817c-2.882,0-3.963-3.374-4.289-5.339
c-1.736,1.834-3.34,3.177-6.223,3.177c-2.684,0-3.896-1.965-3.896-3.831c0-0.558,0.196-1.998,0.885-1.998
c0.818,0,0.098,2.684,1.702,2.684c0.394,0,1.112-0.328,1.507-1.407c0.229-0.656,0.36-1.342,0.36-1.933
c0-0.885-0.196-1.44-0.851-1.44c-0.558,0-1.246,0.424-1.475,0.654c0.787-2.358,2.686-3.569,4.779-3.569
c2.59,0,3.964,2.292,3.964,4.847c0,0.359-0.033,0.752-0.099,1.113C37.558,21.645,39.099,20.237,40.768,20.237"/>
<path fill="#1766A6" d="M34.644,29.045c-1.408,0-1.473,1.706-1.473,5.142c-1.049-2.259-2.783-4.683-4.814-4.683
c-1.375,0-1.898,0.918-1.898,2.521c0,0.328,0.032,0.82,0.098,1.113c0.164-0.555,0.688-0.785,1.342-0.785
c1.41,0,3.112,1.08,4.225,2.555c-1.276-0.229-2.521-0.459-3.568-0.459c-0.656,0-1.245,0.066-1.736,0.295
c-0.95,0.425-2.227,1.834-2.227,3.963c0,0.328,0.033,0.687,0.099,1.08c1.146-2.555,4.191-3.701,6.156-3.701
c0.394,0,0.687,0.033,0.917,0.066c-1.016,0.916-1.244,2.521-1.311,3.602c-0.031,0.524-0.229,0.558-0.59,0.558
c0,1.079,0.853,2.685,0.853,3.503c0,0.295-0.164,0.557-0.327,0.623c0,1.441,1.439,2.489,1.439,3.405
c0,0.229-0.064,0.426-0.164,0.525c0.1,0.59,1.684,1.581,1.889,2.078c0.252,0.604,0.535,0.706,0.699,0.706
c0.557,0,1.439-0.656,1.439-1.246c0-0.196-0.164-0.425-0.293-0.524c-0.623-0.457-0.951-1.44-1.213-2.094
c-0.23,0-0.526-0.097-0.63-0.483c-0.179-0.678-0.188-1.941-0.45-2.695c-0.426-0.098-0.623-0.262-0.623-1.146
c0-0.426,0.263-2.097,0.263-2.687c-0.196,0-0.458-0.131-0.458-0.524c0-1.047,1.049-1.866,1.342-3.208
c1.867,1.374,2.324,2.782,2.324,4.028c0,0.653-0.098,1.276-0.229,1.867c1.376-0.689,3.439-1.704,3.439-3.767
c0-1.213-0.557-2.555-4.258-3.079c1.146-0.426,2.588-0.654,3.799-0.654c2.097,0,3.308,0.654,3.569,2.127
c0.426-0.654,0.754-1.408,0.754-2.095c0-1.606-1.344-2.652-3.046-2.652c-1.998,0-3.766,1.046-5.666,2.325
c0.854-1.768,1.44-2.816,2.49-2.816c0.163,0,0.327,0.033,0.491,0.066C36.904,30.455,35.431,29.045,34.644,29.045"/>
<path fill="#1766A6" d="M89.82,52.657c1.64,0,2.95,2.128,2.95,4.618c0,2.652-1.246,5.535-3.467,7.498
c-0.033-4.42-5.443-3.012-5.443-6.22c0-1.375,0.985-2.293,2.165-2.293c1.049,0,1.868,0.295,2.458,0.886
c-0.59-0.558-0.885-1.345-0.885-2.097C87.598,53.802,88.385,52.657,89.82,52.657"/>
<path fill="#1766A6" d="M60.58,21.547c0.853,0.819,1.604,1.178,2.522,1.178c0.362,0,0.789-0.097,1.019-0.097
c0.295,0,0.49,0.13,0.49,0.359c0,0.361-0.328,0.951-0.72,1.279c0.392,0.163,0.819,0.229,1.278,0.229c1.86,0,3.99-1.18,3.99-4.126
c0.395,0.522,0.624,1.604,0.624,2.096c0,3.569-2.623,4.944-5.041,4.944c-1.573,0-2.361-0.525-2.559-0.525
c-0.621,0-0.588,1.246-1.014,1.213c-0.754-0.131-1.44-1.801-1.44-3.569C59.73,23.479,59.992,22.366,60.58,21.547z M65.523,19.156
c-0.262-0.426-1.24-0.654-1.697-0.654c-1.444,0-2.427,1.014-2.623,1.932c-0.131-0.328-0.229-0.721-0.229-1.114
c0-1.441,0.983-3.209,3.377-3.209c2.09,0,2.909,1.113,3.205,1.113c0.327,0,0.655-0.328,0.918-0.328c0.36,0,0.36,0.557,0.36,0.951
c0,1.309-0.591,3.569-2.065,4.388c-0.263-0.557-0.787-1.18-1.633-1.572c-0.229-0.098-0.327-0.294-0.327-0.491
C64.808,19.811,65.135,19.352,65.523,19.156"/>
<path fill="#1766A6" d="M37.82,12.017c0,1.146,4.093,6.746,4.88,6.746c0.656,0,1.146-1.146,1.146-2.13
c0-0.26-0.066-0.521-0.195-0.719c-0.59-0.819-4.749-4.094-5.667-4.094C37.885,11.82,37.82,11.919,37.82,12.017z M13.75,8.644
c0,0.656-2.488,2.849-3.371,2.849c-0.327,0-0.427-0.392-0.427-0.752c0-0.654,0.295-1.572,0.656-1.868
c0.424-0.393,1.407-0.587,2.16-0.587C13.226,8.286,13.75,8.382,13.75,8.644z M43.651,10.544c0-1.966-5.313-5.535-5.372-7.073
c-0.006-0.141,0.071-0.281,0.19-0.406c0.91-0.96,4.689-1.66,4.689-2.478c0-0.424-0.787-0.424-1.18-0.424
c-3.045,0-7.499,1.113-7.499,2.193c0,1.115,3.995,3.833,3.995,5.176c0,0.36-0.229,0.491-0.59,0.491
c-1.112,0-3.536-1.344-4.682-1.344c-0.524,0-0.722,0.36-0.722,0.886c0,1.571,1.867,4.551,1.867,5.433
c0,0.099-0.033,0.23-0.164,0.23c-0.59,0-3.371-3.273-4.355-3.273c-0.359,0-0.393,0.49-0.393,1.211v1.113
c0,0.753-0.033,1.212-0.391,1.212c-0.854,0-1.246-2.39-2.064-2.39c-0.852,0-1.016,4.256-1.833,4.256
c-0.951,0-0.132-4.683-1.049-4.683c-1.015,0-2.162,3.112-2.883,3.112c-0.261,0-0.326-0.263-0.326-0.492
c0-0.949,0.555-2.488,0.555-3.404c0-0.46-0.131-0.721-0.522-0.721c-1.017,0-3.243,1.637-4.094,1.637
c-0.131,0-0.295-0.065-0.295-0.197c0-0.784,3.569-3.274,3.569-4.387c0-1.082-4.914-0.36-4.914-1.606
c0-1.047,3.507-2.128,3.507-3.209c0-0.95-4.16-1.374-5.764-1.374c-1.933,0-2.98,0.227-2.98,0.784c0,0.852,4.389,1.115,4.389,1.867
c0,0.721-4.553,2.653-4.553,3.766c0,0.983,6.418,0.065,6.418,1.082c0,1.112-5.598,5.925-5.598,7.53
c0,0.361,0.262,0.525,0.621,0.525c1.703,0,6.122-3.242,7.335-3.242c0.426,0,0.459,0.523,0.459,0.982
c0,0.852-0.294,2.161-0.294,3.112c0,0.752,0.196,1.276,0.85,1.276c1.214,0,2.325-2.063,3.146-2.063
c1.047,0,0.425,6.058,1.997,6.058c1.342,0,1.898-6.549,2.75-6.549s1.541,1.899,2.326,1.899c0.981,0,0.523-3.307,1.572-3.307
c1.145,0,4.42,3.93,5.894,3.93c0.458,0,0.621-0.361,0.621-0.82c0-1.736-2.422-5.664-2.422-6.908c0-0.327,0.097-0.426,0.457-0.426
c1.277,0,5.012,1.768,6.779,1.768C43.292,11.297,43.651,10.97,43.651,10.544z M40.244,4.06c0,0.589,2.063,1.867,3.014,1.867
c0.556,0,0.72-0.754,0.72-1.54c0-0.982-0.424-1.015-1.277-1.015C41.62,3.372,40.244,3.667,40.244,4.06z M32.548,0.719
c0-0.197-0.982-0.394-2.324-0.394c-2.129,0-1.834,1.771-3.471,1.771c-1.703,0-1.279-1.836-3.44-1.836c-1.31,0-2.52,0.23-2.52,0.524
c0,0.394,1.538,0.23,1.538,1.312c0,1.145-3.308,1.473-3.308,2.161c0,0.229,0.261,0.327,0.589,0.327
c0.722,0,1.866-0.327,2.686-0.327c0.459,0,0.885,0.097,0.885,0.523c0,0.819-1.77,2.293-1.77,2.948c0,0.197,0.163,0.263,0.327,0.263
c0.656,0,1.77-1.671,2.817-1.671c1.736,0,0.591,3.7,1.539,3.7c0.982,0,0.557-3.636,1.965-3.636c1.148,0,1.998,2.522,2.784,2.522
c0.197,0,0.36-0.163,0.36-0.393c0-0.686-0.982-2.096-0.982-3.012c0-0.557,0.393-0.82,0.917-0.82c0.752,0,1.768,0.459,2.323,0.459
c0.196,0,0.393-0.065,0.393-0.294c0-0.786-2.912-1.637-2.912-2.652C30.945,1.178,32.548,1.178,32.548,0.719"/>
<path fill="#1766A6" d="M90.606,6.026c0,2.913-2.123,5.14-5.959,5.762c0.427,0.032,0.82,0.032,1.214,0.032
c4.483,0,6.123-2.029,6.123-3.731C91.984,7.138,91.459,6.288,90.606,6.026z M85.074,9.332c0-2.325-5.563-2.915-5.563-3.438
c0-0.425,3.106-1.147,4.711-1.18c-2.456-3.143-5.956-2.815-5.956-3.372c0-0.328,2.621-0.984,5.041-0.984
c2.03,0,3.93,0.459,3.93,1.998c0,0.853-0.688,1.738-0.688,3.046c0,0.721,0.358,1.343,1.311,1.343c1.018,0,1.245-1.08,1.245-2.228
c0-0.948-0.163-1.669-0.163-2.128c0-1.375,0.943-2.291,2.287-2.291c1.114,0,1.377,0.489,3.016,0.489
c-0.886,0.526-1.213,1.476-1.213,1.933c0,1.377,0.887,2.326,0.887,5.143c0,5.172-4.846,7.006-10.776,7.006
c-1.63,0-3.369-0.131-5.074-0.392c-0.261-0.033-0.327-0.098-0.327-0.262c0-0.426,2.328-0.656,2.328-2.75
c0-0.82-0.263-1.605-0.263-1.899c0-0.164,0.131-0.263,0.263-0.263c0.491,0,1.476,1.899,3.304,1.899
C83.86,11.002,85.074,10.838,85.074,9.332z M90.41,2.096c0,0.457,0.36,0.817,0.819,0.817s0.82-0.36,0.82-0.817
c0-0.459-0.361-0.82-0.82-0.82S90.41,1.637,90.41,2.096"/>
<path fill="#1766A6" d="M87.5,32.353c0-0.687-1.738-0.752-1.901-2.685c-0.034-0.294-0.132-0.817-0.493-0.817
c-0.589,0-0.131,1.801-0.786,1.801c-1.506,0-1.997-2.948-2.554-2.948c-0.132,0-0.288,0.098-0.288,0.491
c0,0.361,0.066,0.59,0.066,1.014c0,0.427-0.1,0.722-0.492,0.722c-0.885,0-1.672-2.064-2.426-2.064
c-0.164,0-0.327,0.099-0.327,0.263c0,0.393,0.654,1.112,0.654,1.473c0,0.787-2.13,0.36-2.13,1.016c0,0.295,0.294,0.392,0.688,0.392
c0.689,0,1.771-0.293,2.328-0.293c0.328,0,0.819,0.065,0.819,0.489c0,0.459-1.18,1.048-1.18,1.474c0,0.197,0.196,0.294,0.36,0.294
c0.885,0,2.451-1.538,3.565-1.538c0.196,0,0.687,0.098,0.687,0.393c0,0.425-1.113,1.177-1.113,1.8c0,0.164,0.1,0.36,0.296,0.36
c0.586,0,1.373-1.538,2.488-1.538c0.426,0,1.049,0.164,1.378,0.164C87.402,32.616,87.5,32.452,87.5,32.353z M88.352,48.236
c0.525-1.636,1.181-2.784,2.254-4.552c-1.073-0.555-3.926-1.736-3.926-3.668c0-2.26,2.817-4.028,3.401-4.028
c0.263,0,0.328,0.23,0.328,0.656c0,1.178-0.557,3.077-0.557,4.093c0,0.916,0.59,1.802,1.114,1.802c0.557,0,2.097-1.965,2.097-3.898
c0-3.472-3.048-4.519-3.991-4.519c-0.885,0-2.491,1.44-6.259,1.44c-7.039,0-8.645-6.973-8.645-10.02
c0-0.131,0.031-0.164,0.064-0.164c0.164,0,0.854,0.853,3.081,0.853c1.147,0,2.196-0.296,3.868-0.296
c3.923,0,5.661,2.72,8.087,6.189c1.467,0.916,4.975,2.391,4.975,6.55c0,3.668-3.9,5.698-4.844,9.628
c1.5-0.163,2.386-2.85,3.926-2.85c0.787,0,1.147,0.623,1.147,1.607c0,1.439-0.82,3.602-2.393,4.944
c0.032-0.131,0.032-0.296,0.032-0.492c0-0.916-0.359-2.225-1.41-2.225c-1.631,0-2.155,1.768-3.072,3.24
c-0.951-3.339-2.229-6.353-4.521-8.187c-2.319-1.866-6.319-0.852-6.319-4.257c0-0.918,0.591-2.227,0.591-3.275
c0-0.36-0.066-0.688-0.264-0.95c3.147,1.18,2.032,3.274,3.968,5.436c1.205,1.377,4.547,2.686,6.48,8.351
c0.032-0.163,0.065-0.588,0.065-0.883c0-4.847-6.416-9.597-6.973-11.562c3.727,0.426,4.382,1.344,6.152,6.256
C87.171,44.471,88.352,46.993,88.352,48.236"/>
<path fill="#1766A6" d="M70.439,13.589c-2.295,0-3.802-1.145-3.802-1.736c0-0.295,0.196-0.49,0.46-0.49
c0.72,0,2.293,1.112,2.816,1.112c0.133,0,0.23-0.064,0.23-0.261c0-0.59-0.557-1.572-0.557-2.062c0-0.132,0.099-0.229,0.295-0.229
c0.884,0,2.195,0.36,2.885,0.36c0.229,0,0.294-0.131,0.294-0.263c0-0.72-2.131-2.128-2.131-2.554c0-0.393,2.648-0.984,2.648-1.604
c0-0.656-3.6-0.197-3.6-0.82c0-0.458,0.689-1.244,0.689-1.604c0-0.164-0.132-0.229-0.36-0.229c-0.295,0-1.868,0.622-2.524,0.622
c-0.327,0-0.721-0.065-0.721-0.525c0-0.753,1.278-1.571,3.278-1.571c3.237,0,5.172,2.227,5.172,5.96
C75.513,12.411,72.209,13.589,70.439,13.589z M64.055,7.368c0-0.361-1.28-1.048-1.28-1.441c0-0.065,0.064-0.098,0.163-0.098
c0.362,0,0.985,0.131,1.478,0.131c0.426,0,0.491-1.834,0.813-1.834c0.229,0,0.621,1.736,0.984,1.736
c0.425,0,1.211-0.492,1.539-0.492c0.065,0,0.131,0.032,0.131,0.099c0,0.229-0.819,1.112-0.819,1.374
c0,0.295,1.836,0.656,1.836,0.918c0,0.328-1.869,0.295-1.869,0.59c0,0.227,0.689,1.145,0.689,1.44c0,0.066-0.034,0.099-0.099,0.099
c-0.263,0-1.278-0.46-1.573-0.46c-0.361,0-0.944,1.343-1.239,1.343c-0.098,0-0.163-0.131-0.163-0.295l-0.066-1.309
c0-0.131-0.064-0.263-0.229-0.263c-0.394,0-1.148-0.033-1.379-0.033c-0.164,0-0.229-0.032-0.229-0.098
C62.742,8.513,64.055,7.597,64.055,7.368z M63.102,12.736c0.526,0,0.624,1.279,0.724,2.031c0.065,0.394,0.131,0.426,0.295,0.426
c0.394,0,1.015-1.506,1.436-1.506c0.621,0,2.294,1.736,5.079,1.736c3.96,0,7.696-2.785,7.696-7.695
c0-4.749-3.345-7.533-7.959-7.533c-2.194,0-3.802,1.081-4.654,1.081C65.202,1.309,64.416,0,64.021,0
c-0.163,0-0.327,0.325-0.327,0.883c0,0.361,0,1.506-0.394,1.506c-0.788,0-3.832-2.258-3.832-1.441c0,0.754,2.028,3.047,2.028,3.636
S59.5,5.731,59.5,6.123c0,0.72,2.128,0.851,2.128,1.769c0,0.916-2.228,1.637-2.228,2.325c0,0.556,2.228,0.164,2.228,0.851
s-1.637,2.98-1.637,3.633c0,0.165,0.032,0.165,0.162,0.165C60.776,14.866,62.643,12.736,63.102,12.736"/>
<path fill="#1766A6" d="M48.268,70.243c0,0.295-0.099,0.623-0.361,0.949c-0.358-0.654-1.375-0.982-1.834-0.981
c-3.373,0-2.096,4.88-5.698,4.88c-1.506,0-1.638-0.197-2.193-0.197c-0.23,0-0.361,0.099-0.361,0.295
c0,0.853,1.212,2.947,4.585,2.947s6.616-2.062,6.616-4.619c0-0.426-0.098-0.881-0.295-1.34c0.131-0.197,0.46-0.328,0.754-0.328
c0.523,0,0.818,0.592,1.309,0.592c0.525,0,0.918-0.395,0.918-0.918c0-0.428-0.229-0.721-0.621-0.92
c0.262-0.195,0.458-0.523,0.458-0.883c0-0.559-0.394-1.08-1.05-1.08c-0.295,0-0.49,0.1-0.719,0.324
c-0.064-0.586-0.393-1.143-1.016-1.143c-0.491,0-0.853,0.359-0.853,0.918C47.907,69.259,48.268,69.687,48.268,70.243"/>
<path fill="#1766A6" d="M30.322,64.154c2.62,0.651,3.93,2.06,4.191,3.731c0.262,1.604,0.589,2.916,1.211,3.569
c0.819,0.919,2.424,1.733,3.833,1.733c1.179,0,2.127-0.389,2.127-1.471c0-1.18-1.604-3.832-3.962-3.832
c-0.229,0-0.524,0.034-0.852,0.034c-0.295,0-0.721-0.065-0.982-0.295c-0.523-0.46-0.688-2.916-1.67-4.389
c-1.08-1.638-2.259-2.097-3.863-2.097c-1.145,0-2.424,0.621-2.424,1.539C27.931,63.236,28.226,63.628,30.322,64.154z
M39.459,71.488c-0.984,0-2.457-1.05-2.457-1.64c0-0.492,0.459-0.754,0.817-0.754c0.82,0,2.292,1.018,2.292,1.869
C40.112,71.192,39.948,71.488,39.459,71.488"/>
<path fill="#1766A6" d="M36.445,45.977c0-2.096,4.979-3.209,4.979-5.797c0-0.426-0.164-1.178-0.459-1.735
c1.734,0.949,3.012,2.555,3.012,3.864c0,2.26-2.357,3.308-2.357,4.717c0,1.637,2.521,1.899,2.521,3.929
c0,1.669-2.391,3.602-2.391,5.763c0,1.67,1.18,3.044,2.979,3.274c-0.589,0.131-1.112,0.229-1.669,0.229
c-3.309,0-6.714-2.717-6.714-5.96c0-1.604,0.688-3.01,1.734-4.026c0.919,0.786,1.835,1.309,2.425,1.309
c0.523,0,0.754-0.261,0.754-0.654C41.26,49.677,36.445,48.565,36.445,45.977z M46.892,62.515c-1.123,0.514-1.571,0.426-1.571,1.573
c0,0.425-0.099,0.979-0.099,1.275c0,0.393,0.065,0.623,0.523,0.623c1.18,0,3.047-1.997,3.047-3.701c0-0.46-0.263-0.653-0.558-0.653
C47.972,61.632,47.679,62.154,46.892,62.515z M46.761,60.156c0-1.473-3.046-1.506-3.046-3.733c0-0.558,0.359-1.506,1.081-2.523
c0.296,1.703,0.981,2.588,2.457,3.146c2.913,1.079,3.307,2.716,3.307,4.454c0,2.948-2.063,6.615-7.368,6.615
c-4.258,0-7.304-3.8-7.304-7.009c0-0.885,0.229-1.866,0.786-1.866c0.492,0,0.655,0.392,1.048,0.784
c1.475,1.476,3.079,1.867,5.404,1.867C45.222,61.892,46.761,61.041,46.761,60.156"/>
<path fill="#1766A6" d="M23.57,60.866c0.08,0.684-0.409,1.301-1.092,1.381c-0.684,0.08-1.304-0.41-1.382-1.093
c-0.08-0.685,0.409-1.304,1.093-1.384S23.491,60.181,23.57,60.866z M17.45,62.154c0.139,1.118,1.182,1.966,2.359,1.835
c0.425-0.047,0.819-0.163,1.082-0.327c0.262,1.047,1.141,1.721,2.329,1.565c1.206-0.157,2.026-1.107,1.896-2.319
c-0.034-0.326-0.099-0.525-0.196-0.754c0,0,0.159-0.017,0.279-0.039c1.183-0.224,1.98-1.173,1.881-2.319
c-0.13-1.179-1.188-2.054-2.289-1.918c-0.427,0.052-0.821,0.215-1.084,0.444c-0.296-0.981-1.219-1.834-2.479-1.626
c-1.139,0.189-1.892,1.155-1.778,2.38c0.019,0.199,0.065,0.426,0.164,0.654c0,0-0.193,0.029-0.326,0.048
C18.332,59.92,17.295,60.882,17.45,62.154"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 33 KiB

6
logos/Volkswagen.svg Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0"?>
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(10.188387870788574, 0, 0, 10.188387870788574, -251.519936680809, -252.79260253906244)">
<path d="M75,120.4c-24.9,0-45.3-20.5-45.3-45.4c0-5.6,1-10.9,2.9-15.9l26.5,53.3c0.3,0.7,0.8,1.3,1.6,1.3c0.8,0,1.3-0.6,1.6-1.3l12.2-27.3c0.1-0.3,0.3-0.6,0.6-0.6s0.4,0.3,0.6,0.6l12.2,27.3c0.3,0.7,0.8,1.3,1.6,1.3c0.8,0,1.3-0.6,1.6-1.3l26.5-53.3c1.9,5,2.9,10.3,2.9,15.9C120.3,99.9,99.9,120.4,75,120.4z M75,64.7c-0.3,0-0.4-0.3-0.6-0.6l-14.2-32c4.6-1.7,9.6-2.6,14.8-2.6c5.2,0,10.2,0.9,14.8,2.6l-14.2,32C75.4,64.5,75.3,64.7,75,64.7z M60.5,97.6c-0.3,0-0.4-0.3-0.6-0.6l-23-46.4c4.1-6.3,9.6-11.6,16.3-15.3l16.6,36.9C70,72.8,70.5,73,71,73h8c0.6,0,1-0.1,1.3-0.8l16.6-36.9c6.6,3.7,12.2,9,16.3,15.3L90,97c-0.1,0.3-0.3,0.6-0.6,0.6c-0.3,0-0.4-0.3-0.6-0.6l-8.7-19.8c-0.3-0.7-0.7-0.8-1.3-0.8h-8c-0.6,0-1,0.1-1.3,0.8L61.1,97C61,97.3,60.8,97.6,60.5,97.6z M75,125c27.7,0,50-22.3,50-50c0-27.7-22.3-50-50-50c-27.7,0-50,22.3-50,50C25,102.7,47.3,125,75,125z" style="fill: rgb(0, 30, 80);"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

1
logos/adobe.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="2259" height="2500" viewBox="0 0 123.16 136.326"><g fill-rule="evenodd" clip-rule="evenodd"><path d="M105.166 3.116h7.479l-.235 1.324h-1.402c-.701 0-1.168-.155-1.168-.155V6.7c0 .856-.234 1.714-.234 2.57 0 .857-.234 1.714-.234 2.182h-1.869V9.27c0-.856.234-1.714.234-2.57 0-.935.232-2.025.232-2.415h-.934-.936c-.467 0-.934.155-.934.155V3.116h.001zM113.578 3.116h2.57c0 .467.234.935.234 1.168 0 .39.467 1.09.701 1.947 0 .234.234.857.234 1.324.232.857.701 1.714.701 1.714 0-.467.467-1.09.701-1.947.232-.623.701-1.558.934-2.181.234-.702.701-1.558.701-2.025h2.805v2.648c0 .935-.234 2.181-.234 3.038v2.649h-1.869V9.737 7.555c0-.701.234-1.324.234-1.792v-.855l-2.57 6.544h-1.871c0-.468-.467-1.324-.467-1.948-.234-1.09-.701-1.948-.701-2.181 0-.467-.467-1.324-.701-2.181v2.181c0 .623-.234 1.48-.234 2.181v1.948h-1.869c0-.857.234-1.948.234-2.882 0-.779.232-1.87.232-2.805.001-.857.235-1.714.235-2.649zM23.682 135.779h-4.986l-1.947-7.01H7.556l-1.947 7.01H.779l8.491-31.004h5.453l8.959 31.004zm-8.336-12.074l-3.271-11.684-3.039 11.684h6.31zM41.599 135.779h-4.207v-3.193c-.701 1.402-1.636 2.338-2.493 2.727-.856.467-1.792 1.014-2.727 1.014-1.714 0-3.427-1.17-4.674-3.117-1.402-1.791-2.025-4.906-2.025-8.568 0-3.738.624-7.012 1.792-8.959 1.246-1.869 3.038-3.037 5.142-3.037 1.636 0 3.35 1.168 4.829 3.271v-11.141h4.363v31.003zm-11.841-11.683c0 2.336.312 4.439.701 5.375.702 1.402 1.714 2.336 2.883 2.336 1.09 0 1.947-.701 2.648-1.557.701-1.17 1.246-3.117 1.246-5.453 0-2.494-.389-4.596-1.09-5.766-.624-1.168-1.714-1.947-2.804-1.947-.935 0-1.792.779-2.571 1.715-.702 1.168-1.013 2.959-1.013 5.297zM45.182 124.096c0-1.793.233-3.74.935-5.531.779-1.869 1.792-3.271 3.038-4.207 1.324-1.012 2.96-1.713 4.519-1.713 2.415 0 4.674 1.168 6.154 3.271 1.636 2.336 2.493 5.453 2.493 8.725s-.857 6.232-2.493 8.336c-1.714 2.18-3.739 3.35-6.154 3.35-1.48 0-2.96-.547-4.362-1.402-1.402-.936-2.415-2.338-3.194-4.051-.701-1.793-.935-4.129-.935-6.467v-.311h-.001zm4.362.545c0 2.338.234 4.129.935 5.297.779 1.168 1.948 1.869 3.039 1.869 1.012 0 2.181-.701 2.882-1.869.779-1.168 1.246-2.959 1.246-5.297s-.467-4.285-1.246-5.453c-.701-1.324-1.87-2.104-2.882-2.104-1.091 0-2.181.779-2.805 1.947-.701 1.324-1.169 3.272-1.169 5.61zM65.748 135.779v-31.004h4.361v11.141c1.248-2.104 3.039-3.271 4.752-3.271 2.025 0 3.74 1.168 5.064 3.037 1.324 1.947 2.104 4.908 2.104 8.725 0 3.74-.779 7.012-2.104 8.803-1.402 1.947-3.115 3.117-4.83 3.117-.934 0-1.947-.547-2.805-1.014-.934-.389-1.791-1.557-2.26-2.727v3.193h-4.282zm4.361-11.683c0 2.336.391 4.439.779 5.375.701 1.402 1.871 2.336 3.117 2.336 1.09 0 1.947-.701 2.57-1.557.701-.936 1.09-3.117 1.09-5.453 0-2.494-.389-4.596-1.09-5.766-.623-1.168-1.715-1.947-2.805-1.947-1.012 0-1.869.779-2.57 1.715-.7 1.168-1.091 2.959-1.091 5.297zM95.271 128.77l4.363.701c-.469 2.336-1.559 4.285-2.648 5.141-1.246.936-2.961 1.715-4.752 1.715-2.648 0-4.986-1.402-6.311-3.74-1.09-1.947-1.559-4.674-1.559-7.789 0-3.662.623-6.777 2.025-8.881s3.428-3.271 5.609-3.271c2.414 0 4.363 1.168 5.688 3.271 1.479 2.336 2.336 5.842 2.336 10.283H88.729c0 1.947.234 3.271 1.014 4.283.699.936 1.557 1.324 2.492 1.324.779 0 1.48-.154 1.791-.701.388-.467.857-1.401 1.245-2.336zm.391-6.233c0-1.635-.623-3.115-1.092-3.973-.623-.936-1.557-1.48-2.414-1.48-1.014 0-1.947.779-2.414 1.715-.779.934-1.014 2.336-1.014 3.738h6.934z"/><path d="M0 0h37.392L0 91.066V0zm62.865 0h37.859v89.896L62.865 0zM50.557 34.821L71.201 89.43H58.425l-8.803-17.293H35.6l14.957-37.316z" fill="#cc2229"/></g></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

1
logos/contemporary.svg Normal file
View File

@ -0,0 +1 @@
<svg height="522" viewBox="0 0 242.60299999999998 48.463" width="2500" xmlns="http://www.w3.org/2000/svg"><path d="M26.455 0C12.375 0 0 11.147 0 24.896c0 13.75 12.376 23.567 26.361 23.567l24.957-.016 4.389-.01c.456 0 4.647.023 5.11 0a8.403 8.403 0 0 0 7.652-4.969l.388-.869 4.319-8.05h22.428l4.878 10.757c.82 1.78 2.784 3.035 5.221 3.15h16.672L104.023 4.06c-.83-2.223-3.164-3.937-5.89-3.937h-11.9c-2.58 0-4.613 1.789-5.797 4.01L61.443 39.768c-.92 1.905-3.091 3.36-5.486 3.36l-16.437.044c-.328 0-1.578-.012-1.91-.016-10.437.01-18.89-8.44-18.89-18.865 0-10.426 8.452-18.877 18.878-18.877a38.509 38.509 0 0 1 2.015-.043l18.094.01h1.794c.393 0 .518-.29.519-.57v-.574L60.03.09h-3.815L26.457.005zm91.879.086V4.57c0 .354.306.672.67.672l17.746-.01c.772 0 1.402.628 1.402 1.39l-.01 41.833h20.809c.489 0 .605-.363.605-.606l-.226-41.216c0-.772.63-1.403 1.39-1.403l17.858-.012.01-5.132H118.33zm64.951 0l-.01 42.014a6.356 6.356 0 0 0 6.356 6.355l52.427-.01c.534 0 .545-.495.545-.674v-4.617h-32.81c-.788-.135-1.528-.53-1.723-1.613V.084h-24.787zM85.051 17.15c1.703.017 3.159 1.045 3.758 2.414l4.394 9.69H76.016l5.433-10.133a4.194 4.194 0 0 1 3.602-1.97z" fill="#172a7e" fill-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

1
logos/dubai.svg Normal file
View File

@ -0,0 +1 @@
<svg height="953" width="2500" xmlns="http://www.w3.org/2000/svg" viewBox="0 -0.005550055625516581 78.63001051144536 30.1247112673068"><g fill="#0090d7"><path d="M10.45 0H0v26.17h10.45A5.23 5.23 0 0 0 15.72 21V5.25A5.25 5.25 0 0 0 10.48 0M5.22 21V5.25h2.63a2.59 2.59 0 0 1 2.6 2.6v10.51A2.61 2.61 0 0 1 7.84 21zM73.42 26.17V2.62A2.61 2.61 0 0 1 76 0h2.63v23.61a2.62 2.62 0 0 1-2.61 2.62h-2.6zM51 14.27a9.05 9.05 0 0 1-4.38 2.42 2.62 2.62 0 1 1-4.64 1.67v-1.45h-5.29v6.7a2.64 2.64 0 0 0 2.64 2.56h5.23A7.87 7.87 0 0 0 51.16 14l-.2.2M41.94 7.87a2.64 2.64 0 0 1 1.45-2.36V0h-6.7v9.31h5.24zM23.58 10.36V0H21a2.62 2.62 0 0 0-2.63 2.6v6.73H21a3.7 3.7 0 0 1 2.62 1M34.08 9.31V2.62A2.64 2.64 0 0 0 31.45 0h-2.62v10.36a3.75 3.75 0 0 1 2.62-1zM55.1 26.17h2.61a2.62 2.62 0 0 0 2.63-2.62v-6.64H55.1zM60.3 9.31V2.62A3.79 3.79 0 0 1 61.35 0H60.3a5.25 5.25 0 0 0-5.2 5.25v5.11a3.74 3.74 0 0 1 2.61-1zM65.63 16.91h-.08v6.7a2.63 2.63 0 0 0 2.62 2.63h2.62v-12A6.37 6.37 0 0 1 65.63 17"/></g><path d="M44.56 0v5.25a2.63 2.63 0 0 1 .22 5.25H31.45a2.61 2.61 0 0 0-2.62 2.61V21h-2.66a2.62 2.62 0 0 1-2.62-2.62v-5.27a2.61 2.61 0 0 0-2.61-2.61h-2.61V21a5.25 5.25 0 0 0 5.25 5.19h5.25a5.25 5.25 0 0 0 5.25-5.25v-5.25h10.48A7.88 7.88 0 0 0 44.93 0z" fill="#ba2c87"/><path d="M43.14 16.87v1.45a1.38 1.38 0 0 0 1.38 1.38A1.46 1.46 0 0 0 46 18.32a1.38 1.38 0 0 0-1.3-1.45zM26.63 27.25v1.37A1.38 1.38 0 1 0 28 27.25zM22.75 27.25v1.37a1.38 1.38 0 1 0 1.38-1.37zM55.1 13.11a2.61 2.61 0 0 1 2.61-2.61H63a2.63 2.63 0 1 0 .38-5.25h-1.8V2.62A2.62 2.62 0 0 1 64.1 0h1.45a5.24 5.24 0 0 1 5.24 5.23v5.27a5.25 5.25 0 0 1-5.24 5.24H55.1z" fill="#ba2c87"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

1
logos/fedex.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 7.1 KiB

1
logos/gasco.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.4 KiB

1
logos/mobil.svg Normal file
View File

@ -0,0 +1 @@
<svg enable-background="new 0 0 2500 762.5" viewBox="0 0 2500 762.5" xmlns="http://www.w3.org/2000/svg"><path d="m812.7 473.2c0-159.8 129.6-289.5 289.4-289.5s289.4 129.7 289.4 289.5c0 159.9-129.6 289.4-289.4 289.4-159.8-.1-289.4-129.5-289.4-289.4m289.2 132.8c73.3 0 132.6-59.4 132.6-132.7s-59.3-132.7-132.6-132.7c-73.4 0-132.6 59.5-132.6 132.7-.1 73.3 59.2 132.7 132.6 132.7z" fill="#ed1b2d"/><path d="m0 0h242l136.8 458.4h2l138.9-458.4h235.3v746.6h-155.6v-528h-2.1l-149.3 528h-143l-147.3-528h-2.1v528h-155.6zm2102.5 147.2h155.6v-147.2h-155.6zm0 599.4h155.6v-547h-155.6zm241.9 0h155.6v-746.6h-155.6zm-887.6 0h155.5v-48.5c40 44.2 90.5 61.1 149.4 61.1 156.7 0 275.6-131.4 275.6-285 0-153.4-117.9-287-275.6-287-56.8 0-106.1 17.8-149.4 54.7v-241.9h-155.5zm157.4-273.3c0-73.3 59.3-132.7 132.6-132.7s132.7 59.5 132.7 132.7c0 73.3-59.3 132.7-132.7 132.7-73.3 0-132.6-59.4-132.6-132.7z" fill="#006bb6"/></svg>

After

Width:  |  Height:  |  Size: 901 B

1
logos/pfizer.svg Normal file
View File

@ -0,0 +1 @@
<svg height="1024" viewBox="-4.452 0 1013.676 409.434" width="2500" xmlns="http://www.w3.org/2000/svg"><path d="m19.486 163.83c11.8-43.139 60.942-53.405 106.187-54.674 37.194-1.042 78.666 3.876 78.666 3.876l-19.486 71.243s-41.472-4.918-78.666-3.875c-45.245 1.268-94.388 11.535-106.187 54.673z" fill="#0190ff"/><g fill="#2b01be"><path d="m645.576 87.98c-59.564 0-74.824 57.648-83.363 88.87l-63.627 232.584h37.121l56.412-206.23h38.555l-25.666 93.84h37.12l30.782-112.538h-75.674c3.878-14.185 8.013-29.296 11.383-41.617 6.224-22.756 16.39-39.28 31.176-38.725 16.34.614 8.025 11.344 5.787 19.525-3.096 11.319 5.262 22.7 19.906 22.7 31.809 0 39.653-58.409-19.912-58.409zm-210.574 40.698v.002l-46.05 168.365h38.698l17.053-62.348h33.615c37.092 0 61.708-20.471 68.364-48.927 6.215-26.57-9.304-57.092-50.868-57.092zm33.281 19.812h14.88c15.577 0 27.937 12.47 24.952 34.172-2.766 20.117-24.611 32.176-43.658 32.176h-14.322zm366.977 32.608c-32.54 0-56.012 27.993-61.645 55.968-5.413 26.883 10.004 62.608 52.448 62.608 30.166 0 45.337-13.283 45.337-13.283l-6.943-17.14s-12.682 10.323-30.353 10.323c-17.672 0-28.758-13.949-26.305-36.178h72.162c5.159-13.09 7.983-62.298-44.701-62.298zm143.84 1.513c-24.202 0-38.471 24.993-38.471 24.993l6.316-23.096h-37.12l-30.782 112.537h37.121s8.94-32.88 13.488-49.295c7.023-25.66 21.346-41.727 28.233-42.385 7.958-.76 7.196 18.416 22.717 18.416 23.544 0 28.622-41.17-1.498-41.17zm-292.204 1.897-5.115 18.699h47.053l-73.97 93.838h104.456l5.114-18.7h-53.079l73.97-93.837zm148.225 15.172v.002c20.183 0 15.59 26.648 15.59 26.648l-40.432-.094s6.706-26.556 24.842-26.556zm-533.279 97.627c-133.12-8.301-287.816-76.965-282.356-133.477l-18.366 67.15c-5.572 57.658 137.931 126.112 281.236 137.57z"/><path d="m350.219 204.72c-11.8 43.14-60.942 53.406-106.187 54.674-37.194 1.043-78.665-3.876-78.665-3.876l19.486-71.243s41.47 4.918 78.666 3.876c45.244-1.269 94.387-11.535 106.186-54.674z"/></g><path d="m67.863 71.243c133.12 8.301 287.816 76.966 282.356 133.478l18.366-67.151c5.571-57.658-137.931-126.112-281.235-137.57z" fill="#0190ff"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

1
logos/visa.svg Normal file
View File

@ -0,0 +1 @@
<svg height="812" viewBox="0.5 0.5 999 323.684" width="2500" xmlns="http://www.w3.org/2000/svg"><path d="M651.185.5c-70.933 0-134.322 36.766-134.322 104.694 0 77.9 112.423 83.28 112.423 122.415 0 16.478-18.884 31.229-51.137 31.229-45.773 0-79.984-20.611-79.984-20.611l-14.638 68.547s39.41 17.41 91.734 17.41c77.552 0 138.576-38.572 138.576-107.66 0-82.316-112.89-87.537-112.89-123.86 0-12.91 15.501-27.053 47.662-27.053 36.286 0 65.892 14.99 65.892 14.99l14.326-66.204S696.614.5 651.185.5zM2.218 5.497L.5 15.49s29.842 5.461 56.719 16.356c34.606 12.492 37.072 19.765 42.9 42.353l63.51 244.832h85.138L379.927 5.497h-84.942L210.707 218.67l-34.39-180.696c-3.154-20.68-19.13-32.477-38.685-32.477H2.218zm411.865 0L347.449 319.03h80.999l66.4-313.534h-80.765zm451.759 0c-19.532 0-29.88 10.457-37.474 28.73L709.699 319.03h84.942l16.434-47.468h103.483l9.994 47.468H999.5L934.115 5.497h-68.273zm11.047 84.707l25.178 117.653h-67.454z" fill="#1434cb"/></svg>

After

Width:  |  Height:  |  Size: 945 B

1
logos/volvo.svg Normal file
View File

@ -0,0 +1 @@
<svg height="2500" viewBox="51.67309516 44.05134189 307.58409681 305.35493219" width="2448" xmlns="http://www.w3.org/2000/svg"><path d="m282.62 185.19c-8.69 0-15.76 5.32-15.76 11.86s7.07 11.86 15.76 11.86c8.88 0 16.1-5.32 16.1-11.86s-7.22-11.86-16.1-11.86zm0 19.87c-3.07 0-5.4-3.44-5.4-8 0-4.84 2.28-8.34 5.4-8.34s5.41 3.73 5.4 8.34c-.02 4.33-2.48 8-5.4 8zm-119.34-19.87c-8.69 0-15.77 5.32-15.77 11.86s7.08 11.86 15.77 11.86c8.88 0 16.1-5.32 16.1-11.86s-7.22-11.86-16.1-11.86zm0 19.87c-3.08 0-5.4-3.44-5.4-8 0-4.84 2.27-8.34 5.4-8.34 3 0 5.41 3.73 5.4 8.34 0 4.33-2.48 8-5.4 8zm84.35-15.83h3.91l-6.85 13.35-7.82-13.35h5.54v-2.93h-22.15v2.93h5.21l10.09 18.89h12.06l10.1-18.89h5.2v-2.93h-15.29zm-120.63.28h4l-6.69 12.49-7.31-12.49h5.34v-3.51h-22.72v3.48h5.32l10 18.75.07.14h12.38l.08-.14 10-18.75h5.32v-3.48h-15.79zm3.37-.28h1zm-5.95 13.22 2.81-5.25-2.76 5.33zm-5.14-8.45-2.77-4.59h.08zm89.63 10.54h-5.55v-15.31h5.22v-2.93h-20.53v2.93h5.22v15.31h-5.22v3.58h30.95v-10.12h-3.25a6.83 6.83 0 0 1 -6.84 6.54zm77.54-105.45-13.45 13.48a114.47 114.47 0 0 1 18 18.93l13.53-13.5 5.72-5.72a139.44 139.44 0 0 1 15.53 23.19h3.47v-61.34h-61.25v3.47a140.27 140.27 0 0 1 23.87 16.1z"/><path d="m310.67 126.44-13.75 13.75a113.9 113.9 0 1 1 -33-34.45l13.63-13.64a132.81 132.81 0 1 0 33.12 34.34z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB