initial commit
@@ -0,0 +1,145 @@
|
||||
* { font-family: 'Inter', sans-serif; }
|
||||
html { scroll-behavior: smooth; }
|
||||
.hero-gradient {
|
||||
background: linear-gradient(0deg, rgba(88,40,115,1) 0%, rgba(168,10,110,1) 25%, rgba(174,10,70,1) 35%, rgba(0,0,0,0) 65%, rgba(0,0,0,0) 100%);
|
||||
}
|
||||
.section-headline span {
|
||||
display: inline-block;
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.15em;
|
||||
color: #a80a6e;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
.section-headline {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
line-height: 1.15;
|
||||
}
|
||||
@media (min-width: 768px) {
|
||||
.section-headline { font-size: 3rem; }
|
||||
}
|
||||
.charm-card {
|
||||
padding: 1.25rem;
|
||||
border-radius: 0.75rem;
|
||||
transition: all 0.3s ease;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.charm-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
border-radius: 0.75rem;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
background: linear-gradient(135deg, rgba(168,10,110,0.08), rgba(88,40,115,0.08));
|
||||
}
|
||||
.charm-card:hover::before { opacity: 1; }
|
||||
.charm-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(88,40,115,0.12); }
|
||||
.charm-card h4 b { font-weight: 700; }
|
||||
.charm-card:hover h4 b { color: #a80a6e; }
|
||||
.nav-link { transition: color 0.2s; }
|
||||
.nav-link:hover { color: #a80a6e; }
|
||||
.btn-primary {
|
||||
background: linear-gradient(135deg, #a80a6e, #882873);
|
||||
color: white;
|
||||
padding: 0.75rem 2rem;
|
||||
border-radius: 9999px;
|
||||
font-weight: 600;
|
||||
transition: all 0.3s;
|
||||
display: inline-block;
|
||||
}
|
||||
.btn-primary:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 25px rgba(168,10,110,0.35);
|
||||
}
|
||||
.footer-link { transition: color 0.2s; }
|
||||
.footer-link:hover { color: #e8a0d0; }
|
||||
.scroll-indicator {
|
||||
animation: bounce-down 2s infinite;
|
||||
}
|
||||
@keyframes bounce-down {
|
||||
0%, 100% { transform: translateY(0); }
|
||||
50% { transform: translateY(8px); }
|
||||
}
|
||||
.scroll-track {
|
||||
display: flex;
|
||||
gap: 4rem;
|
||||
width: max-content;
|
||||
animation: scroll-left 40s linear infinite;
|
||||
}
|
||||
.scroll-track-right {
|
||||
display: flex;
|
||||
gap: 4rem;
|
||||
width: max-content;
|
||||
animation: scroll-right 40s linear infinite;
|
||||
}
|
||||
@keyframes scroll-left {
|
||||
0% { transform: translateX(0); }
|
||||
100% { transform: translateX(-50%); }
|
||||
}
|
||||
@keyframes scroll-right {
|
||||
0% { transform: translateX(-50%); }
|
||||
100% { transform: translateX(0); }
|
||||
}
|
||||
.scroll-container {
|
||||
overflow: hidden;
|
||||
mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
|
||||
-webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
|
||||
}
|
||||
.team-card { transition: all 0.3s ease; }
|
||||
.team-card:hover { transform: translateY(-6px); }
|
||||
.team-card .team-img { transition: transform 0.5s ease; }
|
||||
.team-card:hover .team-img { transform: scale(1.08); }
|
||||
.about-card { transition: all 0.3s ease; }
|
||||
.about-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(88,40,115,0.15); background: white; }
|
||||
.study-card { transition: all 0.3s ease; }
|
||||
.study-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(88,40,115,0.15); }
|
||||
.sidebar-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(0,0,0,0.4);
|
||||
z-index: 999;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
.sidebar-overlay.open { opacity: 1; pointer-events: auto; }
|
||||
.study-sidebar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: -480px;
|
||||
width: 480px;
|
||||
max-width: 100vw;
|
||||
height: 100vh;
|
||||
background: white;
|
||||
z-index: 1000;
|
||||
overflow-y: auto;
|
||||
transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
|
||||
box-shadow: -4px 0 40px rgba(0,0,0,0.12);
|
||||
}
|
||||
.study-sidebar.open { right: 0; }
|
||||
.study-sidebar::-webkit-scrollbar { width: 6px; }
|
||||
.study-sidebar::-webkit-scrollbar-thumb { background: #d0a0c0; border-radius: 3px; }
|
||||
.zebra-overlay {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
overflow: hidden;
|
||||
pointer-events: none;
|
||||
opacity: 0.06;
|
||||
}
|
||||
.zebra-overlay::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: -200px;
|
||||
background: repeating-linear-gradient(
|
||||
120deg,
|
||||
#a80a6e 0px,
|
||||
#a80a6e 60px,
|
||||
transparent 60px,
|
||||
transparent 180px
|
||||
);
|
||||
}
|
||||
|
After Width: | Height: | Size: 5.3 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 99 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 53 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 8.1 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 174 KiB |
|
After Width: | Height: | Size: 949 B |
|
After Width: | Height: | Size: 563 KiB |
|
After Width: | Height: | Size: 467 KiB |
|
After Width: | Height: | Size: 840 KiB |
|
After Width: | Height: | Size: 172 KiB |
|
After Width: | Height: | Size: 101 KiB |
|
After Width: | Height: | Size: 192 KiB |
|
After Width: | Height: | Size: 266 KiB |
|
After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 85 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 88 KiB |
|
After Width: | Height: | Size: 64 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 127 KiB |
|
After Width: | Height: | Size: 109 KiB |
|
After Width: | Height: | Size: 129 KiB |
|
After Width: | Height: | Size: 184 KiB |
|
After Width: | Height: | Size: 141 KiB |
|
After Width: | Height: | Size: 158 KiB |
|
After Width: | Height: | Size: 515 KiB |
|
After Width: | Height: | Size: 539 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 872.87"><defs><style>.cls-1{fill:#32de84;}</style></defs><title>android-logo</title><g id="Layer_2" data-name="Layer 2"><g id="svg8"><g id="layer1"><g id="g80302"><path id="path825" d="M69.74,721.85C35.36,721.85,0,749.41,0,797.64c0,44.09,31.09,75.23,69.74,75.23,31.91,0,46.13-21.42,46.13-21.42v9.34c0,4.41,4.17,9.34,9.34,9.34h23.06v-145h-32.4v18.4s-14.34-21.69-46.13-21.69Zm5.77,29.64c28.31,0,43.15,24.89,43.15,46.13,0,23.65-17.63,46.11-43.09,46.11C54.29,843.74,33,826.5,33,797.31,33,771,51.31,751.5,75.51,751.5Z"/><path id="path829" d="M193.3,870.12a9.07,9.07,0,0,1-9.34-9.34V725.15h32.4v17.94c7.34-11,21.69-21.28,43.7-21.28,36,0,55.15,28.69,55.15,55.51v92.81H292.7a9.92,9.92,0,0,1-9.88-9.88V784.46c0-14.87-9.11-32.93-30.18-32.93-22.73,0-36.27,21.48-36.27,41.71v76.88Z"/><path id="path833" d="M409.67,721.85c-34.38,0-69.74,27.55-69.74,75.78,0,44.09,31.09,75.23,69.74,75.23,31.91,0,46.13-21.42,46.13-21.42v9.34c0,4.41,4.17,9.34,9.34,9.34h23.06V652.66h-32.4v90.88s-14.34-21.69-46.13-21.69Zm5.77,29.64c28.31,0,43.15,24.89,43.15,46.13,0,23.65-17.63,46.11-43.09,46.11-21.29,0-42.61-17.24-42.61-46.42C372.89,771,391.24,751.5,415.44,751.5Z"/><path id="path835" d="M533.22,870.12a9.07,9.07,0,0,1-9.34-9.34V725.15h32.4v24.16c5.58-13.54,17.61-25.81,39-25.81a67.63,67.63,0,0,1,11.53,1.1v33.5a46.63,46.63,0,0,0-15.38-2.75c-22.73,0-35.15,21.48-35.15,41.71v73.06Z"/><path id="path837" d="M803.4,870.12a9.07,9.07,0,0,1-9.34-9.34V725.15h32.4v145Z"/><path id="path839" d="M921.47,721.85c-34.39,0-69.74,27.55-69.74,75.78,0,44.09,31.09,75.23,69.74,75.23,31.91,0,46.13-21.42,46.13-21.42v9.34c0,4.41,4.17,9.34,9.34,9.34H1000V652.66H967.6v90.88s-14.34-21.69-46.13-21.69Zm5.77,29.64c28.31,0,43.15,24.89,43.15,46.13,0,23.65-17.63,46.11-43.09,46.11-21.29,0-42.61-17.24-42.61-46.42C884.69,771,903,751.5,927.24,751.5Z"/><circle id="path841" cx="810.01" cy="672.45" r="21.43"/><path id="path843" d="M692.26,721.81c-36,0-75.57,26.88-75.57,75.57,0,44.37,33.7,75.5,75.5,75.5,51.51,0,76.66-41.41,76.66-75.22,0-41.48-32.39-75.85-76.58-75.85Zm.12,30.26c24.9,0,43.48,20.07,43.48,45.41,0,25.78-19.72,45.67-43.4,45.67-22,0-43.36-17.89-43.36-45.23,0-27.8,20.33-45.84,43.29-45.84Z"/></g><path id="path80319" class="cls-1" d="M744.06,168.84,827,25.24a16.84,16.84,0,0,0-6.09-23A16.62,16.62,0,0,0,798,8.38L714,153.83c-64.08-29.26-136.2-45.58-213.77-45.58S350.57,124.57,286.5,153.83l-84-145.45a16.79,16.79,0,0,0-29,16.86l82.9,143.6C113.41,246.3,16.59,391,.6,560.37H999.93C983.94,391,887.12,246.3,744.06,168.84ZM270.83,420a41.88,41.88,0,1,1,41.88-41.88A41.9,41.9,0,0,1,270.83,420Zm458.76,0a41.88,41.88,0,1,1,41.88-41.88A41.9,41.9,0,0,1,729.59,420Z"/></g></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2500 676.76"><defs><style>.cls-1{fill:#b52e31;}.cls-2{fill:#e23237;}.cls-3{fill:#fff;}</style></defs><title>angular-logo</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><path class="cls-1" d="M735.35,502V194.34H774.9l188,247.56V194.34h37.6V502H960.94l-188-250V502Zm571.29-12.21a228.3,228.3,0,0,1-80.08,14.16q-167,0-167-160.16,0-151.61,161.13-151.86c30.76,0,59.57,4.39,85.94,12.7v34.18a223.48,223.48,0,0,0-81.54-15.14c-84,0-126,40-126,119.14,0,85.45,41.5,127.93,124,127.93,13.18,0,27.83-2,43.95-5.37v-103h39.55V489.75Zm63.48-106.45v-189h39.55v189c0,59.08,29.3,88.87,88.38,88.87,58.59,0,88.38-29.79,88.38-88.87v-189H1626v189c0,80.57-42.48,121.09-127.93,121.09S1370.12,463.87,1370.12,383.3Zm366.21-189V469.73h161.13V502H1696.78V194.34ZM1954.59,502h-41.5l152.83-348.14L2218.75,502H2174.8l-39.55-96.68H2033.69L2044.43,373h77.64l-57.62-139.16L1954.59,502Zm306.64,0V194.34h131.35c58.59,0,87.89,24.41,87.89,73.73,0,40-28.81,69.82-85.94,88.87L2500,502h-52.25L2350.1,363.77V337.89c58.59-9.28,88.38-31.74,88.38-67.87,0-28.32-16.11-42.48-48.83-42.48h-87.89V502Z"/><path class="cls-2" d="M0,112.3,314.94,0,638.18,110.35l-52.25,416.5-271,149.9L48.34,528.81Z"/><path class="cls-1" d="M638.18,110.35,314.94,0V676.76l271-149.9,52.25-416.5Z"/><path class="cls-3" d="M315.43,79.1,119.14,515.62l73.24-1.46,39.55-98.63H407.23l43,99.61L520,516.6,315.43,79.1Zm.49,140.14,66.41,138.67H257.81Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.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 284.3 170" style="enable-background:new 0 0 284.3 170;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#252F3E;}
|
||||
.st1{fill:#FF9900;}
|
||||
.st2{fill:#EA4335;}
|
||||
.st3{fill:#4285F4;}
|
||||
.st4{fill:#34A853;}
|
||||
.st5{fill:#FBBC05;}
|
||||
.st6{fill:#0080FF;}
|
||||
.st7{fill:#B80017;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M80.1,61.7c0,3.5,0.4,6.3,1,8.4c0.8,2.1,1.7,4.3,3,6.8c0.5,0.8,0.7,1.5,0.7,2.2c0,0.9-0.6,1.9-1.8,2.8l-6,4
|
||||
c-0.9,0.6-1.7,0.9-2.5,0.9c-0.9,0-1.9-0.5-2.8-1.3c-1.3-1.4-2.5-2.9-3.4-4.4c-0.9-1.6-1.9-3.4-2.9-5.6c-7.4,8.7-16.6,13-27.8,13
|
||||
c-7.9,0-14.3-2.3-18.9-6.8c-4.6-4.5-7-10.6-7-18.2c0-8,2.8-14.6,8.6-19.5s13.4-7.4,23.2-7.4c3.2,0,6.5,0.3,10,0.8
|
||||
c3.5,0.5,7.1,1.2,10.9,2.1v-6.9c0-7.2-1.5-12.2-4.4-15.1c-3-2.9-8.1-4.3-15.4-4.3c-3.3,0-6.7,0.4-10.2,1.2
|
||||
c-3.5,0.9-6.9,1.9-10.2,3.2c-1.5,0.7-2.6,1-3.3,1.2c-0.7,0.2-1.1,0.3-1.5,0.3c-1.3,0-2-0.9-2-2.9v-4.6c0-1.5,0.2-2.6,0.7-3.3
|
||||
c0.5-0.7,1.3-1.3,2.6-2C24,4.5,27.9,3.1,32.6,2c4.6-1.2,9.5-1.8,14.7-1.8c11.3,0,19.5,2.6,24.8,7.7c5.2,5.1,7.8,12.9,7.8,23.3v30.6
|
||||
H80.1z M41.7,76.1c3.1,0,6.3-0.6,9.7-1.7c3.4-1.1,6.4-3.2,9-6.1c1.5-1.8,2.6-3.8,3.2-6.1c0.6-2.3,0.9-5,0.9-8.2v-4
|
||||
c-2.7-0.7-5.7-1.2-8.7-1.6c-3-0.4-6-0.6-8.9-0.6c-6.3,0-11,1.2-14.1,3.8c-3.1,2.6-4.6,6.1-4.6,10.9c0,4.4,1.1,7.8,3.5,10
|
||||
C34.1,75,37.4,76.1,41.7,76.1z M117.6,86.3c-1.7,0-2.8-0.3-3.6-0.9c-0.8-0.6-1.4-1.9-2-3.7L89.9,8.6C89.3,6.7,89,5.5,89,4.8
|
||||
c0-1.5,0.8-2.4,2.3-2.4h9.3c1.8,0,3,0.3,3.7,0.9c0.8,0.6,1.3,1.9,1.9,3.7L122,69.7l14.7-62.6c0.5-1.9,1-3.1,1.8-3.7
|
||||
s2.1-0.9,3.8-0.9h7.6c1.8,0,3,0.3,3.8,0.9c0.8,0.6,1.4,1.9,1.8,3.7l14.9,63.3l16.4-63.3c0.6-1.9,1.2-3.1,1.9-3.7
|
||||
c0.8-0.6,2-0.9,3.7-0.9h8.8c1.5,0,2.4,0.8,2.4,2.4c0,0.5-0.1,0.9-0.2,1.5s-0.3,1.3-0.7,2.4l-22.8,73.1c-0.6,1.9-1.2,3.1-2,3.7
|
||||
c-0.8,0.6-2,0.9-3.6,0.9h-8.1c-1.8,0-3-0.3-3.8-0.9c-0.8-0.7-1.4-1.9-1.8-3.8l-14.7-61l-14.6,60.9c-0.5,1.9-1,3.1-1.8,3.8
|
||||
c-0.8,0.7-2.1,0.9-3.8,0.9H117.6z M239.1,88.9c-4.9,0-9.8-0.6-14.6-1.7c-4.7-1.1-8.4-2.4-10.9-3.8c-1.5-0.9-2.6-1.8-2.9-2.6
|
||||
c-0.4-0.9-0.6-1.8-0.6-2.6v-4.8c0-2,0.8-2.9,2.2-2.9c0.6,0,1.1,0.1,1.7,0.3c0.6,0.2,1.4,0.6,2.4,0.9c3.2,1.4,6.7,2.6,10.4,3.3
|
||||
c3.8,0.8,7.5,1.1,11.3,1.1c6,0,10.6-1,13.8-3.1c3.2-2.1,4.9-5.1,4.9-9c0-2.6-0.9-4.8-2.6-6.6c-1.7-1.8-4.9-3.4-9.5-4.9L231,48.1
|
||||
c-6.9-2.2-12-5.4-15.1-9.6c-3.1-4.2-4.7-8.8-4.7-13.7c0-4,0.9-7.5,2.6-10.5c1.7-3,4-5.7,6.8-7.8c2.8-2.2,6.1-3.8,9.8-4.9
|
||||
S238.1,0,242.3,0c2.1,0,4.3,0.1,6.3,0.4c2.2,0.3,4.2,0.7,6.1,1c1.9,0.5,3.7,0.9,5.4,1.5c1.7,0.6,3,1.1,4,1.7
|
||||
c1.3,0.8,2.3,1.5,2.8,2.4c0.6,0.8,0.9,1.8,0.9,3.1v4.4c0,2-0.8,3-2.2,3c-0.8,0-2-0.4-3.6-1.1c-5.4-2.5-11.4-3.7-18.2-3.7
|
||||
c-5.4,0-9.6,0.9-12.6,2.6c-2.9,1.8-4.4,4.5-4.4,8.4c0,2.6,0.9,4.9,2.8,6.7c1.9,1.8,5.4,3.6,10.4,5.2l13.4,4.3
|
||||
c6.8,2.2,11.7,5.2,14.7,9.1s4.3,8.3,4.3,13.2c0,4.1-0.9,7.8-2.5,11c-1.7,3.2-4,6.1-6.9,8.3c-2.9,2.4-6.4,4.1-10.5,5.3
|
||||
C248.4,88.2,244,88.9,239.1,88.9z"/>
|
||||
<path class="st1" d="M257,134.8c-31.1,23-76.3,35.2-115.2,35.2c-54.5,0-103.5-20.1-140.6-53.6c-2.9-2.6-0.3-6.2,3.2-4.2
|
||||
c40.1,23.3,89.5,37.3,140.7,37.3c34.5,0,72.4-7.2,107.3-21.9C257.7,125.3,262.1,131,257,134.8z M270,120.1
|
||||
c-4-5.1-26.3-2.5-36.4-1.2c-3,0.4-3.5-2.3-0.8-4.3c17.8-12.5,47-8.9,50.4-4.7c3.4,4.3-0.9,33.5-17.6,47.5c-2.6,2.2-5,1-3.9-1.8
|
||||
C265.5,146.2,273.9,125.1,270,120.1z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="design" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 36.3 51.1" style="enable-background:new 0 0 36.3 51.1;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#E44D26;}
|
||||
.st1{fill:#F16529;}
|
||||
.st2{fill:#EBEBEB;}
|
||||
.st3{fill:#FFFFFF;}
|
||||
.st4{fill:#264DE4;}
|
||||
.st5{fill:#2965F1;}
|
||||
.st6{fill:#DAB92D;}
|
||||
.st7{fill:#FFD839;}
|
||||
.st8{fill:#53C1DE;}
|
||||
.st9{fill:#002A41;}
|
||||
.st10{fill:#0071B5;}
|
||||
.st11{fill:#DF4F4F;}
|
||||
.st12{fill:#26262C;}
|
||||
.st13{fill:#CCCCCC;}
|
||||
.st14{fill:#A6120D;}
|
||||
.st15{fill:#B3B3B3;}
|
||||
.st16{fill:#DD1B16;}
|
||||
.st17{fill:#F2F2F2;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st4" d="M18,51.2L3.2,47.1L-0.1,10h36.3l-3.3,37L18,51.2L18,51.2z"/>
|
||||
<path class="st5" d="M30,44.7L32.8,13H18.1v35L30,44.7L30,44.7z"/>
|
||||
<path class="st2" d="M7.4,26.8l0.4,4.6H18v-4.6C18,26.8,7.4,26.8,7.4,26.8z M6.6,17.6L7,22.2h11v-4.6H6.6L6.6,17.6z M18,38.7
|
||||
L18,38.7l-5.1-1.4l-0.3-3.6H8l0.7,7.1l9.3,2.6l0,0C18,43.4,18,38.7,18,38.7z"/>
|
||||
<path d="M8.4,0h5.5v2.3h-3.2v2.3h3.2v2.3H8.4V0z M15,0h5.5v2h-3.2v0.4h3.2V7H15V4.9h3.2V4.5H15V0L15,0z M21.6,0h5.5v2h-3.2v0.4h3.2
|
||||
V7h-5.5V4.9h3.2V4.5h-3.2V0L21.6,0z"/>
|
||||
<path class="st3" d="M28.6,26.8l0.8-9.2H18v4.6h6.4L24,26.8h-6v4.6h5.6l-0.5,5.9L18,38.7v4.8l9.3-2.6l0.1-0.8l1.1-12L28.6,26.8
|
||||
L28.6,26.8z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 5.9 KiB |
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.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 227.2 170" style="enable-background:new 0 0 227.2 170;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#252F3E;}
|
||||
.st1{fill:#FF9900;}
|
||||
.st2{fill:#EA4335;}
|
||||
.st3{fill:#4285F4;}
|
||||
.st4{fill:#34A853;}
|
||||
.st5{fill:#FBBC05;}
|
||||
.st6{fill:#0080FF;}
|
||||
.st7{fill:#B80017;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st6" d="M113.6,91.7v22c37.2,0,66.2-36,54-75c-5.3-17-18.9-30.6-35.9-35.9c-39-12.2-75,16.8-75,54h22c0,0,0,0,0,0
|
||||
c0-23.4,23.1-41.4,47.7-32.5c9.1,3.3,16.4,10.6,19.7,19.7C155.1,68.5,137,91.7,113.6,91.7l0.1-21.9c0,0,0,0,0,0H91.7c0,0,0,0,0,0
|
||||
v21.9H113.6z M91.7,108.6H74.9l0,0V91.7h16.9L91.7,108.6C91.7,108.6,91.7,108.6,91.7,108.6z M74.9,91.7H60.7c0,0,0,0,0,0V77.6
|
||||
c0,0,0,0,0,0h14.1c0,0,0,0,0,0V91.7z"/>
|
||||
<path class="st6" d="M19.6,136c-2.9-2-6.4-3-10.6-3H0v28.7h9.1c4.2,0,7.7-1.1,10.6-3.2c1.6-1.1,2.8-2.7,3.7-4.6
|
||||
c0.9-1.9,1.3-4.2,1.3-6.8c0-2.5-0.4-4.8-1.3-6.7C22.4,138.6,21.2,137,19.6,136z M5.3,137.9h2.8c3.2,0,5.8,0.6,7.7,1.9
|
||||
c2.2,1.3,3.3,3.8,3.3,7.5c0,3.7-1.1,6.4-3.3,7.8h0c-1.9,1.3-4.5,1.9-7.7,1.9H5.3V137.9z M28.3,161.7h5.1v-20.2h-5.1V161.7z
|
||||
M30.9,132.6c-0.9,0-1.6,0.3-2.2,0.9c-0.6,0.6-0.9,1.3-0.9,2.2c0,0.9,0.3,1.6,0.9,2.2c0.6,0.6,1.4,0.9,2.2,0.9s1.6-0.3,2.2-0.9
|
||||
c0.6-0.6,0.9-1.4,0.9-2.2c0-0.9-0.3-1.6-0.9-2.2C32.5,132.9,31.8,132.6,30.9,132.6z M51.9,143.2c-1.5-1.4-3.3-2.2-5.1-2.2
|
||||
c-2.8,0-5.1,1-6.9,2.9c-1.8,1.9-2.7,4.3-2.7,7.3c0,2.9,0.9,5.3,2.7,7.3c1.8,1.9,4.2,2.9,7,2.9c2,0,3.7-0.5,5-1.6v0.5
|
||||
c0,1.7-0.5,3-1.3,3.9c-0.9,0.9-2.1,1.4-3.7,1.4c-2.4,0-3.8-0.9-5.6-3.3l-3.5,3.3l0.1,0.1c0.7,1.1,1.9,2.1,3.4,3.1
|
||||
c1.5,1,3.4,1.5,5.7,1.5c3,0,5.5-0.9,7.3-2.8c1.8-1.8,2.7-4.3,2.7-7.4v-18.4h-5V143.2z M50.6,155.1c-0.9,1-2,1.5-3.5,1.5
|
||||
c-1.5,0-2.6-0.5-3.5-1.5c-0.9-1-1.3-2.3-1.3-4c0-1.6,0.4-3,1.3-4c0.9-1,2-1.5,3.5-1.5c1.5,0,2.6,0.5,3.5,1.5c0.9,1,1.3,2.4,1.3,4
|
||||
C51.9,152.8,51.4,154.1,50.6,155.1z M61.3,161.7h5.1v-20.2h-5.1V161.7z M63.9,132.6c-0.9,0-1.6,0.3-2.2,0.9
|
||||
c-0.6,0.6-0.9,1.3-0.9,2.2c0,0.9,0.3,1.6,0.9,2.2c0.6,0.6,1.4,0.9,2.2,0.9c0.9,0,1.6-0.3,2.2-0.9c0.6-0.6,0.9-1.4,0.9-2.2
|
||||
c0-0.9-0.3-1.6-0.9-2.2C65.5,132.9,64.7,132.6,63.9,132.6z M77.5,136h-5v5.5h-2.9v4.6h2.9v8.4c0,2.6,0.5,4.5,1.6,5.6
|
||||
c1,1.1,2.9,1.6,5.5,1.6c0.8,0,1.7,0,2.5-0.1l0.2,0V157l-1.7,0.1c-1.2,0-2-0.2-2.4-0.6c-0.4-0.4-0.6-1.3-0.6-2.7v-7.7h4.7v-4.6h-4.7
|
||||
V136z M99.8,143L99.8,143c-1.5-1.3-3.7-2-6.3-2c-1.7,0-3.3,0.4-4.7,1.1c-1.3,0.7-2.6,1.8-3.5,3.2l0.1,0.1l3.3,3.1
|
||||
c1.3-2.1,2.8-2.9,4.8-2.9c1.1,0,1.9,0.3,2.6,0.8c0.7,0.6,1,1.3,1,2.2v1c-1.3-0.4-2.5-0.6-3.7-0.6c-2.5,0-4.6,0.6-6.1,1.8
|
||||
c-1.6,1.2-2.3,2.9-2.3,5.1c0,1.9,0.7,3.4,2,4.6c1.3,1.1,3,1.7,4.9,1.7c1.9,0,3.8-0.8,5.4-2.1v1.7h5v-13
|
||||
C102.1,146.3,101.3,144.3,99.8,143z M90.7,154c0.6-0.4,1.4-0.6,2.4-0.6c1.2,0,2.5,0.2,3.9,0.7v2c-1.1,1-2.6,1.6-4.4,1.6
|
||||
c-0.9,0-1.6-0.2-2-0.6c-0.5-0.4-0.7-0.9-0.7-1.5C89.9,154.9,90.1,154.4,90.7,154z M106.2,161.7h5.1V133h-5.1V161.7z M129.7,162.2
|
||||
c-8.2,0-14.8-6.6-14.8-14.8c0-8.2,6.6-14.8,14.8-14.8c8.2,0,14.8,6.6,14.8,14.8C144.5,155.5,137.9,162.2,129.7,162.2z M129.7,137.8
|
||||
c-5.3,0-9.6,4.3-9.6,9.6c0,5.3,4.3,9.6,9.6,9.6c5.3,0,9.6-4.3,9.6-9.6C139.3,142.1,135,137.8,129.7,137.8z M162.7,154.5
|
||||
c-0.9,1-1.8,1.9-2.6,2.4v0c-0.7,0.5-1.6,0.7-2.6,0.7c-1.5,0-2.7-0.5-3.7-1.7c-1-1.1-1.5-2.6-1.5-4.3c0-1.7,0.5-3.2,1.5-4.3
|
||||
c1-1.1,2.2-1.7,3.7-1.7c1.6,0,3.4,1,4.9,2.8l3.4-3.2c-2.2-2.9-5-4.2-8.3-4.2c-2.8,0-5.2,1-7.2,3c-2,2-3,4.5-3,7.5c0,3,1,5.6,3,7.6
|
||||
c2,2,4.4,3,7.2,3c3.7,0,6.7-1.6,8.7-4.5L162.7,154.5z M183.6,144.3c-0.7-1-1.7-1.8-2.9-2.4c-1.2-0.6-2.6-0.9-4.2-0.9
|
||||
c-2.8,0-5.2,1-6.9,3.1c-1.7,2.1-2.6,4.6-2.6,7.6c0,3.1,0.9,5.6,2.8,7.5c1.8,1.9,4.3,2.9,7.4,2.9c3.4,0,6.3-1.4,8.4-4.1l0.1-0.1
|
||||
l-3.3-3.2c-0.3,0.4-0.7,0.8-1.1,1.2c-0.5,0.5-1,0.8-1.5,1.1c-0.8,0.4-1.6,0.6-2.6,0.6c-1.4,0-2.6-0.4-3.5-1.2
|
||||
c-0.8-0.8-1.3-1.8-1.5-3.1h13.5l0-1.9c0-1.3-0.2-2.6-0.5-3.8C184.9,146.4,184.3,145.3,183.6,144.3z M172.5,149.1
|
||||
c0.2-1,0.7-1.8,1.3-2.4c0.7-0.7,1.6-1,2.7-1c1.2,0,2.2,0.4,2.8,1c0.6,0.6,0.9,1.4,1,2.4H172.5z M203.2,143L203.2,143
|
||||
c-1.5-1.3-3.7-2-6.3-2c-1.7,0-3.3,0.4-4.7,1.1c-1.3,0.7-2.6,1.8-3.5,3.2l0.1,0.1l3.3,3.1c1.3-2.1,2.8-2.9,4.8-2.9
|
||||
c1.1,0,1.9,0.3,2.6,0.8c0.7,0.6,1,1.3,1,2.2v1c-1.3-0.4-2.5-0.6-3.7-0.6c-2.5,0-4.6,0.6-6.1,1.8c-1.6,1.2-2.3,2.9-2.3,5.1
|
||||
c0,1.9,0.7,3.4,2,4.6c1.3,1.1,3,1.7,4.9,1.7c1.9,0,3.8-0.8,5.4-2.1v1.7h5v-13C205.5,146.3,204.7,144.3,203.2,143z M194.1,154
|
||||
c0.6-0.4,1.4-0.6,2.4-0.6c1.2,0,2.5,0.2,3.9,0.7v2c-1.1,1-2.6,1.6-4.4,1.6c-0.9,0-1.6-0.2-2-0.6c-0.5-0.4-0.7-0.9-0.7-1.5
|
||||
C193.3,154.9,193.6,154.4,194.1,154z M225.1,143.4c-1.4-1.6-3.4-2.4-5.9-2.4c-2,0-3.7,0.6-4.9,1.7v-1.3h-5v20.2h5.1v-11.2
|
||||
c0-1.5,0.4-2.8,1.1-3.6c0.7-0.9,1.7-1.3,3-1.3c1.2,0,2,0.4,2.7,1.2c0.6,0.8,1,1.8,1,3.2v11.7h5.1V150
|
||||
C227.2,147.2,226.5,145,225.1,143.4z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
@@ -0,0 +1,72 @@
|
||||
<?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 300 257" style="enable-background:new 0 0 300 257;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#2496EC;}
|
||||
.st1{fill:#7BBFF3;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M0,228.1c0.5-0.8,0.4-1.7,0.6-2.6c2.5-11,12.5-19.3,23.8-19.6c6-0.2,11.5,1.4,16.3,5c0.1,0.1,0.2,0.2,0.4,0.3
|
||||
c0.3-0.4,0.2-0.8,0.2-1.2c0-6.8,0-13.6,0-20.4c0-0.8,0-1.5,0.2-2.3c0.6-2.1,2.8-3.5,5.1-3.2c2.3,0.3,4.1,2.1,4.1,4.3
|
||||
c0.1,1.8,0,3.6,0,5.5c0,12.7,0.1,25.3,0,38c-0.1,11.1-7.5,20.8-18.2,23.9c-1.4,0.4-2.9,0.7-4.4,0.8c-1.8,0-3.7,0-5.5,0
|
||||
c-9.7-0.5-19.3-8.5-21.8-18.2c-0.3-1.3-0.6-2.6-0.9-3.9C0,232.4,0,230.2,0,228.1z M41.3,231.4c0-8.7-7.2-16-15.9-16
|
||||
c-8.7,0-15.9,7.1-15.9,15.9c0,8.8,7,16,15.9,16C34.2,247.3,41.3,240.2,41.3,231.4z"/>
|
||||
<path class="st0" d="M227.7,256.8c-0.8-0.5-1.7-0.4-2.5-0.6c-11.3-2.6-19.4-12.7-19.7-24.3c-0.3-13.4,9.6-22.8,18.9-25.2
|
||||
c14.6-3.7,29.1,5.6,31.7,20.5c0.2,1.3,0.3,2.6,0.3,3.9c0,3.1-1.9,5-4.9,5c-10,0-20.1,0-30.1,0c-1.8,0-3.6,0-5.4,0
|
||||
c-0.3,0.5,0,0.8,0.1,1.1c3.9,10.2,17.3,13.4,25.4,6.1c1.5-1.4,3.2-2,5.2-1.3c1.8,0.7,2.8,2.1,3,4c0.2,1.6-0.4,3.1-1.6,4.2
|
||||
c-3.9,3.6-8.4,5.8-13.7,6.4c-0.3,0-0.5,0-0.7,0.2C231.7,256.8,229.7,256.8,227.7,256.8z M246.2,226.7c-1.1-6.5-9-11.7-16.8-11.1
|
||||
c-6.1,0.5-13.3,6.4-13.4,11.1C226,226.7,236,226.7,246.2,226.7z"/>
|
||||
<path class="st0" d="M164.4,256.8c-0.2-0.3-0.5-0.2-0.7-0.3c-1.8-0.6-3.1-2.3-3.2-4.3c0-0.9,0-1.8,0-2.7c0-19.9,0-39.8,0-59.7
|
||||
c0-0.8-0.1-1.5,0.2-2.3c0.6-2.2,2.9-3.7,5.2-3.4c2.3,0.3,4.1,2.1,4.1,4.5c0.1,5.3,0,10.6,0,16c0,6.5,0,13,0,19.5
|
||||
c0.6,0.1,0.9-0.3,1.2-0.5c8.6-5.6,17.1-11.1,25.7-16.7c3.2-2.1,7.1-0.4,7.6,3.4c0.2,1.9-0.5,3.4-2.1,4.5
|
||||
c-5.8,3.8-11.7,7.6-17.5,11.3c-0.3,0.2-0.7,0.5-1.2,0.8c0.8,0.9,1.5,1.7,2.2,2.6c5.5,6.2,10.9,12.6,16.6,18.6
|
||||
c2.9,3.1,2.4,7.6-2.1,8.9c-0.5,0-1.1,0-1.6,0c-1.3-0.4-2.3-1.2-3.2-2.2c-6.3-7.1-12.5-14.1-18.8-21.2c-0.4-0.5-0.8-1-1.4-1.4
|
||||
c-1.5,1-2.9,2-4.5,2.9c-0.7,0.4-1,0.9-1,1.8c0,5,0,10.1,0,15.1c0,2.1-1,3.6-2.9,4.5c-0.3,0.2-0.7,0.3-1,0.4
|
||||
C165.4,256.8,164.9,256.8,164.4,256.8z"/>
|
||||
<path class="st0" d="M300,213.3c-0.8,2-2,3.5-4.4,3.7c-1,0.1-1.9-0.3-2.9-0.6c-9-3.2-18.6,1.6-21.1,10.7c-0.4,1.4-0.6,2.9-0.6,4.4
|
||||
c0,6.4-0.1,12.8,0,19.3c0.1,3.1-1,5.1-3.9,6.1c-0.6,0-1.2,0-1.8,0c-0.1-0.1-0.2-0.2-0.4-0.2c-2.3-0.9-3.4-2.4-3.4-4.8
|
||||
c0-13.6,0-27.3,0-40.9c0-2.6,1.7-4.6,4-4.9c2.6-0.3,4.8,1.1,5.4,3.5c0.1,0.6,0.1,1.2,0.2,1.8c0.5-0.1,0.8-0.5,1.2-0.8
|
||||
c5.5-3.9,11.7-5.2,18.4-4.4c1.3,0.2,2.6,0.4,3.9,0.7c2.3,0.7,4.3,1.8,5.4,4.1C300,211.8,300,212.5,300,213.3z"/>
|
||||
<path class="st0" d="M174.4,0.2c0.9,0.6,1.2,1.3,1.2,2.4c0,5.6,0,11.2,0,16.8c0,1.7-0.6,2.3-2.3,2.3c-6.4,0-12.8,0-19.2,0
|
||||
c-1.7,0-2.2-0.6-2.2-2.3c0-5.6,0-11.2,0-16.8c0-1.1,0.3-1.8,1.2-2.4C160.1,0.2,167.2,0.2,174.4,0.2z"/>
|
||||
<path class="st1" d="M22.8,256.8c0-0.1,0-0.1,0-0.2c1.8,0,3.7,0,5.5,0c0,0.1,0,0.1,0,0.2C26.4,256.8,24.6,256.8,22.8,256.8z"/>
|
||||
<path class="st1" d="M78.4,256.8c0-0.1,0-0.1,0-0.2c1.8,0,3.7,0,5.5,0c0,0.1,0,0.1,0,0.2C82.1,256.8,80.2,256.8,78.4,256.8z"/>
|
||||
<path class="st1" d="M139.5,256.6c0,0.1,0,0.1,0,0.2c-1.8,0-3.6,0-5.5,0c0-0.1,0-0.1,0-0.2C135.9,256.6,137.7,256.6,139.5,256.6z"
|
||||
/>
|
||||
<path class="st0" d="M222.8,73.9c-9.7-15.6-2.7-33.7,4.3-42.1c10.6,5.7,17.4,14.2,19.6,26.2c1.4-0.2,2.8-0.3,4.2-0.5
|
||||
c5.9-0.6,11.7-0.3,17.4,1.4c3,0.9,5.7,2.3,8.1,4.3c0.6,0.5,0.8,0.9,0.5,1.7c-3.4,9.8-10.2,15.9-19.8,19.3c-4.5,1.6-9.2,2.1-14,2
|
||||
c-1,0-1.4,0.3-1.7,1.2c-4,10.2-8.8,20.1-15,29.2c-14.4,21.4-34.1,35.3-58.9,42.4c-10.8,3.1-21.8,4.7-33,5.1
|
||||
c-12.3,0.5-24.5-0.3-36.5-3.1c-8.2-1.9-16-4.6-22.9-9.5c-8.3-6-14-14-18.2-23.2c-4-8.7-6.3-17.9-7.6-27.4c-0.7-5.1-0.9-10.2-1-15.3
|
||||
c-0.1-4.9,3.6-7.9,7.8-7.9c49.7,0.1,99.5,0.1,149.2,0c5.6,0,11-1.1,16.2-3.3C222,74.3,222.3,74.1,222.8,73.9z"/>
|
||||
<path class="st0" d="M83.9,256.6c-1.8,0-3.7,0-5.5,0c-7.5-0.7-13.4-4.4-17.8-10.3c-10.8-14.7-3-36.4,16-40
|
||||
c13.6-2.5,26.6,6.1,29.4,19.6c3.5,16.7-8.8,29-21.3,30.6C84.5,256.6,84.2,256.6,83.9,256.6z M97.1,231.3c0-8.7-7.2-15.8-15.9-15.9
|
||||
c-8.7,0-16,7.3-16,15.9c0.1,8.8,7.2,15.9,16,15.9C90,247.3,97.1,240.1,97.1,231.3z"/>
|
||||
<path class="st0" d="M139.5,256.6c-1.8,0-3.7,0-5.5,0c-8-0.8-14.2-4.8-18.5-11.5c-9.9-15.3-1.1-35.6,16.8-38.8
|
||||
c7.7-1.4,14.8,0.3,20.8,5.5c2.3,2,2.5,5.1,0.6,7.2c-1.7,1.8-4.5,1.9-6.6,0.3c-2.2-1.7-4.6-3.1-7.4-3.6c-9.1-1.8-18.1,5-18.8,14.2
|
||||
c-0.5,6.9,2.3,12.3,8.4,15.5c6.1,3.2,12,2.6,17.5-1.7c2.3-1.8,5.3-1.7,7,0.3c1.8,2.1,1.4,5.1-0.8,7
|
||||
C149.1,254.3,144.7,256.2,139.5,256.6z"/>
|
||||
<path class="st0" d="M107.6,51.9c3.2,0,6.3,0,9.5,0c1.8,0,2.4,0.6,2.4,2.4c0,5.6,0,11.2,0,16.7c0,1.8-0.6,2.4-2.3,2.4
|
||||
c-6.4,0-12.8,0-19.2,0c-1.7,0-2.3-0.6-2.3-2.3c0-5.7,0-11.3,0-17c0-1.7,0.6-2.3,2.3-2.3C101.1,51.9,104.3,51.9,107.6,51.9z"/>
|
||||
<path class="st0" d="M107.5,47.6c-3.2,0-6.4,0-9.6,0c-1.7,0-2.3-0.6-2.3-2.3c0-5.6,0-11.2,0-16.9c0-1.7,0.6-2.4,2.3-2.4
|
||||
c6.4,0,12.8,0,19.1,0c1.7,0,2.3,0.6,2.3,2.4c0,5.6,0,11.2,0,16.9c0,1.7-0.6,2.3-2.3,2.3C113.9,47.6,110.7,47.6,107.5,47.6z"/>
|
||||
<path class="st0" d="M135.9,51.9c3.2,0,6.4,0,9.6,0c1.6,0,2.2,0.6,2.2,2.2c0,5.7,0,11.4,0,17.1c0,1.6-0.6,2.2-2.2,2.2
|
||||
c-6.5,0-12.9,0-19.4,0c-1.6,0-2.2-0.7-2.2-2.2c0-5.7,0-11.4,0-17.1c0-1.6,0.7-2.2,2.3-2.2C129.4,51.9,132.6,51.9,135.9,51.9z"/>
|
||||
<path class="st0" d="M191.9,51.9c3.2,0,6.4,0,9.6,0c1.6,0,2.2,0.6,2.2,2.2c0,5.7,0,11.4,0,17.1c0,1.6-0.6,2.2-2.2,2.2
|
||||
c-6.5,0-12.9,0-19.4,0c-1.6,0-2.2-0.6-2.2-2.2c0-5.7,0-11.4,0-17.1c0-1.6,0.7-2.2,2.3-2.2C185.5,51.9,188.7,51.9,191.9,51.9z"/>
|
||||
<path class="st0" d="M135.8,47.6c-3.2,0-6.4,0-9.6,0c-1.7,0-2.3-0.6-2.3-2.3c0-5.6,0-11.2,0-16.9c0-1.7,0.6-2.4,2.3-2.4
|
||||
c6.4,0,12.8,0,19.1,0c1.7,0,2.3,0.6,2.3,2.3c0,5.6,0,11.2,0,16.9c0,1.8-0.6,2.4-2.4,2.4C142.1,47.6,138.9,47.6,135.8,47.6z"/>
|
||||
<path class="st0" d="M79.7,73.4c-3.2,0-6.4,0-9.6,0c-1.8,0-2.3-0.6-2.3-2.3c0-5.7,0-11.3,0-17c0-1.6,0.6-2.2,2.3-2.2
|
||||
c6.4,0,12.8,0,19.1,0c1.7,0,2.3,0.6,2.3,2.3c0,5.6,0,11.2,0,16.8c0,1.8-0.6,2.3-2.4,2.3C86,73.4,82.8,73.4,79.7,73.4z"/>
|
||||
<path class="st0" d="M163.6,47.6c-3.1,0-6.3,0-9.4,0c-1.8,0-2.3-0.6-2.3-2.3c0-5.7,0-11.3,0-17c0-1.7,0.6-2.2,2.2-2.3
|
||||
c6.4,0,12.8,0,19.2,0c1.7,0,2.2,0.6,2.2,2.3c0,5.7,0,11.3,0,17c0,1.7-0.6,2.3-2.3,2.3C170.1,47.6,166.8,47.6,163.6,47.6z"/>
|
||||
<path class="st0" d="M163.7,73.4c-3.2,0-6.4,0-9.6,0c-1.8,0-2.3-0.6-2.3-2.3c0-5.6,0-11.2,0-16.8c0-1.8,0.6-2.3,2.3-2.3
|
||||
c6.4,0,12.8,0,19.1,0c1.7,0,2.3,0.6,2.3,2.3c0,5.7,0,11.3,0,17c0,1.6-0.6,2.2-2.2,2.2C170.1,73.4,166.9,73.4,163.7,73.4z"/>
|
||||
<path class="st0" d="M285.9,253.2c0,1.8-1.5,3.3-3.3,3.3c-1.9,0-3.4-1.5-3.4-3.4c0-1.8,1.6-3.2,3.4-3.2
|
||||
C284.4,249.9,285.9,251.4,285.9,253.2z M284,255c1-0.7,1.2-1.8,0.7-3c-0.5-1.1-1.7-1.7-2.9-1.4c-1,0.3-1.8,1.2-1.9,2.3
|
||||
c-0.1,1.1,0.6,2.2,1.6,2.5C282.4,255.9,283.4,256,284,255L284,255z"/>
|
||||
<path class="st0" d="M284.1,255c-0.5-0.1-0.9-0.2-1-0.8c-0.1-0.5-0.4-0.7-1-0.5c0,0.3-0.1,0.7-0.1,1.1c-0.8-0.1-0.9-1-0.6-3.1
|
||||
c0.6-0.2,1.2-0.1,1.8-0.1c0.5,0.1,0.9,0.5,0.7,0.8C283.2,253.4,284.1,254.2,284.1,255C284,255,284.1,255,284.1,255z M282.1,253
|
||||
c0.5,0,0.9,0.1,1-0.4c0-0.4-0.3-0.5-0.6-0.5C281.8,252.1,282,252.5,282.1,253z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.0 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 111.13 40.32"><defs><style>.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#39cefd;}.cls-4{fill:#03569b;}.cls-5{fill:url(#linear-gradient);}.cls-6{fill:#16b9fd;}.cls-7{fill:url(#radial-gradient);}.cls-8{fill:gray;}</style><clipPath id="clip-path"><path class="cls-1" d="M32.56,18.61,21.71,29.46,32.56,40.32H20.16L15.5,35.67l-6.2-6.2L20.16,18.61ZM20.16,0,0,20.16l6.2,6.2L32.56,0Z"/></clipPath><linearGradient id="linear-gradient" x1="-8171.65" y1="3393.54" x2="-8165.14" y2="3400.05" gradientTransform="matrix(0, 0, 0, 0, -1325.17, -664.95)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#1a237e" stop-opacity="0.4"/><stop offset="1" stop-color="#1a237e" stop-opacity="0"/></linearGradient><radialGradient id="radial-gradient" cx="16.28" cy="20.16" r="18.32" gradientTransform="matrix(0, 0, 0, 0, -1325.17, -664.95)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff" stop-opacity="0.1"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></radialGradient></defs><title>flutter-logo</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><g class="cls-2"><path class="cls-3" d="M15.5,35.67,32.56,18.61H20.16L9.3,29.46Z"/></g><g class="cls-2"><path class="cls-3" d="M0,20.16,20.16,0h12.4L6.2,26.36Z"/></g><g class="cls-2"><path class="cls-4" d="M20.16,40.32h12.4L21.71,29.46l-6.2,6.2Z"/></g><g class="cls-2"><path class="cls-5" d="M21.71,29.46l-6.2,6.2,9.2-3.19Z"/></g><g class="cls-2"><path class="cls-6" d="M9.3,29.46l6.2-6.2,6.2,6.2-6.2,6.21Z"/></g><path class="cls-7" d="M32.56,18.61,21.71,29.46,32.56,40.32H20.16L15.5,35.67l-6.2-6.2L20.16,18.61ZM20.16,0,0,20.16l6.2,6.2L32.56,0Z"/><path class="cls-8" d="M36.49,10.81H47.36v2.07H38.77V19.3h7.76v2.07H38.77v8.08H36.59V10.81Z"/><path class="cls-8" d="M49.95,10.81h2.17V29.55H49.95Z"/><path class="cls-8" d="M60.3,30a4.91,4.91,0,0,1-3.73-1.45,5.78,5.78,0,0,1-1.24-3.93V16.19H57.5v8.08a4.28,4.28,0,0,0,.83,2.8,3.12,3.12,0,0,0,2.38.93,3.19,3.19,0,0,0,2-.62A3.87,3.87,0,0,0,64,25.82a4.71,4.71,0,0,0,.52-2.07V16.19h2.17V29.55H64.65v-2h-.1a4.55,4.55,0,0,1-1.76,1.66A4.13,4.13,0,0,1,60.3,30Z"/><path class="cls-8" d="M75.41,29.75a4.15,4.15,0,0,1-1.55-.31,4.27,4.27,0,0,1-1.14-.72,4.6,4.6,0,0,1-.83-1.14A3.46,3.46,0,0,1,71.58,26V18.16H69.2v-2h2.38V12.46h2.17v3.73H77v2H73.76V25.4a2.63,2.63,0,0,0,.41,1.66,1.74,1.74,0,0,0,1.45.62,2.38,2.38,0,0,0,1.45-.41v2.17c-.31.1-.52.21-.83.31Z"/><path class="cls-8" d="M84.84,29.75a4.15,4.15,0,0,1-1.55-.31,4.27,4.27,0,0,1-1.14-.72,4.6,4.6,0,0,1-.83-1.14A3.46,3.46,0,0,1,81,26V18.16H78.83v-2h2.38V12.46h2.17v3.73H86.6v2H83.39V25.4a2.63,2.63,0,0,0,.41,1.66,1.74,1.74,0,0,0,1.45.62,2.38,2.38,0,0,0,1.45-.41v2.17c-.31.1-.52.21-.83.31Z"/><path class="cls-8" d="M94.67,30A6.52,6.52,0,0,1,91.25,29a6.85,6.85,0,0,1-2.38-2.48A8.12,8.12,0,0,1,88,22.92a8,8,0,0,1,.83-3.52,6.89,6.89,0,0,1,2.28-2.59,6.31,6.31,0,0,1,9,2.38,7.68,7.68,0,0,1,.83,3.52,1.54,1.54,0,0,1-.1.72H90.22A6.34,6.34,0,0,0,90.94,26a4,4,0,0,0,1.66,1.55,5.09,5.09,0,0,0,2.07.52,4.34,4.34,0,0,0,3.93-2.38l1.86.93a7.16,7.16,0,0,1-2.38,2.59,7.62,7.62,0,0,1-3.42.72Zm3.83-8.49A3.44,3.44,0,0,0,98,19.81a4.42,4.42,0,0,0-1.35-1.45,3.94,3.94,0,0,0-2.28-.62,3.67,3.67,0,0,0-2.69,1,5.2,5.2,0,0,0-1.45,2.69Z"/><path class="cls-8" d="M103.47,16.19h2.07v2.17h.1a3.2,3.2,0,0,1,1.55-1.76,4,4,0,0,1,2.38-.72,3.46,3.46,0,0,1,1.55.31v2.38a3.55,3.55,0,0,0-1.86-.41,3.49,3.49,0,0,0-1.76.52,6.05,6.05,0,0,0-1.35,1.45,4.28,4.28,0,0,0-.52,2v7.45h-2.17Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg height="78" viewBox="0 0 207 78" width="207" xmlns="http://www.w3.org/2000/svg"><g fill="#00acd7" fill-rule="evenodd"><path d="m16.2 24.1c-.4 0-.5-.2-.3-.5l2.1-2.7c.2-.3.7-.5 1.1-.5h35.7c.4 0 .5.3.3.6l-1.7 2.6c-.2.3-.7.6-1 .6z"/><path d="m1.1 33.3c-.4 0-.5-.2-.3-.5l2.1-2.7c.2-.3.7-.5 1.1-.5h45.6c.4 0 .6.3.5.6l-.8 2.4c-.1.4-.5.6-.9.6z"/><path d="m25.3 42.5c-.4 0-.5-.3-.3-.6l1.4-2.5c.2-.3.6-.6 1-.6h20c.4 0 .6.3.6.7l-.2 2.4c0 .4-.4.7-.7.7z"/><g transform="translate(55)"><path d="m74.1 22.3c-6.3 1.6-10.6 2.8-16.8 4.4-1.5.4-1.6.5-2.9-1-1.5-1.7-2.6-2.8-4.7-3.8-6.3-3.1-12.4-2.2-18.1 1.5-6.8 4.4-10.3 10.9-10.2 19 .1 8 5.6 14.6 13.5 15.7 6.8.9 12.5-1.5 17-6.6.9-1.1 1.7-2.3 2.7-3.7-3.6 0-8.1 0-19.3 0-2.1 0-2.6-1.3-1.9-3 1.3-3.1 3.7-8.3 5.1-10.9.3-.6 1-1.6 2.5-1.6h36.4c-.2 2.7-.2 5.4-.6 8.1-1.1 7.2-3.8 13.8-8.2 19.6-7.2 9.5-16.6 15.4-28.5 17-9.8 1.3-18.9-.6-26.9-6.6-7.4-5.6-11.6-13-12.7-22.2-1.3-10.9 1.9-20.7 8.5-29.3 7.1-9.3 16.5-15.2 28-17.3 9.4-1.7 18.4-.6 26.5 4.9 5.3 3.5 9.1 8.3 11.6 14.1.6.9.2 1.4-1 1.7z"/><path d="m107.2 77.6c-9.1-.2-17.4-2.8-24.4-8.8-5.9-5.1-9.6-11.6-10.8-19.3-1.8-11.3 1.3-21.3 8.1-30.2 7.3-9.6 16.1-14.6 28-16.7 10.2-1.8 19.8-.8 28.5 5.1 7.9 5.4 12.8 12.7 14.1 22.3 1.7 13.5-2.2 24.5-11.5 33.9-6.6 6.7-14.7 10.9-24 12.8-2.7.5-5.4.6-8 .9zm23.8-40.4c-.1-1.3-.1-2.3-.3-3.3-1.8-9.9-10.9-15.5-20.4-13.3-9.3 2.1-15.3 8-17.5 17.4-1.8 7.8 2 15.7 9.2 18.9 5.5 2.4 11 2.1 16.3-.6 7.9-4.1 12.2-10.5 12.7-19.1z" fill-rule="nonzero"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 194.16 140.76"><defs><style>.cls-1{fill:#ea4335;}.cls-2{fill:#4285f4;}.cls-3{fill:#34a853;}.cls-4{fill:#fbbc05;}.cls-5{fill:#5f6368;}</style></defs><title>google-cloud-logo</title><g id="Layer_2" data-name="Layer 2"><g id="Art"><path class="cls-1" d="M112.43,25.28h3.48l9.91-9.91.49-4.21A44.56,44.56,0,0,0,53.81,32.9a5.37,5.37,0,0,1,3.48-.21l19.83-3.27s1-1.67,1.53-1.57a24.73,24.73,0,0,1,33.85-2.57Z"/><path class="cls-2" d="M139.94,32.9a44.63,44.63,0,0,0-13.46-21.7L112.57,25.11a24.74,24.74,0,0,1,9.08,19.62V47.2a12.39,12.39,0,0,1,0,24.77H96.88l-2.47,2.51V89.33l2.47,2.47h24.77A32.22,32.22,0,0,0,139.94,32.9Z"/><path class="cls-3" d="M72.07,91.65H96.84V71.82H72.07A12.33,12.33,0,0,1,67,70.7l-3.48,1.08-10,9.91-.87,3.48A32,32,0,0,0,72.07,91.65Z"/><path class="cls-4" d="M72.07,27.33A32.21,32.21,0,0,0,52.63,85.07L67,70.71A12.38,12.38,0,1,1,83.38,54.33L97.74,40A32.14,32.14,0,0,0,72.07,27.33Z"/><path class="cls-5" d="M13.53,133A13.14,13.14,0,0,1,4,129.13a13.08,13.08,0,0,1,0-18.83,13.14,13.14,0,0,1,9.53-4A12.76,12.76,0,0,1,22.66,110l-2.57,2.61a9.26,9.26,0,0,0-6.57-2.6,9.16,9.16,0,0,0-6.78,2.89,9.72,9.72,0,0,0,0,13.63,9.69,9.69,0,0,0,13.51.16,7.67,7.67,0,0,0,2-4.49H13.57v-3.69H25.82a12,12,0,0,1,.14,2.25,11.56,11.56,0,0,1-3.16,8.52A12.3,12.3,0,0,1,13.53,133ZM42,130.59a8.84,8.84,0,0,1-12.23,0,8.78,8.78,0,0,1,0-12.27,8.85,8.85,0,0,1,12.23,0,8.76,8.76,0,0,1,0,12.27Zm-9.53-2.41a4.68,4.68,0,0,0,6.61.22l.22-.22a5.55,5.55,0,0,0,0-7.46,4.75,4.75,0,0,0-6.72-.14l-.14.14a5.53,5.53,0,0,0,0,7.46h0Zm28.32,2.41a8.84,8.84,0,0,1-12.23,0,8.78,8.78,0,0,1,0-12.27,8.84,8.84,0,0,1,12.23,0,8.78,8.78,0,0,1,0,12.27Zm-9.53-2.41a4.68,4.68,0,0,0,6.61.22l.22-.22a5.55,5.55,0,0,0,0-7.46,4.75,4.75,0,0,0-6.71-.14l-.14.14a5.53,5.53,0,0,0,0,7.46h0Zm21.88,12.57a7.57,7.57,0,0,1-4.81-1.53,8.86,8.86,0,0,1-2.8-3.55l3.29-1.37a5.53,5.53,0,0,0,1.63,2.15,4.11,4.11,0,0,0,2.7.91,4.34,4.34,0,0,0,3.36-1.3,5.28,5.28,0,0,0,1.2-3.75v-1.24h-.13A5.51,5.51,0,0,1,73.1,133a7.84,7.84,0,0,1-5.77-2.51,8.7,8.7,0,0,1,0-12.14,7.82,7.82,0,0,1,5.77-2.53,6.22,6.22,0,0,1,2.66.59,5.34,5.34,0,0,1,1.88,1.37h.13v-1.37h3.58V131.8a9,9,0,0,1-2.3,6.71A8.08,8.08,0,0,1,73.17,140.75Zm.26-11.09a4.2,4.2,0,0,0,3.26-1.44,5.34,5.34,0,0,0,1.31-3.7,5.45,5.45,0,0,0-1.31-3.77,4.19,4.19,0,0,0-3.26-1.44,4.47,4.47,0,0,0-3.38,1.44,5.27,5.27,0,0,0-1.44,3.74,5.17,5.17,0,0,0,1.44,3.7A4.47,4.47,0,0,0,73.44,129.67Zm14.28-22.37v25.23H83.95V107.29ZM98,133A8.19,8.19,0,0,1,92,130.58a8.36,8.36,0,0,1-2.44-6.12,8.48,8.48,0,0,1,2.35-6.18,7.75,7.75,0,0,1,5.77-2.41,7.29,7.29,0,0,1,2.89.56,6.8,6.8,0,0,1,2.21,1.44,10,10,0,0,1,1.44,1.75,10.56,10.56,0,0,1,.85,1.69l.39,1L93.89,127a4.33,4.33,0,0,0,4.16,2.6,4.93,4.93,0,0,0,4.23-2.38l2.89,1.95a9.48,9.48,0,0,1-2.77,2.63A7.86,7.86,0,0,1,98,133Zm-4.82-8.85,7.68-3.19a2.64,2.64,0,0,0-1.2-1.31,3.91,3.91,0,0,0-2-.51,4.46,4.46,0,0,0-3.1,1.37A4.57,4.57,0,0,0,93.23,124.2Z"/><path class="cls-5" d="M125.17,133a11.89,11.89,0,0,1-12.1-11.69c0-.16,0-.32,0-.48a11.9,11.9,0,0,1,11.61-12.17h.48a10.78,10.78,0,0,1,8.56,3.81l-2.08,2a7.85,7.85,0,0,0-6.47-3,8.83,8.83,0,0,0-6.42,2.57,10,10,0,0,0,0,13.46,8.82,8.82,0,0,0,6.42,2.57,9.18,9.18,0,0,0,7.22-3.38l2.08,2.08a11.36,11.36,0,0,1-4,3A12.17,12.17,0,0,1,125.17,133Z"/><path class="cls-5" d="M140.07,132.53h-3V109.21h3Z"/><path class="cls-5" d="M145,118.49a8.36,8.36,0,0,1,11.78,0,9.11,9.11,0,0,1,0,12.13,8.36,8.36,0,0,1-11.78,0,9.11,9.11,0,0,1,0-12.13Zm2.22,10.25a5,5,0,0,0,7.12.2l.2-.2a6.44,6.44,0,0,0,0-8.37,5,5,0,0,0-7.12-.2l-.2.2a6.4,6.4,0,0,0,0,8.36Z"/><path class="cls-5" d="M175.6,132.53h-2.89v-2.21h-.09a5.57,5.57,0,0,1-2.11,2,5.88,5.88,0,0,1-3,.79,5.62,5.62,0,0,1-4.53-1.82,7.23,7.23,0,0,1-1.55-4.88v-9.82h3v9.27q0,4.46,3.94,4.46a3.67,3.67,0,0,0,3-1.44,5.44,5.44,0,0,0,1.17-3.45v-8.84h3v15.94Z"/><path class="cls-5" d="M185.75,133a7,7,0,0,1-5.34-2.44,9.29,9.29,0,0,1,0-12.1,7,7,0,0,1,5.34-2.44,6.78,6.78,0,0,1,3.26.78,5.51,5.51,0,0,1,2.17,1.95h.13l-.13-2.21v-7.38h3v23.32h-2.89v-2.21h-.13a5.51,5.51,0,0,1-2.17,1.95A6.77,6.77,0,0,1,185.75,133Zm.49-2.73a4.76,4.76,0,0,0,3.59-1.56,6.84,6.84,0,0,0,0-8.4,4.88,4.88,0,0,0-6.89-.32c-.11.1-.22.21-.32.32a6.79,6.79,0,0,0,0,8.37A4.75,4.75,0,0,0,186.24,130.32Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
@@ -0,0 +1,40 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="design" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 36.2 51.3" style="enable-background:new 0 0 36.2 51.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#E44D26;}
|
||||
.st1{fill:#F16529;}
|
||||
.st2{fill:#EBEBEB;}
|
||||
.st3{fill:#FFFFFF;}
|
||||
.st4{fill:#264DE4;}
|
||||
.st5{fill:#2965F1;}
|
||||
.st6{fill:#DAB92D;}
|
||||
.st7{fill:#FFD839;}
|
||||
.st8{fill:#53C1DE;}
|
||||
.st9{fill:#002A41;}
|
||||
.st10{fill:#0071B5;}
|
||||
.st11{fill:#DF4F4F;}
|
||||
.st12{fill:#26262C;}
|
||||
.st13{fill:#CCCCCC;}
|
||||
.st14{fill:#A6120D;}
|
||||
.st15{fill:#B3B3B3;}
|
||||
.st16{fill:#DD1B16;}
|
||||
.st17{fill:#F2F2F2;}
|
||||
</style>
|
||||
<g>
|
||||
<polygon class="st0" points="3.3,47.1 0,10 36.3,10 33,47.1 18.1,51.2 "/>
|
||||
<polygon class="st1" points="18.2,48.1 30.1,44.7 33,13.1 18.2,13.1 "/>
|
||||
<polygon class="st2" points="18.2,26.8 12.2,26.8 11.7,22.2 18.2,22.2 18.2,17.6 18.1,17.6 6.7,17.6 6.9,18.8 8,31.4 18.2,31.4
|
||||
"/>
|
||||
<polygon class="st2" points="18.2,38.7 18.1,38.7 13.1,37.3 12.8,33.6 10.3,33.6 8.2,33.6 8.8,40.8 18.1,43.4 18.2,43.4 "/>
|
||||
<path d="M3.4,0h2.3v2.3h2.1V0h2.3v6.9H7.8V4.6H5.7v2.3H3.4V0L3.4,0z"/>
|
||||
<path d="M13.2,2.3h-2V0h6.3v2.3h-2v4.6h-2.3V2.3L13.2,2.3z"/>
|
||||
<path d="M18.5,0h2.4l1.5,2.4L23.9,0h2.4v6.9H24V3.5l-1.5,2.4h-0.1l-1.6-2.4v3.4h-2.2L18.5,0L18.5,0z"/>
|
||||
<path d="M27.4,0h2.3v4.6H33v2.3h-5.6V0z"/>
|
||||
<polygon class="st3" points="18.1,26.8 18.1,31.4 23.7,31.4 23.2,37.3 18.1,38.7 18.1,43.4 27.4,40.8 27.5,40.1 28.6,28.1
|
||||
28.7,26.8 27.5,26.8 "/>
|
||||
<polygon class="st3" points="18.1,17.6 18.1,20.5 18.1,22.1 18.1,22.2 29.1,22.2 29.1,22.2 29.1,22.2 29.2,21.2 29.4,18.8
|
||||
29.5,17.6 "/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg version="1.1" viewBox="0 0 119 59" xmlns="http://www.w3.org/2000/svg"><path d="m1.2188 58h9.7266v-41.406h-9.7266v41.406zm4.8438-46.836c3.0469 0 5.4297-2.3438 5.4297-5.2734 0-2.9688-2.3828-5.3125-5.4297-5.3125-3.0078 0-5.3906 2.3438-5.3906 5.3125 0 2.9297 2.3828 5.2734 5.3906 5.2734zm37.267-10.469c-16.445 0-26.758 11.211-26.758 29.141s10.312 29.102 26.758 29.102c16.406 0 26.719-11.172 26.719-29.102s-10.312-29.141-26.719-29.141zm0 8.5938c10.039 0 16.445 7.9688 16.445 20.547 0 12.539-6.4062 20.508-16.445 20.508-10.078 0-16.445-7.9688-16.445-20.508 0-12.578 6.3672-20.547 16.445-20.547zm30.822 32.852c0.42969 10.391 8.9453 16.797 21.914 16.797 13.633 0 22.227-6.7188 22.227-17.422 0-8.3984-4.8438-13.125-16.289-15.742l-6.4844-1.4844c-6.9141-1.6406-9.7656-3.8281-9.7656-7.5781 0-4.6875 4.2969-7.8125 10.664-7.8125 6.4453 0 10.859 3.1641 11.328 8.4375h9.6094c-0.23438-9.9219-8.4375-16.641-20.859-16.641-12.266 0-20.977 6.7578-20.977 16.758 0 8.0469 4.9219 13.047 15.312 15.43l7.3047 1.7188c7.1094 1.6797 10 4.0234 10 8.0859 0 4.6875-4.7266 8.0469-11.523 8.0469-6.875 0-12.07-3.3984-12.695-8.5938h-9.7656z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 86.6 45.81"><defs><style>.cls-1{fill:#f8971d;}.cls-2{fill:#58839f;}</style></defs><title>java-logo</title><path class="cls-1" d="M198.08,189.45c2.21,2.54-.58,4.83-.58,4.83s5.61-2.9,3-6.52c-2.4-3.38-4.25-5.06,5.74-10.86,0,0-15.68,3.92-8.19,12.55" transform="translate(-179.05 -167.55)"/><path class="cls-1" d="M200.53,167.55s4.76,4.76-4.51,12.08c-7.44,5.87-1.7,9.22,0,13-4.34-3.92-7.52-7.36-5.39-10.58,3.14-4.71,11.83-7,9.91-14.55" transform="translate(-179.05 -167.55)"/><path class="cls-2" d="M224.06,206.11q0,4.82-3.25,7.24L219.25,212a6.41,6.41,0,0,0,1.39-2.9,16.59,16.59,0,0,0,.24-3.19V188.23h3.19Z" transform="translate(-179.05 -167.55)"/><path class="cls-2" d="M238.4,208.18H236l-.24-1.6a6.89,6.89,0,0,1-4.55,1.89q-4.43,0-4.43-4.08a4.23,4.23,0,0,1,1.8-3.64,9.77,9.77,0,0,1,5.7-1.39h1.07V198q0-2.63-3-2.63a12.6,12.6,0,0,0-4.32.86l-.44-1.86a13.71,13.71,0,0,1,5.59-1.21q5.23,0,5.23,4.46Zm-3-3.4v-3.49h-1.27q-4.28,0-4.29,2.66a2,2,0,0,0,2.28,2.31,5.14,5.14,0,0,0,3.28-1.48" transform="translate(-179.05 -167.55)"/><path class="cls-2" d="M253.18,193.46a58,58,0,0,1-4.55,14.72h-3.75l-4.52-14.72h3.28l2.81,9,.62,2.72A55.13,55.13,0,0,0,250,193.46Z" transform="translate(-179.05 -167.55)"/><path class="cls-2" d="M265.65,208.18h-2.36l-.24-1.6a6.91,6.91,0,0,1-4.55,1.89q-4.43,0-4.43-4.08a4.23,4.23,0,0,1,1.8-3.64,9.78,9.78,0,0,1,5.71-1.39h1.06V198q0-2.63-3-2.63a12.6,12.6,0,0,0-4.31.86l-.44-1.86a13.72,13.72,0,0,1,5.59-1.21q5.23,0,5.23,4.46Zm-3-3.4v-3.49h-1.27q-4.29,0-4.29,2.66a2,2,0,0,0,2.28,2.31,5.13,5.13,0,0,0,3.28-1.48" transform="translate(-179.05 -167.55)"/><path class="cls-2" d="M189.93,203s-1.75,1,1.25,1.36a26.24,26.24,0,0,0,9.49-.4,16.38,16.38,0,0,0,2.52,1.23c-9,3.85-20.3-.22-13.25-2.19" transform="translate(-179.05 -167.55)"/><path class="cls-2" d="M188.84,198s-2,1.45,1,1.76a37.09,37.09,0,0,0,12.24-.59,5.42,5.42,0,0,0,1.89,1.15c-10.84,3.17-22.92.25-15.16-2.32" transform="translate(-179.05 -167.55)"/><path class="cls-2" d="M209.94,206.68s1.3,1.07-1.43,1.89c-5.18,1.57-21.54,2-26.09.06-1.64-.71,1.43-1.7,2.39-1.9a6.42,6.42,0,0,1,1.58-.18c-1.82-1.28-11.75,2.52-5,3.6,18.28,3,33.33-1.33,28.59-3.47" transform="translate(-179.05 -167.55)"/><path class="cls-2" d="M190.77,192.76s-8.33,2-2.95,2.7a62.78,62.78,0,0,0,11-.12c3.45-.29,6.9-.91,6.9-.91a14.58,14.58,0,0,0-2.09,1.12c-8.45,2.23-24.79,1.19-20.08-1.08a15.75,15.75,0,0,1,7.21-1.7" transform="translate(-179.05 -167.55)"/><path class="cls-2" d="M205.71,201.11c8.59-4.46,4.62-8.76,1.85-8.18a6.61,6.61,0,0,0-1,.26,1.57,1.57,0,0,1,.74-.57c5.49-1.93,9.7,5.69-1.77,8.71a.77.77,0,0,0,.17-.23" transform="translate(-179.05 -167.55)"/><path class="cls-2" d="M191.62,213.21c8.25.53,20.92-.29,21.22-4.2,0,0-.58,1.48-6.82,2.66a67.8,67.8,0,0,1-20.88.32s1.05.87,6.48,1.22" transform="translate(-179.05 -167.55)"/></svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
@@ -0,0 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 630 630">
|
||||
<rect width="630" height="630" fill="#f7df1e"/>
|
||||
<path d="m423.2 492.19c12.69 20.72 29.2 35.95 58.4 35.95 24.53 0 40.2-12.26 40.2-29.2 0-20.3-16.1-27.49-43.1-39.3l-14.8-6.35c-42.72-18.2-71.1-41-71.1-89.2 0-44.4 33.83-78.2 86.7-78.2 37.64 0 64.7 13.1 84.2 47.4l-46.1 29.6c-10.15-18.2-21.1-25.37-38.1-25.37-17.34 0-28.33 11-28.33 25.37 0 17.76 11 24.95 36.4 35.95l14.8 6.34c50.3 21.57 78.7 43.56 78.7 93 0 53.3-41.87 82.5-98.1 82.5-54.98 0-90.5-26.2-107.88-60.54zm-209.13 5.13c9.3 16.5 17.76 30.45 38.1 30.45 19.45 0 31.72-7.61 31.72-37.2v-201.3h59.2v202.1c0 61.3-35.94 89.2-88.4 89.2-47.4 0-74.85-24.53-88.81-54.075z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 687 B |
|
After Width: | Height: | Size: 9.0 KiB |
@@ -0,0 +1,264 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 26.4.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 151.9 145.1" style="enable-background:new 0 0 151.9 145.1;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:url(#SVGID_00000059302456480632003870000017008244541295657387_);}
|
||||
.st2{fill:#14559A;}
|
||||
.st3{fill:url(#SVGID_00000057860112713762211430000009666370418607455403_);}
|
||||
.st4{fill:#3092C4;}
|
||||
.st5{fill:#1969BC;}
|
||||
.st6{fill:url(#SVGID_00000176012874085346543420000000753284488623631260_);}
|
||||
.st7{fill:url(#SVGID_00000101817223027399606550000006001889489707201721_);}
|
||||
.st8{fill:url(#SVGID_00000052082131006525332200000003654733965432349081_);}
|
||||
.st9{fill:#2B74B1;}
|
||||
.st10{fill:#125A9E;}
|
||||
.st11{fill:url(#SVGID_00000102528362578201398230000016066556897262080683_);}
|
||||
.st12{fill:url(#SVGID_00000112609983223573157030000010645957870344126621_);}
|
||||
.st13{fill:#0D82CA;}
|
||||
.st14{fill:url(#SVGID_00000098191284798405657460000003443162214168698272_);}
|
||||
.st15{fill:#127BCA;}
|
||||
.st16{fill:url(#SVGID_00000053515682539378347720000011078974322484178103_);}
|
||||
.st17{fill:url(#SVGID_00000082365908623689058850000017567794019944548240_);}
|
||||
.st18{fill:#05A1E6;}
|
||||
.st19{fill:url(#SVGID_00000182519962324476438000000013280478019641010307_);}
|
||||
.st20{fill:url(#SVGID_00000077290323478427776110000011786968339761701266_);}
|
||||
.st21{fill:url(#SVGID_00000037666176022830465210000001087861267539393435_);}
|
||||
.st22{fill:#079AE1;}
|
||||
.st23{fill:#1E5CB3;}
|
||||
.st24{fill:#1D60B5;}
|
||||
.st25{fill:#175FAB;}
|
||||
.st26{fill:url(#SVGID_00000030481359536195483920000007048159942768688047_);}
|
||||
.st27{fill:#7DCBEC;}
|
||||
.st28{fill:#5EC5ED;}
|
||||
.st29{fill:url(#SVGID_00000140717069366133904670000007610724132605351051_);}
|
||||
.st30{fill:url(#SVGID_00000176011560227145954070000015191562949678652091_);}
|
||||
.st31{fill:url(#SVGID_00000171719803932576289880000009567830768292819386_);}
|
||||
</style>
|
||||
<g>
|
||||
<g transform="translate(26.734177, 116.658228)">
|
||||
<path d="M100.1-40.3c0-0.9-0.9-0.7-1.6-0.7v1.5C99.2-39.5,100.2-39.5,100.1-40.3L100.1-40.3z M101-37.2h-0.8
|
||||
c-0.3-0.7-0.7-2.1-1.7-1.9v1.9h-0.6v-4.4c2-0.5,4.4,1.2,1.7,2.4v0C100.2-39.1,100.7-37.6,101-37.2L101-37.2z M102.4-39.3
|
||||
c0.1-4-6.3-4-6.1,0C96.1-35.3,102.5-35.3,102.4-39.3L102.4-39.3z M102.8-39.3c0.1,4.5-7.1,4.5-7,0
|
||||
C95.7-43.8,102.9-43.8,102.8-39.3L102.8-39.3z"/>
|
||||
<path d="M8.4-27H6.3c0-2.8-0.1-13.1,0.2-15.8h0C6.7-42.7-0.1-27.7-0.4-27h-1C-1.8-28-8.5-42.3-8.2-42.8h0c0.2,2,0.1,13.4,0.1,15.8
|
||||
h-2.1v-18.2h2.8c0.6,1.5,6.1,13.6,6.4,14.9h0.1c0.4-1.3,5.9-13.3,6.6-14.9h2.7L8.4-27L8.4-27z"/>
|
||||
<path d="M15-27h-2.1v-13H15V-27L15-27z M15.3-44.7c0,1.8-2.8,1.8-2.7,0C12.6-46.5,15.4-46.5,15.3-44.7L15.3-44.7z"/>
|
||||
<path d="M28-27.6c-12.8,5.9-12.8-17.2,0-12.1v2.1c-10-5.8-10.1,14.1,0,8V-27.6L28-27.6z"/>
|
||||
<path d="M37.9-37.9c-6.1-2.6-4.5,7.6-4.7,10.9h-2.1v-13h2.1v2.7h0.1c0.5-2.1,2.7-3.5,4.7-2.7C37.9-40.1,37.9-37.9,37.9-37.9z"/>
|
||||
<path d="M49.6-33.5c0.7-6.8-9.1-6.6-8.5,0.1C40.5-27,50.3-26.9,49.6-33.5 M51.7-33.6c0.7,8.9-13.4,9.1-12.8,0.2
|
||||
C38.1-42.4,52.4-42.8,51.7-33.6"/>
|
||||
<path d="M62-30.5c0,3.8-5.3,4.6-8,3v-2.2c3.5,3.3,9.3-0.7,3.2-3c-6.9-2.6-1.2-10,4.2-7v2.1c-1.8-1.8-6.9-0.8-4.7,2.2
|
||||
C58.4-34.1,62.3-33.4,62-30.5"/>
|
||||
<path d="M74.8-33.5c0.7-6.8-9.2-6.6-8.5,0.1C65.7-27,75.5-26.9,74.8-33.5 M76.9-33.6c0.7,8.9-13.4,9.1-12.8,0.2
|
||||
C63.4-42.4,77.6-42.8,76.9-33.6"/>
|
||||
<path d="M86.1-44.5c-3.1-1.6-3.9,1.9-3.6,4.4h3.1v1.8h-3.1V-27h-2.1v-11.3h-2.2v-1.8h2.2c-0.7-3.7,1.6-7.7,5.7-6.3V-44.5
|
||||
L86.1-44.5z"/>
|
||||
<path d="M94.3-27.2c-7,3.1-5.2-7.4-5.4-11.1h-2.2v-1.8H89v-3.2c0.7-0.2,1.4-0.4,2.1-0.7v3.9h3.3v1.8h-3.3
|
||||
c0.5,2.2-1.8,12.1,3.3,9.3V-27.2L94.3-27.2z"/>
|
||||
</g>
|
||||
<g transform="translate(0.000000, 160.405063)">
|
||||
<path d="M8.3-19.9c0.1,4.9-7.6,4.9-7.4,0C0.8-24.9,8.4-24.8,8.3-19.9"/>
|
||||
<path d="M55-16.9h-6.8C47.1-19.2,22.1-56.3,22-58.1h-0.2c0.6,3.4,0.1,36.8,0.3,41.1h-5.6v-47.8h7.3C24.5-63.6,50-23.9,49.7-24h0.1
|
||||
c-0.7-3.9-0.2-35.9-0.3-40.7H55L55-16.9L55-16.9z"/>
|
||||
<path d="M91-16.9H65.6v-47.8h24.3v5.1H71.2v15.9h17.3v5.1H71.2V-22H91V-16.9L91-16.9z"/>
|
||||
<path d="M129.4-59.7h-13.8v42.8H110v-42.8H96.2v-5.1h33.2V-59.7L129.4-59.7z"/>
|
||||
</g>
|
||||
<g transform="translate(0.810127, 0.000000)">
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-170.5703" y1="198.0918" x2="-170.5703" y2="197.2116" gradientTransform="matrix(45.6076 0 0 -81.335 7844.9673 16113.502)">
|
||||
<stop offset="0" style="stop-color:#0994DC"/>
|
||||
<stop offset="0.35" style="stop-color:#66CEF5"/>
|
||||
<stop offset="0.35" style="stop-color:#66CEF5"/>
|
||||
<stop offset="0.8462" style="stop-color:#127BCA"/>
|
||||
<stop offset="0.8462" style="stop-color:#127BCA"/>
|
||||
<stop offset="1" style="stop-color:#127BCA"/>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M52.3,13c5.4,16.5,7.5,46,23.3,46c0.7,0,4.3-0.2,3.2-0.5c-14-3.8-15.7-32.6-24.4-47.5l0,0
|
||||
C53.7,11.7,53,12.4,52.3,13"/>
|
||||
|
||||
<linearGradient id="SVGID_00000173125268371761247970000014575451812156304280_" gradientUnits="userSpaceOnUse" x1="-170.7416" y1="198.0925" x2="-170.7416" y2="197.2123" gradientTransform="matrix(47.8692 0 0 -83.4083 8241.6621 16522.4473)">
|
||||
<stop offset="0" style="stop-color:#0E76BC"/>
|
||||
<stop offset="0.36" style="stop-color:#36AEE8"/>
|
||||
<stop offset="0.36" style="stop-color:#36AEE8"/>
|
||||
<stop offset="0.8462" style="stop-color:#00ADEF"/>
|
||||
<stop offset="0.8462" style="stop-color:#00ADEF"/>
|
||||
<stop offset="1" style="stop-color:#00ADEF"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000173125268371761247970000014575451812156304280_);" d="M54.4,11.1c8.8,15.1,10.5,44.3,24.9,47.6
|
||||
c0.7-0.2,4-0.7,3-1.1C69.7,50.9,66.1,23,56.2,9.5l0,0C55.6,10,55,10.5,54.4,11.1"/>
|
||||
<path class="st2" d="M67,2.1c-4.8,0.1-8.9,1.6-13.4,4.4c0.9,0.9,1.7,1.9,2.5,3c4.5-3.7,8.5-6,13.7-7.1C69,2.2,68,2.1,67,2.1"/>
|
||||
|
||||
<linearGradient id="SVGID_00000004538604524338058960000014743570050880347015_" gradientUnits="userSpaceOnUse" x1="-170.8253" y1="197.2691" x2="-170.8253" y2="197.9606" gradientTransform="matrix(45.4522 0 0 -84.5 7847.6553 16726.668)">
|
||||
<stop offset="0" style="stop-color:#1C63B7"/>
|
||||
<stop offset="0.5" style="stop-color:#33BDF2"/>
|
||||
<stop offset="1" style="stop-color:#33BDF2;stop-opacity:0.4196"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000004538604524338058960000014743570050880347015_);" d="M92.7,52c1.3-1,2.6-2.2,4-3.5
|
||||
c-6-17.6-7.4-50.1-26.8-46.1C84.4,6,86.2,37.6,92.7,52"/>
|
||||
<path class="st4" d="M69.9,2.4C69,2.2,68,2.1,67,2.1l6.3,0C72.1,2.1,71,2.2,69.9,2.4"/>
|
||||
<path class="st5" d="M92.4,55.5c-0.6-0.6-1.2-1.2-1.8-1.9c-2.7,1.9-5.3,3.3-8,4.3c3.7,1.9,9.5,1.5,12.9,0
|
||||
C94.4,57.2,93.4,56.4,92.4,55.5"/>
|
||||
|
||||
<linearGradient id="SVGID_00000158713466558478728820000013318836483891873664_" gradientUnits="userSpaceOnUse" x1="-170.7411" y1="198.0562" x2="-170.7411" y2="197.176" gradientTransform="matrix(45.0105 0 0 -86.5982 7764.5757 17143.7734)">
|
||||
<stop offset="0" style="stop-color:#166AB8"/>
|
||||
<stop offset="0.4" style="stop-color:#36AEE8"/>
|
||||
<stop offset="0.4" style="stop-color:#36AEE8"/>
|
||||
<stop offset="0.8462" style="stop-color:#0798DD"/>
|
||||
<stop offset="0.8462" style="stop-color:#0798DD"/>
|
||||
<stop offset="1" style="stop-color:#0798DD"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000158713466558478728820000013318836483891873664_);" d="M66.1,3.5c13,6.8,14.1,37.6,24.5,50.1
|
||||
l0,0c0.7-0.5,1.4-1,2.1-1.6l0,0C86.2,37.6,84.4,6,69.9,2.4C68.6,2.7,67.4,3,66.1,3.5"/>
|
||||
|
||||
<linearGradient id="SVGID_00000119811849329081467830000010123517057052526996_" gradientUnits="userSpaceOnUse" x1="-171.2693" y1="198.0992" x2="-171.2693" y2="197.2191" gradientTransform="matrix(58.3509 0 0 -92.0822 10067.1348 18234.2754)">
|
||||
<stop offset="0" style="stop-color:#124379"/>
|
||||
<stop offset="0.39" style="stop-color:#1487CB"/>
|
||||
<stop offset="0.39" style="stop-color:#1487CB"/>
|
||||
<stop offset="0.7802" style="stop-color:#165197"/>
|
||||
<stop offset="0.7802" style="stop-color:#165197"/>
|
||||
<stop offset="1" style="stop-color:#165197"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000119811849329081467830000010123517057052526996_);" d="M56.2,9.5c10,13.6,13.5,42,26.4,48.3
|
||||
c2.7-0.9,5.3-2.4,8-4.3l0,0C80.3,41,79.1,10.3,66.1,3.5C62.8,4.7,59.5,6.7,56.2,9.5"/>
|
||||
|
||||
<linearGradient id="SVGID_00000106121961670187284750000015141396639521255828_" gradientUnits="userSpaceOnUse" x1="-166.405" y1="196.7209" x2="-165.8148" y2="196.7209" gradientTransform="matrix(19.4176 0 0 -30.9219 3272.0493 6100.7168)">
|
||||
<stop offset="0" style="stop-color:#33BDF2;stop-opacity:0.698"/>
|
||||
<stop offset="1" style="stop-color:#1DACD8"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000106121961670187284750000015141396639521255828_);" d="M45.9,12.6c-1.6,3.5-3.2,8.2-5.1,14.2
|
||||
c3.8-5.4,7.7-10.1,11.5-13.8c-0.5-1.6-1.1-3.1-1.7-4.4C49.1,9.8,47.5,11.1,45.9,12.6"/>
|
||||
<path class="st9" d="M52,7.6c-0.5,0.3-0.9,0.7-1.4,1c0.6,1.3,1.2,2.8,1.7,4.4c0.7-0.7,1.4-1.3,2.1-2C53.6,9.8,52.9,8.6,52,7.6"/>
|
||||
<path class="st10" d="M53.7,6.5c-0.5,0.3-1.1,0.7-1.6,1.1c0.8,1,1.6,2.2,2.4,3.5c0.6-0.5,1.2-1.1,1.8-1.6
|
||||
C55.4,8.4,54.5,7.4,53.7,6.5"/>
|
||||
|
||||
<linearGradient id="SVGID_00000144337766214599242080000008473152638632246426_" gradientUnits="userSpaceOnUse" x1="-172.2891" y1="197.4454" x2="-172.2891" y2="198.0198" gradientTransform="matrix(79.1425 0 0 -98.6787 13762.3086 19539.3984)">
|
||||
<stop offset="0" style="stop-color:#136AB4"/>
|
||||
<stop offset="0.6" style="stop-color:#59CAF5;stop-opacity:0.549"/>
|
||||
<stop offset="1" style="stop-color:#59CAF5;stop-opacity:0.2353"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000144337766214599242080000008473152638632246426_);" d="M142.3,0.8
|
||||
c-8.5,30.1-22.4,52.6-38.7,57.9c14.7,1.8,25.3-20.9,46.7-57.9L142.3,0.8L142.3,0.8z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000125589505272441149000000005348225487583451008_" gradientUnits="userSpaceOnUse" x1="-171.4609" y1="197.7181" x2="-170.8707" y2="197.7181" gradientTransform="matrix(72.0226 0 0 -99.1613 12349.2568 19637.3359)">
|
||||
<stop offset="0" style="stop-color:#05A1E6;stop-opacity:0.2471"/>
|
||||
<stop offset="1" style="stop-color:#05A1E6"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000125589505272441149000000005348225487583451008_);" d="M38.2,3.2C38.2,3.2,38.3,3.2,38.2,3.2
|
||||
c0.1-0.1,0.2-0.1,0.3-0.1c1.3-0.5,2.8-0.8,4.2-1C27.5,1.2,9.2,27,0.2,60.6h1.6C13.7,38.8,20.1,9.1,38.2,3.2"/>
|
||||
<path class="st13" d="M45.9,12.6c1.6-1.5,3.1-2.8,4.7-4c-0.4-0.8-0.7-1.5-1.1-2.2C48.3,8,47.1,10,45.9,12.6"/>
|
||||
<path class="st13" d="M47.1,3.4c0.9,0.8,1.7,1.8,2.4,3c0.2-0.3,0.5-0.5,0.7-0.8c-1-1-2.1-1.7-3.3-2.3C47,3.4,47,3.4,47.1,3.4"/>
|
||||
|
||||
<linearGradient id="SVGID_00000007396983304778192410000010706861794431613592_" gradientUnits="userSpaceOnUse" x1="-170.1721" y1="197.1132" x2="-170.1721" y2="197.9" gradientTransform="matrix(49.0511 0 0 -73.8222 8370.709 14608.6895)">
|
||||
<stop offset="0" style="stop-color:#318ED5"/>
|
||||
<stop offset="1" style="stop-color:#38A7E4"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000007396983304778192410000010706861794431613592_);" d="M9.3,46.8C21.4,22.7,28.9,6.5,37.9,3.4
|
||||
C27.2,7.8,15.2,23.6,9.3,46.8"/>
|
||||
<path class="st15" d="M50.2,5.7c-0.2,0.2-0.5,0.5-0.7,0.8c0.4,0.7,0.8,1.4,1.1,2.2c0.5-0.4,0.9-0.7,1.4-1
|
||||
C51.4,6.9,50.8,6.2,50.2,5.7"/>
|
||||
|
||||
<linearGradient id="SVGID_00000115512986498237533930000009157112595420502423_" gradientUnits="userSpaceOnUse" x1="-169.9831" y1="197.3948" x2="-169.9831" y2="198.3863" gradientTransform="matrix(45.6036 0 0 -57.1283 7779.2456 11334.4414)">
|
||||
<stop offset="0" style="stop-color:#05A1E6"/>
|
||||
<stop offset="1" style="stop-color:#05A1E6;stop-opacity:0.549"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000115512986498237533930000009157112595420502423_);" d="M15,60.5c-0.3,0-0.7,0.1-1,0.1
|
||||
C35,61,36.1,40.1,40.9,26.9c-5.3,7.5-10.6,16.4-16,26.4C22.3,58,18.3,60,15,60.5"/>
|
||||
|
||||
<linearGradient id="SVGID_00000043452989435553110680000015682052493559772605_" gradientUnits="userSpaceOnUse" x1="-170.4685" y1="197.3981" x2="-170.4685" y2="197.9883" gradientTransform="matrix(52.5191 0 0 -81.0936 8983.3096 16068.2031)">
|
||||
<stop offset="0" style="stop-color:#1959A6"/>
|
||||
<stop offset="0.5" style="stop-color:#05A1E6"/>
|
||||
<stop offset="0.5" style="stop-color:#05A1E6"/>
|
||||
<stop offset="0.9176" style="stop-color:#7EC5EA"/>
|
||||
<stop offset="1" style="stop-color:#7EC5EA"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000043452989435553110680000015682052493559772605_);" d="M15,60.5L15,60.5
|
||||
c3.4-0.4,7.3-2.4,9.9-7.3l0,0c5.4-10,10.7-18.9,16-26.4l0,0c1.9-6.1,3.5-10.7,5.1-14.2l0,0C35.4,22.7,24.8,39.4,15,60.5"/>
|
||||
<path class="st18" d="M9.3,46.8C7,51.1,4.6,55.7,1.8,60.6h4.8C7.3,55.8,8.2,51.2,9.3,46.8"/>
|
||||
|
||||
<linearGradient id="SVGID_00000098902281163352826240000011952127399114117536_" gradientUnits="userSpaceOnUse" x1="-171.191" y1="197.4552" x2="-171.3169" y2="197.9794" gradientTransform="matrix(72.6768 0 0 -99.0047 12473.9092 19606.4199)">
|
||||
<stop offset="0" style="stop-color:#165096"/>
|
||||
<stop offset="1" style="stop-color:#0D82CA"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000098902281163352826240000011952127399114117536_);" d="M42.3,2.2c0,0-0.1,0-0.1,0
|
||||
c-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0c-0.1,0-0.3,0-0.4,0.1h0c-0.1,0-0.1,0-0.2,0
|
||||
c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0c0,0-0.1,0-0.1,0c-0.2,0.1-0.4,0.1-0.7,0.2c0,0,0,0-0.1,0c-0.1,0-0.1,0-0.2,0.1l0,0
|
||||
c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.2,0.1c0,0,0,0-0.1,0C39.1,2.9,39,3,38.8,3l0,0l0,0c-0.1,0-0.1,0-0.2,0.1l0,0c0,0-0.1,0-0.1,0
|
||||
c-0.1,0-0.1,0-0.2,0.1l0,0c0,0,0,0-0.1,0C27.7,7.4,21.8,22.7,9.3,46.8l0,0c-1.1,4.3-2,9-2.6,13.8l0,0c2.1,0,2.9,0,5.3,0
|
||||
c0.7,0,1.4,0,2.1,0c0.1,0,0.3,0,0.5,0h0c0.1,0,0.1,0,0.2,0h0c0.1,0,0.1,0,0.2,0c9.8-21,20.4-37.8,31-47.9l0,0
|
||||
c1.2-2.6,2.3-4.6,3.6-6.2l0,0c-0.7-1.2-1.5-2.3-2.4-3c0,0,0,0,0,0c-0.1,0-0.1,0-0.1-0.1c-0.1,0-0.1,0-0.1-0.1c0,0-0.1,0-0.1-0.1
|
||||
c-0.1,0-0.1,0-0.2-0.1c0,0-0.1,0-0.1-0.1C46.2,3.1,46.1,3,46,3c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.2-0.1c0,0-0.1,0-0.1,0
|
||||
c-0.1,0-0.2-0.1-0.3-0.1h0c-0.1,0-0.2-0.1-0.3-0.1l0,0c0,0,0,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1c0,0,0,0-0.1,0
|
||||
c-0.2-0.1-0.5-0.1-0.7-0.2c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.3,0l0,0c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.4,0H43c-0.1,0-0.2,0-0.3,0
|
||||
C42.6,2.2,42.4,2.2,42.3,2.2"/>
|
||||
|
||||
<linearGradient id="SVGID_00000169542190417823527380000002390684490232291765_" gradientUnits="userSpaceOnUse" x1="-170.5614" y1="197.1791" x2="-170.5614" y2="197.653" gradientTransform="matrix(32.7663 0 0 -57.2261 5705.8467 11311.8828)">
|
||||
<stop offset="0" style="stop-color:#05A1E6"/>
|
||||
<stop offset="0.8736" style="stop-color:#0495D6"/>
|
||||
<stop offset="1" style="stop-color:#0495D6"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000169542190417823527380000002390684490232291765_);" d="M113.6,16.5c-2.4,7.7-4.4,14.1-6.1,19.3
|
||||
l0,0c6.6-9.1,13.1-20.6,19.3-33.8C119.6,4.4,115.8,9.6,113.6,16.5"/>
|
||||
|
||||
<linearGradient id="SVGID_00000150099572958927410030000011520413860380895394_" gradientUnits="userSpaceOnUse" x1="-171.8345" y1="198.0137" x2="-172.0175" y2="197.3645" gradientTransform="matrix(60.2691 0 0 -96.3231 10486.2461 19071.75)">
|
||||
<stop offset="0" style="stop-color:#38A7E4;stop-opacity:0.3294"/>
|
||||
<stop offset="0.9615" style="stop-color:#0E88D3"/>
|
||||
<stop offset="0.9615" style="stop-color:#0E88D3"/>
|
||||
<stop offset="1" style="stop-color:#0E88D3"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000150099572958927410030000011520413860380895394_);" d="M107.7,57.2c-0.3,0.2-0.7,0.3-1,0.5
|
||||
c12.9-5.7,28.2-28.5,35.6-56.8h-1.5C123.9,31,118.5,51.2,107.7,57.2"/>
|
||||
<path class="st22" d="M99.3,54.7c2.8-3.4,5.1-9.2,8.2-18.8c-3.6,4.9-7.2,9.2-10.8,12.6c0,0,0,0,0,0C97.5,50.9,98.3,53,99.3,54.7"
|
||||
/>
|
||||
<path class="st5" d="M99.3,54.7c-1.2,1.4-2.3,2.4-3.8,3.1c1.2,0.6,2.5,1.1,3.9,1.2c1.4,0.2,2.8,0.1,4.1-0.2
|
||||
C101.9,58.2,100.5,56.7,99.3,54.7"/>
|
||||
<path class="st23" d="M75.6,59.1c2.4,0,4.7-0.5,7-1.3c1.7,0.8,3.6,1.3,5.5,1.3H75.6L75.6,59.1z"/>
|
||||
<path class="st23" d="M88.2,59.1c3,0,5.3-0.4,7.3-1.3c1.2,0.6,2.5,1.1,3.9,1.2c0.4,0,0.9,0.1,1.4,0.1L88.2,59.1L88.2,59.1z"/>
|
||||
<path class="st24" d="M100.8,59.1c0.9,0,1.9-0.1,2.8-0.3c0.6,0.2,1.2,0.3,1.8,0.3L100.8,59.1L100.8,59.1z"/>
|
||||
<path class="st25" d="M96.7,48.5L96.7,48.5c-2,1.9-3.9,3.5-6,5c1.4,1.7,3,3.2,4.9,4.2c1.5-0.7,2.7-1.7,3.8-3.1
|
||||
C98.3,53,97.5,50.9,96.7,48.5"/>
|
||||
|
||||
<linearGradient id="SVGID_00000116207102816380626050000016414033488383564222_" gradientUnits="userSpaceOnUse" x1="-172.0857" y1="198.0008" x2="-172.0857" y2="197.3978" gradientTransform="matrix(70.2816 0 0 -98.1105 12214.5 19426.5996)">
|
||||
<stop offset="0" style="stop-color:#168CD4"/>
|
||||
<stop offset="0.5" style="stop-color:#1C87CC"/>
|
||||
<stop offset="1" style="stop-color:#154B8D"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000116207102816380626050000016414033488383564222_);" d="M136.1,0.8c-0.5,0-6.7,0-6.9,0h-0.6
|
||||
c-0.4,0-0.8,0-1.2,0.1l0,0c-0.2,0.4-0.4,0.8-0.6,1.2l0,0c-6.2,13.2-12.7,24.7-19.3,33.8l0,0c-3.1,9.6-5.4,15.4-8.2,18.8l0,0
|
||||
c1.2,2,2.6,3.5,4.2,4.1c0,0,0.1,0,0.1,0h0c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2-0.1c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2,0
|
||||
c0,0,0.1,0,0.1,0c0.1,0,0.2-0.1,0.3-0.1c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2-0.1c0.1,0,0.1,0,0.2-0.1c0,0,0.1,0,0.1,0
|
||||
c0.1,0,0.2-0.1,0.3-0.1c0,0,0.1,0,0.1,0c0.1,0,0.1,0,0.2-0.1c0,0,0.1,0,0.1,0c0.2-0.1,0.5-0.2,0.7-0.3h0c0.3-0.1,0.7-0.3,1-0.5
|
||||
c10.8-6,16.2-26.2,33.1-56.4L136.1,0.8L136.1,0.8z"/>
|
||||
<path class="st27" d="M42.7,2.2C42.7,2.2,42.8,2.2,42.7,2.2c0.3,0,0.5,0,0.8,0.1c0.6,0.1,1.3,0.2,1.8,0.5c1.8,0.6,3.5,1.6,4.9,3
|
||||
c0.4-0.4,0.8-0.8,1.2-1.1C48.9,2.9,45.9,1.9,42.7,2.2"/>
|
||||
<path class="st28" d="M50.2,5.7c0.6,0.6,1.2,1.2,1.8,1.9c0.5-0.4,1.1-0.7,1.6-1.1c-0.7-0.7-1.5-1.4-2.3-1.9
|
||||
C51,4.9,50.6,5.3,50.2,5.7"/>
|
||||
|
||||
<linearGradient id="SVGID_00000173155382388588613710000015713513358138151355_" gradientUnits="userSpaceOnUse" x1="-169.315" y1="209.0074" x2="-168.8952" y2="210.3375" gradientTransform="matrix(32.4594 0 0 4.2491 5540.4736 -888.6616)">
|
||||
<stop offset="0" style="stop-color:#97D6EE"/>
|
||||
<stop offset="0.7033" style="stop-color:#55C1EA"/>
|
||||
<stop offset="1" style="stop-color:#55C1EA"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000173155382388588613710000015713513358138151355_);" d="M42.7,2.2c3.2-0.3,6.2,0.7,8.7,2.4
|
||||
c2.4-1.9,5.2-2.5,9.2-2.5H41.4C41.8,2.1,42.3,2.1,42.7,2.2"/>
|
||||
|
||||
<linearGradient id="SVGID_00000050635620621344557930000014375579789803338143_" gradientUnits="userSpaceOnUse" x1="-168.6284" y1="204.9539" x2="-168.222" y2="204.3022" gradientTransform="matrix(26.4722 0 0 7.484 4516.4492 -1527.6581)">
|
||||
<stop offset="0" style="stop-color:#7ACCEC"/>
|
||||
<stop offset="1" style="stop-color:#3FB7ED"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000050635620621344557930000014375579789803338143_);" d="M60.6,2.1c-4,0-6.8,0.6-9.2,2.5
|
||||
c0.8,0.6,1.5,1.2,2.2,1.9c4.5-2.8,8.5-4.4,13.4-4.4H60.6L60.6,2.1z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000140719987860689957490000002283014958125541518_" gradientUnits="userSpaceOnUse" x1="-171.531" y1="197.8466" x2="-171.531" y2="197.129" gradientTransform="matrix(52.0449 0 0 -80.6355 9039.3623 15957.3945)">
|
||||
<stop offset="0" style="stop-color:#1DA7E7"/>
|
||||
<stop offset="1" style="stop-color:#37ABE7;stop-opacity:0"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000140719987860689957490000002283014958125541518_);" d="M107.5,35.9c4.2-9.9,5.2-30.1,19.3-33.8
|
||||
c0.2-0.4,0.4-0.8,0.6-1.2c-11.8,0.7-17.3,6.7-20.1,15.6c-4.9,15.5-7.8,25.6-10.6,32C100.3,45,103.9,40.8,107.5,35.9"/>
|
||||
<path d="M124.8,54.9h-1.3v4.2h-0.5v-4.2h-1.3v-0.5h3.2V54.9L124.8,54.9z"/>
|
||||
<path d="M130.3,59.1h-0.5c0-0.7,0-3.3,0-4l0,0c0.1,0.1-1.7,3.8-1.7,4h-0.3c-0.1-0.3-1.8-3.9-1.7-4h0c0.1,0.5,0,3.4,0,4h-0.5v-4.7
|
||||
h0.7c0.2,0.4,1.6,3.5,1.6,3.8h0c0.1-0.4,1.5-3.4,1.7-3.8h0.7L130.3,59.1L130.3,59.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 19 KiB |
@@ -0,0 +1,179 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="design" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 63.3 51.1" style="enable-background:new 0 0 63.3 51.1;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#0089D6;}
|
||||
.st1{fill:url(#SVGID_1_);}
|
||||
.st2{fill:url(#SVGID_2_);}
|
||||
.st3{fill:url(#SVGID_3_);}
|
||||
.st4{fill:#231F1F;}
|
||||
.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#00678F;}
|
||||
.st6{fill-rule:evenodd;clip-rule:evenodd;fill:#E38D1A;}
|
||||
.st7{fill:#ED1C24;}
|
||||
.st8{fill:#336791;}
|
||||
.st9{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g>
|
||||
<g transform="matrix(.569 0 0 .569 199.451 -82.735)">
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-26184.7305" y1="-17568.6914" x2="-26163.459" y2="-17581.2617" gradientTransform="matrix(0.1187 0 0 0.1187 2807.8052 2286.6951)">
|
||||
<stop offset="0" style="stop-color:#909CA9"/>
|
||||
<stop offset="1" style="stop-color:#EDEDEE"/>
|
||||
</linearGradient>
|
||||
<path class="st1" d="M-275.2,174l-12.3,4l-10.7,4.7l-3,0.8c-0.8,0.7-1.6,1.5-2.4,2.2c-0.9,0.8-1.8,1.6-2.5,2.1
|
||||
c-0.8,0.6-1.9,1.7-2.4,2.4c-0.8,1.1-1.5,2.2-1.8,3c-0.5,1.6-0.3,3.1,0.7,4.6c1.3,1.9,3.8,3.7,6.7,5c1.5,0.7,4,1.5,5.9,2
|
||||
c3.1,0.8,9.2,1.7,12.6,1.8c0.7,0,1.6,0,1.6,0c0.1,0,0.6-1,1.2-2.3c2.1-4.2,3.5-8.1,4.4-11.5c0.5-2,0.9-4.8,1.1-8
|
||||
c0.1-0.9,0.1-3.9,0-4.9c-0.1-1.7-0.2-3-0.5-4.4c0-0.2,0-0.4,0-0.4c0,0,0.1-0.1,1.7-0.5L-275.2,174L-275.2,174L-275.2,174
|
||||
L-275.2,174z M-278,175.7c0.1,0,0.4,2.8,0.5,4.6c0,0.4,0,0.6,0,0.6c-0.1,0-1.6-0.9-2.6-1.5c-0.9-0.6-2.7-1.8-3-2
|
||||
c-0.1-0.1-0.1-0.1,0.7-0.3C-281.1,176.6-278.1,175.7-278,175.7z M-284.2,177.7c0.1,0,0.3,0.1,0.8,0.4c1.9,1.2,4.5,2.6,5.6,3.1
|
||||
c0.3,0.1,0.4,0.1-0.4,0.6c-1.7,1.2-3.8,2.3-6.4,3.4c-0.5,0.2-0.8,0.4-0.8,0.4c0,0,0-0.2,0.1-0.5c0.6-2.3,1-4.6,1-6.5
|
||||
C-284.3,177.7-284.3,177.7-284.2,177.7C-284.2,177.7-284.2,177.7-284.2,177.7L-284.2,177.7z M-285.5,178.2c0.1,0.1,0,2.1-0.1,2.7
|
||||
c-0.2,1.4-0.4,2.6-0.9,4c-0.1,0.3-0.2,0.6-0.2,0.6c0,0-1.3-1.2-1.7-1.7c-0.7-0.8-1.3-1.7-1.7-2.5c-0.2-0.4-0.5-1.2-0.5-1.3
|
||||
C-290.4,180.1-285.5,178.2-285.5,178.2L-285.5,178.2z M-291.6,180.6C-291.6,180.6-291.6,180.6-291.6,180.6c0,0,0.1,0.2,0.2,0.3
|
||||
c0.3,0.8,1,2,1.5,2.8c0.6,0.8,1.5,1.7,2.1,2.3c0.2,0.2,0.4,0.4,0.5,0.4c0.1,0.1,0.1,0-1.4,0.6c-1.8,0.7-3.7,1.3-5.9,2
|
||||
c-0.5,0.2-1,0.3-1.6,0.5c-0.1,0-0.1,0,0.2-0.4c1.1-1.7,2.7-5,3.7-7.4c0.2-0.4,0.3-0.8,0.3-0.9c0-0.1,0.1-0.2,0.2-0.2
|
||||
C-291.7,180.6-291.6,180.6-291.6,180.6L-291.6,180.6z M-293.4,181.4c0,0-0.4,1-0.9,1.9c-0.9,1.8-1.9,3.5-3.2,5.6
|
||||
c-0.2,0.4-0.4,0.7-0.5,0.7c0,0.1-0.1,0-0.2-0.2c-0.3-0.6-0.6-1.4-0.7-2.2c-0.1-0.7-0.1-2,0-2.8c0.1-0.6,0.1-0.6,0.4-0.7
|
||||
C-297.3,183.1-293.5,181.3-293.4,181.4L-293.4,181.4z M-277.4,182v0.4c0,2.1-0.2,4.9-0.5,7c-0.1,0.4-0.1,0.7-0.1,0.7
|
||||
c0,0-0.3-0.1-0.6-0.2c-1.4-0.4-2.9-1.1-4.3-1.8c-0.9-0.5-2.2-1.3-2.2-1.3c0,0,0.4-0.2,0.9-0.5c1.8-0.9,3.6-2,5.1-3
|
||||
c0.6-0.4,1.4-1,1.6-1.2L-277.4,182L-277.4,182z M-300.4,184.8c0,0,0,0.1,0,0.4c0,0.2-0.1,0.7-0.1,1c-0.1,1.4,0.1,2.4,0.8,3.7
|
||||
c0.2,0.4,0.3,0.7,0.3,0.7c-0.1,0.1-6.2,1.9-8.1,2.4c-0.6,0.2-1.1,0.3-1.1,0.3c-0.1,0-0.1,0,0-0.1c0.2-1.4,1.3-3.1,2.7-4.6
|
||||
c1-1,1.7-1.6,3.1-2.3C-302,185.6-300.6,184.8-300.4,184.8C-300.5,184.8-300.5,184.8-300.4,184.8L-300.4,184.8z M-286,187.4
|
||||
c0,0,0.2,0.1,0.5,0.3c2,1.2,4.8,2.2,7.1,2.8l0.2,0l-0.3,0.2c-1.2,0.7-5.3,2.4-9.4,3.9c-0.6,0.2-1.2,0.4-1.3,0.5
|
||||
c-0.1,0-0.2,0.1-0.2,0.1c0,0,0.2-0.3,0.4-0.7c1.2-2.2,2.3-4.8,2.9-6.7C-286,187.5-286,187.4-286,187.4L-286,187.4z M-287.4,187.8
|
||||
c0,0-0.1,0.2-0.2,0.4c-0.8,2-1.9,4.1-3.2,6.5c-0.3,0.6-0.6,1.1-0.6,1.1c0,0-0.3-0.2-0.6-0.4c-2-1.2-3.7-2.7-4.9-4.1l-0.2-0.2
|
||||
l0.8-0.2c3-0.8,5.6-1.7,8.1-2.8C-287.7,188-287.5,187.8-287.4,187.8z M-278.3,191C-278.3,191-278.3,191-278.3,191
|
||||
c0,0.2-0.5,2.1-0.9,3.5c-0.3,1.2-0.6,2.1-1.1,3.7c-0.2,0.7-0.4,1.3-0.4,1.3c0,0-0.1,0-0.1,0c-2.8-0.5-5.2-1.2-7.5-2.1
|
||||
c-0.6-0.3-1.6-0.7-1.6-0.7c0,0,0.5-0.3,1.2-0.6c4.2-1.8,8.6-3.9,10.1-4.8C-278.4,191.1-278.3,191-278.3,191L-278.3,191z
|
||||
M-299.4,191.8c0,0-1.2,1.7-2.8,4c-0.6,0.8-1.2,1.8-1.5,2.1c-0.3,0.4-0.6,0.9-0.8,1.2l-0.4,0.6l-0.4-0.4c-0.5-0.4-1.3-1.3-1.7-1.8
|
||||
c-0.8-1-1.3-2-1.5-3c-0.1-0.4-0.1-0.7,0-0.7c0.1,0,2.6-0.6,4.9-1.2c1.3-0.3,2.8-0.6,3.3-0.8C-299.9,191.9-299.4,191.8-299.4,191.8
|
||||
L-299.4,191.8z M-298.3,192.2l0.3,0.3c1.3,1.5,2.7,2.6,4.4,3.6c0.3,0.2,0.5,0.3,0.5,0.3c-0.1,0-5.7,2.1-8.4,3
|
||||
c-1.5,0.5-2.7,0.9-2.7,0.9c0,0-0.1-0.1-0.2-0.1l-0.2-0.1l0.3-0.4c0.9-1.3,2-2.6,4.4-5.5L-298.3,192.2L-298.3,192.2z M-290.8,197.5
|
||||
c0,0,0.4,0.1,0.9,0.3c1.2,0.5,2.2,0.7,3.4,1.1c1.6,0.4,3.9,0.8,5.2,0.9c0.2,0,0.3,0,0.3,0.1c-0.1,0-1.4,0.5-2.4,0.8
|
||||
c-1.6,0.5-6.5,1.9-10.4,3.1c-0.7,0.2-1.4,0.4-1.4,0.4c-0.1,0-0.4-0.1-0.4-0.1c0,0,0.2-0.3,0.5-0.6c1.3-1.6,2.7-3.4,3.8-5.1
|
||||
C-291.1,197.9-290.8,197.5-290.8,197.5L-290.8,197.5z M-292.5,197.6c0,0-0.6,1.1-1.8,2.9c-0.5,0.8-1,1.6-1.2,1.9
|
||||
c-0.2,0.3-0.5,0.8-0.6,1l-0.3,0.5l-0.1,0c-0.3-0.1-2.7-0.9-3.3-1.2c-0.8-0.3-1.6-0.7-2.2-1c-0.7-0.4-1.7-1-1.6-1
|
||||
c0,0,1.3-0.4,2.8-0.8c4.1-1.1,6.3-1.7,7.8-2.2C-292.7,197.6-292.5,197.6-292.5,197.6L-292.5,197.6z M-280.9,200.3L-280.9,200.3
|
||||
c0,0.1-1.5,4.3-2,5.6c-0.1,0.3-0.2,0.4-0.2,0.4c-0.2,0-2.3-0.3-3.7-0.5c-2.3-0.4-6.2-1-7.2-1.3l-0.2,0l1.4-0.3
|
||||
c3-0.7,4.4-1,5.8-1.5c1.8-0.6,3.6-1.3,5.5-2.1C-281.2,200.4-281,200.3-280.9,200.3L-280.9,200.3z"/>
|
||||
|
||||
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-26183.8906" y1="-17985.0352" x2="-26166.7754" y2="-17985.0352" gradientTransform="matrix(0.1187 0 0 0.1187 2807.8052 2286.6951)">
|
||||
<stop offset="0" style="stop-color:#939FAB"/>
|
||||
<stop offset="1" style="stop-color:#DCDEE1"/>
|
||||
</linearGradient>
|
||||
<path class="st2" d="M-287.8,145.4c-0.2,0-3.5,1.2-5.6,2c-2.9,1.2-5.1,2.3-6.5,3.2c-0.5,0.4-1.2,1-1.3,1.3c0,0.1-0.1,0.2-0.1,0.3
|
||||
l1.2,1.2l3,0.9l7,1.3l8.1,1.4l0.1-0.7c0,0,0,0-0.1,0l-1.1-0.2l-0.2-0.4c-1.1-1.9-2.3-4.3-3-5.9c-0.5-1.3-1.1-2.7-1.4-3.7
|
||||
C-287.7,145.5-287.7,145.4-287.8,145.4L-287.8,145.4L-287.8,145.4L-287.8,145.4z M-288,145.9L-288,145.9c0,0,0.1,0.3,0.1,0.6
|
||||
c0.2,1.3,0.4,2.6,0.9,3.9c0.3,1,0.3,1-0.1,0.8c-0.9-0.3-5.2-1-8.3-1.4c-0.5-0.1-0.9-0.1-0.9-0.1c0,0,2.2-1.2,3.2-1.7
|
||||
C-291.7,147.4-288.2,145.9-288,145.9L-288,145.9z M-296.9,150l0.4,0.1c2,0.7,6.9,1.6,9.6,1.8c0.3,0,0.6,0.1,0.6,0.1
|
||||
c0,0-0.3,0.1-0.6,0.3c-1.3,0.7-2.8,1.5-3.8,2.1c-0.3,0.2-0.6,0.3-0.6,0.3c0,0-0.2,0-0.4-0.1l-0.4-0.1l-0.9-0.9
|
||||
c-1.6-1.6-2.9-2.8-3.4-3.3L-296.9,150z M-297.3,150.3l1.3,1.6c0.7,0.9,1.4,1.8,1.6,2c0.2,0.2,0.3,0.4,0.3,0.4c0,0-1.9-0.3-2.9-0.6
|
||||
c-1-0.2-1.4-0.3-2.1-0.5l-0.5-0.2v-0.1c0-0.6,0.8-1.5,2.1-2.5L-297.3,150.3L-297.3,150.3z M-286.2,152.5c0,0,0.1,0.1,0.2,0.3
|
||||
c0.3,0.7,1.3,2.6,1.5,2.9c0.1,0.1,0.2,0.1-1.1-0.1c-3.1-0.5-4.2-0.7-4.2-0.7c0,0,0.1-0.1,0.2-0.1c1-0.5,2-1.2,2.8-2
|
||||
C-286.4,152.8-286.2,152.6-286.2,152.5C-286.2,152.5-286.2,152.5-286.2,152.5L-286.2,152.5z"/>
|
||||
|
||||
<radialGradient id="SVGID_3_" cx="3890.363" cy="-11919.5186" r="22.7252" gradientTransform="matrix(-0.114 -1.712736e-02 3.463960e-02 -0.228 573.3098 -2483.9714)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" style="stop-color:#EE352C"/>
|
||||
<stop offset="1" style="stop-color:#A91D22"/>
|
||||
</radialGradient>
|
||||
<path class="st3" d="M-301.1,151.8c0,0-0.2,0.3,0,0.8c0.1,0.3,0.5,0.7,0.9,1c0,0,4.1,4,4.6,4.6c2.3,2.6,3.3,5.2,3.4,8.8
|
||||
c0.1,2.3-0.4,4.3-1.5,6.7c-1.9,4.2-6,8.9-12.3,14l0.9-0.3c0.6-0.4,1.4-0.9,3.3-2c4.4-2.4,9.3-4.6,15.3-6.9
|
||||
c8.7-3.3,23-7.1,31.1-8.3l0.8-0.1l-0.1-0.2c-0.7-1.2-1.3-1.9-1.9-2.6c-1.8-2.2-3.9-4-6.6-5.5c-3.6-2-8.3-3.6-14.3-4.8
|
||||
c-1.1-0.2-3.6-0.6-5.6-1c-4.2-0.7-7-1.1-10-1.6c-1.1-0.2-2.7-0.5-3.8-0.7c-0.6-0.1-1.6-0.4-2.5-0.7
|
||||
C-299.9,152.8-300.9,152.6-301.1,151.8L-301.1,151.8z M-298.7,154.1c0,0,0.2,0,0.4,0.1c0.4,0.1,0.8,0.3,1.3,0.4
|
||||
c0.4,0.1,0.8,0.2,1.2,0.3c0.6,0.1,1,0.3,1,0.3c0.1,0.1,1,3.1,1.3,4.2c0.1,0.4,0.2,0.8,0.2,0.8c0,0-0.1-0.1-0.2-0.4
|
||||
c-1.1-1.9-2.8-3.9-4.8-5.4C-298.5,154.3-298.7,154.1-298.7,154.1L-298.7,154.1z M-294.1,155.4c0,0,0.3,0,0.5,0.1
|
||||
c1.6,0.4,4.4,0.9,6.2,1.2c0.3,0,0.5,0.1,0.5,0.1c0,0-0.1,0.1-0.3,0.2c-0.3,0.2-1.5,0.9-1.9,1.2c-1,0.7-2,1.4-2.6,2.1
|
||||
c-0.3,0.3-0.5,0.5-0.5,0.5s-0.1-0.2-0.1-0.4c-0.3-1.3-1-3.2-1.7-4.5C-294.1,155.6-294.1,155.4-294.1,155.4
|
||||
C-294.1,155.4-294.1,155.4-294.1,155.4L-294.1,155.4z M-286.1,156.9c0.1,0,0.1,0.3,0.3,1c0.3,1.3,0.5,2.8,0.4,4.2
|
||||
c0,0.4,0,0.8-0.1,0.8l0,0.1l-0.5-0.2c-1-0.3-2.6-0.8-4-1.2c-0.8-0.2-1.4-0.4-1.4-0.4c0-0.1,1.2-1.2,1.6-1.6
|
||||
C-288.7,158.8-286.2,156.9-286.1,156.9L-286.1,156.9z M-285.5,157c0,0,3.8,0.6,5.6,1c1.3,0.3,3.2,0.6,3.3,0.7
|
||||
c0.1,0-0.1,0.1-0.8,0.4c-2.4,1.1-4.3,2.1-6.1,3.3c-0.5,0.3-0.9,0.6-0.9,0.6s0-0.3,0-0.6c0-1.8-0.4-3.5-1-5
|
||||
C-285.4,157.2-285.5,157-285.5,157z M-275.6,159c0,0-0.1,0.8-0.2,1.2c-0.3,1.4-1.2,3.4-2.3,5.4c-0.2,0.3-0.4,0.6-0.4,0.6
|
||||
c0,0-0.3-0.1-0.6-0.3c-1.1-0.6-2.3-1.2-3.6-1.8c-0.4-0.2-0.7-0.3-0.7-0.3c-0.1-0.1,2.9-2,4.5-3C-277.7,160-275.6,158.9-275.6,159
|
||||
L-275.6,159z M-274.9,159.1c0.1,0,1.8,0.5,2.7,0.7c2.2,0.6,4.7,1.6,6.3,2.3l0.7,0.3l-0.5,0.1c-4,0.9-7.4,2-10.7,3.3
|
||||
c-0.3,0.1-0.5,0.2-0.5,0.2c0,0,0.1-0.2,0.2-0.5c1-2.1,1.6-4.3,1.8-6.2C-275,159.2-274.9,159.1-274.9,159.1L-274.9,159.1z
|
||||
M-291.7,162.9c0,0,1.3,0.3,2,0.5c1.1,0.3,3.3,1,3.3,1.1c0,0-0.3,0.2-0.5,0.5c-1.2,1-2.4,2.1-3.8,3.4c-0.4,0.4-0.8,0.7-0.8,0.7
|
||||
c0,0,0-0.1,0-0.1c0.2-1.6,0.2-3.6-0.1-5.6C-291.7,163.2-291.7,162.9-291.7,162.9z M-264.6,163c0,0-0.6,1-1,1.5
|
||||
c-0.6,0.8-1.4,1.9-3.2,4.2c-1,1.2-2.1,2.6-2.4,3.1c-0.4,0.5-0.7,0.9-0.7,0.9c0,0-0.1-0.2-0.3-0.4c-1-1.6-2.3-2.9-3.8-4.1
|
||||
c-0.3-0.2-0.6-0.5-0.7-0.6c-0.1-0.1-0.2-0.1-0.2-0.2c0,0,1.6-0.7,2.8-1.2c2.1-0.9,5-1.9,7.1-2.5
|
||||
C-265.8,163.3-264.6,162.9-264.6,163L-264.6,163z M-263.9,163.1c0,0,0.3,0.1,0.5,0.3c2.3,1.3,4.5,3,6.2,4.7
|
||||
c0.5,0.5,1.7,1.7,1.7,1.8c0,0-0.4,0-0.9,0.1c-3.9,0.3-8.9,1.1-13.7,2.3c-0.3,0.1-0.6,0.1-0.6,0.1c0,0,0.3-0.4,0.8-0.8
|
||||
c2.8-2.7,4.1-4.4,5.6-7.5C-264.1,163.6-263.9,163.2-263.9,163.1C-263.9,163.1-263.9,163.1-263.9,163.1L-263.9,163.1z
|
||||
M-284.6,165.3c0.1,0,1.3,0.6,2.2,1c0.8,0.4,2.1,1.1,2.2,1.1c0,0-0.4,0.2-1,0.5c-1.7,0.9-3.2,1.7-4.8,2.6
|
||||
c-0.4,0.3-0.8,0.5-0.8,0.5c0,0,0,0,0.2-0.5c0.8-1.5,1.5-3.3,1.9-5.1C-284.6,165.3-284.6,165.3-284.6,165.3L-284.6,165.3z
|
||||
M-285.8,165.5c0,0-0.3,1.2-0.5,1.8c-0.4,1.2-1,2.7-1.6,3.8c-0.1,0.3-0.4,0.6-0.5,0.9l-0.2,0.4l-0.5-0.5c-0.6-0.6-1.1-0.9-1.7-1.3
|
||||
c-0.3-0.1-0.4-0.2-0.4-0.3c0-0.1,1.6-1.5,2.8-2.6C-287.6,166.9-285.8,165.4-285.8,165.5L-285.8,165.5z M-278.4,168.5l0.5,0.3
|
||||
c1,0.7,2.3,1.6,3.2,2.4c0.5,0.4,1.5,1.4,1.8,1.6l0.1,0.1l-0.8,0.2c-4.2,1.2-7.5,2.2-11.4,3.6c-0.4,0.2-0.8,0.3-0.8,0.3
|
||||
c-0.1,0-0.1,0,0.9-0.8c2.4-2.3,4.6-4.7,6.2-7.2L-278.4,168.5L-278.4,168.5z M-280.3,169c0,0-1.3,1.8-2,2.8
|
||||
c-0.9,1.2-2.5,3.2-3.6,4.5c-0.5,0.5-0.9,1-0.9,1c0,0,0-0.1,0-0.3c0-1.1-0.3-2.3-0.8-3.3c-0.2-0.4-0.3-0.5-0.2-0.6
|
||||
c0.2-0.2,2.9-1.7,4.6-2.6C-282.2,169.9-280.4,169-280.3,169L-280.3,169z M-292.1,171.9c0,0,0.2,0.1,0.5,0.2
|
||||
c0.6,0.3,1.1,0.7,1.6,1.1c0,0-0.2,0.2-0.5,0.4c-0.9,0.6-2.2,1.6-3,2.3c-0.8,0.6-0.8,0.7-0.8,0.5c0.6-0.9,0.9-1.5,1.2-2.1
|
||||
c0.3-0.6,0.6-1.3,0.8-1.9C-292.2,172.1-292.1,171.9-292.1,171.9L-292.1,171.9z M-288.9,174.3c0,0,0.1,0.1,0.4,0.4
|
||||
c0.5,0.8,0.9,1.8,1,2.7l0,0.2l-1.3,0.5c-2.3,0.9-4.4,1.8-5.8,2.4c-0.4,0.2-1.1,0.5-1.5,0.7c-0.5,0.2-0.8,0.4-0.8,0.4
|
||||
c0,0,0.3-0.2,0.6-0.5c2.8-2,5.2-4.2,7-6.4C-289.1,174.5-289,174.3-288.9,174.3L-288.9,174.3L-288.9,174.3z M-290.4,174.7
|
||||
c0,0-1,1.2-1.7,2c-1.8,1.8-3.6,3.3-5.8,4.6c-0.3,0.2-0.5,0.3-0.6,0.4c-0.1,0,0-0.1,1-1.1c0.6-0.7,1.1-1.2,1.6-1.9
|
||||
c0.4-0.5,0.4-0.5,0.9-0.9C-293.5,176.8-290.4,174.6-290.4,174.7z"/>
|
||||
</g>
|
||||
<path class="st4" d="M11.4,38.5c-0.1,0-0.2,0-0.3,0c-2,0.1-3.3,1-4.1,2.7c-0.7,1.5-0.6,3.5,0,5.1c0.7,1.5,1.8,2.3,3.7,2.6
|
||||
c0.4,0.1,0.7,0.3,1.4,1.2l0.9,1.1h1.7L13.7,50c-0.6-0.6-1.1-1.2-1.1-1.2c0,0,0.2-0.2,0.5-0.2c1-0.3,1.8-1,2.3-2.2
|
||||
c0.5-0.9,0.5-1.2,0.6-2.3C16.1,40.6,14.3,38.5,11.4,38.5L11.4,38.5L11.4,38.5z M12.9,47.4c-0.8,0.4-2,0.5-2.8,0.2
|
||||
c-0.8-0.3-1.6-1.2-2-2.1c-0.4-1.1-0.3-3,0.1-3.9c0.7-1.4,1.7-2,3.1-2c2.1,0,3.3,1.3,3.4,3.7C14.8,45.3,14.2,46.8,12.9,47.4
|
||||
L12.9,47.4z M42.5,41.4c-0.7,0-1.3,0.3-1.6,0.9l-0.3,0.5v-1.2h-1.2v7.1h1.2v-2.3c0-2.1,0-2.3,0.3-2.9c0.4-0.8,1.1-1.2,1.7-1
|
||||
l0.4,0.1v-1.2L42.5,41.4L42.5,41.4L42.5,41.4z M35.2,41.3c-0.2,0-0.5,0-0.8,0.1c-1.7,0.4-2.6,2-2.5,3.7c0,1.4,0.3,2.1,0.9,2.8
|
||||
c1.4,1.1,2.6,1.2,4.2,0.6c0.3-0.1,0.6-0.3,0.6-0.3v-1.1l-0.6,0.3c-1.3,0.6-2.4,0.6-3.2-0.1c-0.5-0.5-0.7-1.2-0.8-1.9h5v-1
|
||||
C38.1,42.5,36.9,41.3,35.2,41.3L35.2,41.3L35.2,41.3z M33.2,44.5c0,0,0.2-1.2,0.9-1.7c0.3-0.2,0.7-0.3,1.1-0.3
|
||||
c0.4,0,0.7,0.1,1.1,0.4c0.6,0.5,0.7,1.7,0.7,1.7L33.2,44.5L33.2,44.5L33.2,44.5L33.2,44.5z M3.1,43.2c-1.4-0.8-2-1.4-1.9-2.1
|
||||
c0.2-1.9,2.6-1.7,3.9-0.9l0-1.3c0,0-0.7-0.3-1.8-0.3c-1.6,0-2.6,0.5-3.1,1.6c-0.7,1.6-0.1,2.8,2.2,4.1c1.3,0.7,1.8,1.4,1.8,2.1
|
||||
c0,1.5-1.8,2-3.6,1.1C0.4,47.1,0.1,47,0,47c-0.1,0.4,0,1.4,0,1.4s0.6,0.2,1.4,0.4c2.1,0.4,4-0.6,4.1-2.1
|
||||
C5.7,45.2,5.2,44.4,3.1,43.2L3.1,43.2L3.1,43.2z M53.6,41.3c-0.2,0-0.5,0-0.8,0.1c-1.7,0.4-2.6,2-2.5,3.7c0,1.4,0.3,2.1,0.9,2.8
|
||||
c1.4,1.1,2.6,1.2,4.3,0.6c0.3-0.1,0.6-0.3,0.6-0.3v-1.1l-0.6,0.3c-1.3,0.6-2.4,0.6-3.2-0.1c-0.5-0.5-0.7-1.1-0.9-1.9h5v-1
|
||||
C56.4,42.5,55.3,41.3,53.6,41.3L53.6,41.3L53.6,41.3z M51.5,44.4c0,0,0.2-1.2,0.9-1.7c0.3-0.2,0.7-0.3,1.1-0.3
|
||||
c0.4,0,0.7,0.1,1.1,0.4c0.6,0.5,0.7,1.7,0.7,1.7L51.5,44.4L51.5,44.4L51.5,44.4z M28.7,43.2c-1.4-0.8-1.9-1.4-1.9-2.1
|
||||
c0.2-1.9,2.6-1.7,3.9-0.9l0-1.3c0,0-0.7-0.3-1.8-0.3c-1.6,0-2.6,0.5-3.1,1.6c-0.7,1.6-0.1,2.8,2.2,4.1c1.3,0.7,1.8,1.4,1.8,2.1
|
||||
c0,1.5-1.8,2-3.6,1.1c-0.4-0.2-0.7-0.3-0.7-0.3c-0.1,0.4,0,1.4,0,1.4s0.6,0.2,1.4,0.4c2.1,0.4,4-0.6,4.1-2.1
|
||||
C31.2,45.2,30.7,44.4,28.7,43.2L28.7,43.2L28.7,43.2z M60.9,41.4c-0.7,0-1.3,0.3-1.6,0.9l-0.3,0.5v-1.2h-1.2v7.1h1.2v-2.3
|
||||
c0-2.1,0-2.3,0.3-2.9c0.4-0.8,1.1-1.2,1.7-1l0.4,0.1v-1.2L60.9,41.4L60.9,41.4z M18.8,43.2v-4.5h-1.3v10h5.3v-1.2h-4L18.8,43.2
|
||||
L18.8,43.2z M47.8,44.6l-1,2.7l-1-2.7l-1-3h-1.3c0.8,2.4,1.7,4.8,2.7,7.1c0.4,0,0.8,0,1.2,0l1.4-3.5l1.4-3.6h-1.2
|
||||
C48.9,41.5,48.4,43,47.8,44.6L47.8,44.6L47.8,44.6z M21.7,35.9c0.2,0,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.5
|
||||
c0-0.2-0.1-0.4-0.2-0.5c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.4,0.1-0.5,0.2C21,34.8,21,35,21,35.2c0,0.2,0.1,0.4,0.2,0.5
|
||||
C21.3,35.8,21.5,35.9,21.7,35.9L21.7,35.9L21.7,35.9z M21.2,34.8c0.1-0.1,0.3-0.2,0.5-0.2c0.2,0,0.3,0.1,0.4,0.2
|
||||
c0.1,0.1,0.2,0.3,0.2,0.4c0,0.2-0.1,0.3-0.2,0.5c-0.1,0.1-0.3,0.2-0.4,0.2c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.1-0.2-0.3-0.2-0.5
|
||||
C21,35,21.1,34.9,21.2,34.8z M21.5,35.3L21.5,35.3c0.1,0,0.2,0.1,0.2,0.2l0.1,0.2H22l-0.1-0.2c0-0.1-0.1-0.2-0.2-0.2
|
||||
c0.1,0,0.1,0,0.2-0.1c0,0,0.1-0.1,0.1-0.2c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.3-0.1h-0.3v0.9h0.1L21.5,35.3L21.5,35.3L21.5,35.3
|
||||
z M21.5,34.8h0.1c0.1,0,0.1,0,0.2,0c0,0,0,0.1,0,0.1c0,0.1-0.1,0.2-0.2,0.2h-0.1L21.5,34.8L21.5,34.8L21.5,34.8z M0.8,35.2
|
||||
c0-0.3,0-0.6,0-0.7h0c0,0.2,0.1,0.3,0.1,0.4l1.2,2.7h0.2l1.2-2.7c0-0.1,0.1-0.2,0.1-0.3h0c0,0.3,0,0.5,0,0.7v2.4H4V34H3.5l-1.1,2.5
|
||||
c0,0.1-0.1,0.2-0.2,0.4h0c0-0.1-0.1-0.2-0.2-0.4L0.9,34H0.4v3.5h0.4L0.8,35.2L0.8,35.2L0.8,35.2z M4.9,35.2h0.4v2.2H4.9V35.2z
|
||||
M5.1,34.4c0.1,0,0.1,0,0.2-0.1c0,0,0.1-0.1,0.1-0.2c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.2,0.1
|
||||
c0,0-0.1,0.1-0.1,0.2c0,0.1,0,0.1,0.1,0.2C4.9,34.4,5,34.4,5.1,34.4L5.1,34.4L5.1,34.4z M7.8,37.4v-0.4c-0.2,0.1-0.4,0.2-0.6,0.2
|
||||
c-0.3,0-0.5-0.1-0.6-0.3c-0.2-0.2-0.2-0.4-0.2-0.7c0-0.3,0.1-0.5,0.3-0.7c0.2-0.2,0.4-0.3,0.6-0.3c0.2,0,0.4,0.1,0.6,0.2v-0.4
|
||||
C7.6,35,7.4,35,7.2,35c-0.4,0-0.7,0.1-1,0.4c-0.2,0.3-0.4,0.6-0.4,1c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.4,0.9,0.4
|
||||
C7.4,37.6,7.6,37.6,7.8,37.4L7.8,37.4z M8.8,36.3c0-0.3,0.1-0.5,0.2-0.7c0.1-0.1,0.3-0.2,0.4-0.2c0.1,0,0.2,0,0.3,0.1V35
|
||||
c-0.1,0-0.1,0-0.2,0c-0.1,0-0.3,0-0.4,0.1c-0.1,0.1-0.2,0.2-0.3,0.4h0V35H8.4v2.5h0.4L8.8,36.3L8.8,36.3z M11.1,37.6
|
||||
c0.4,0,0.7-0.1,0.9-0.4c0.2-0.2,0.3-0.6,0.3-1c0-0.4-0.1-0.7-0.3-1c-0.2-0.2-0.5-0.3-0.9-0.3c-0.4,0-0.7,0.1-0.9,0.3
|
||||
c-0.2,0.2-0.4,0.6-0.4,1c0,0.4,0.1,0.7,0.3,0.9C10.4,37.5,10.7,37.6,11.1,37.6L11.1,37.6L11.1,37.6z M10.5,35.6
|
||||
c0.2-0.2,0.4-0.2,0.6-0.2c0.3,0,0.5,0.1,0.6,0.2c0.1,0.2,0.2,0.4,0.2,0.7c0,0.3-0.1,0.6-0.2,0.7c-0.1,0.2-0.3,0.3-0.6,0.3
|
||||
c-0.3,0-0.5-0.1-0.6-0.3c-0.2-0.2-0.2-0.4-0.2-0.7C10.3,36,10.4,35.7,10.5,35.6L10.5,35.6z M14.1,37.4c0.2-0.1,0.2-0.3,0.2-0.5
|
||||
c0-0.2-0.1-0.3-0.2-0.5c-0.1-0.1-0.3-0.2-0.5-0.3c-0.2-0.1-0.3-0.2-0.4-0.2c-0.1-0.1-0.1-0.1-0.1-0.3c0-0.1,0-0.2,0.1-0.3
|
||||
c0.1-0.1,0.2-0.1,0.3-0.1c0.2,0,0.4,0.1,0.6,0.2v-0.4C14.1,35,13.9,35,13.7,35c-0.3,0-0.5,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.3,0.5
|
||||
c0,0.2,0.1,0.3,0.2,0.5c0.1,0.1,0.2,0.2,0.5,0.3c0.2,0.1,0.3,0.2,0.4,0.2c0.1,0.1,0.1,0.1,0.1,0.2c0,0.2-0.2,0.4-0.5,0.4
|
||||
c-0.2,0-0.5-0.1-0.7-0.2v0.4c0.2,0.1,0.4,0.2,0.6,0.2C13.7,37.6,14,37.5,14.1,37.4L14.1,37.4L14.1,37.4z M16.1,35
|
||||
c-0.4,0-0.7,0.1-0.9,0.3c-0.2,0.2-0.4,0.6-0.4,1c0,0.4,0.1,0.7,0.3,0.9c0.2,0.2,0.5,0.4,0.9,0.4c0.4,0,0.7-0.1,0.9-0.4
|
||||
c0.2-0.2,0.3-0.6,0.3-1c0-0.4-0.1-0.7-0.3-1C16.7,35.1,16.4,35,16.1,35L16.1,35L16.1,35z M16.9,36.3c0,0.3-0.1,0.6-0.2,0.7
|
||||
c-0.1,0.2-0.3,0.3-0.6,0.3c-0.3,0-0.5-0.1-0.6-0.3c-0.2-0.2-0.2-0.4-0.2-0.7c0-0.3,0.1-0.6,0.2-0.7c0.2-0.2,0.4-0.2,0.6-0.2
|
||||
c0.3,0,0.5,0.1,0.6,0.2C16.8,35.7,16.9,36,16.9,36.3L16.9,36.3L16.9,36.3z M17.9,37.6h0.4v-2.2h0.6V35h-0.6v-0.4
|
||||
c0-0.4,0.1-0.5,0.4-0.5c0.1,0,0.2,0,0.3,0.1v-0.4c-0.1,0-0.2,0-0.3,0c-0.2,0-0.4,0.1-0.5,0.2c-0.2,0.2-0.3,0.4-0.3,0.7V35h-0.4v0.3
|
||||
h0.4L17.9,37.6L17.9,37.6z M19.6,36.9c0,0.5,0.2,0.7,0.7,0.7c0.2,0,0.3,0,0.4-0.1v-0.3c-0.1,0.1-0.2,0.1-0.3,0.1
|
||||
c-0.1,0-0.2,0-0.3-0.1C20,37.1,20,37,20,36.8v-1.4h0.6V35H20v-0.7c-0.1,0-0.3,0.1-0.4,0.1V35h-0.4v0.3h0.4L19.6,36.9L19.6,36.9z
|
||||
M63,41.5c-0.1-0.1-0.3-0.2-0.5-0.2c-0.2,0-0.4,0.1-0.5,0.2c-0.1,0.1-0.2,0.3-0.2,0.5c0,0.2,0.1,0.4,0.2,0.5
|
||||
c0.1,0.1,0.3,0.2,0.5,0.2c0.2,0,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.5C63.2,41.8,63.2,41.7,63,41.5L63,41.5z M63,42.5
|
||||
c-0.1,0.1-0.3,0.2-0.4,0.2c-0.2,0-0.3-0.1-0.4-0.2c-0.1-0.1-0.2-0.3-0.2-0.5c0-0.2,0.1-0.3,0.2-0.4c0.1-0.1,0.3-0.2,0.5-0.2
|
||||
c0.2,0,0.3,0.1,0.4,0.2c0.1,0.1,0.2,0.3,0.2,0.4C63.2,42.2,63.1,42.4,63,42.5z M62.6,42.1c0.1,0,0.1,0,0.2-0.1c0,0,0.1-0.1,0.1-0.2
|
||||
c0-0.1,0-0.1-0.1-0.2c-0.1,0-0.1-0.1-0.3-0.1h-0.3v0.9h0.1v-0.4h0.1c0.1,0,0.1,0.1,0.2,0.2l0.1,0.2h0.2l-0.1-0.2
|
||||
C62.7,42.1,62.7,42.1,62.6,42.1L62.6,42.1L62.6,42.1z M62.5,42h-0.1v-0.3h0.1c0.1,0,0.1,0,0.2,0c0,0,0,0.1,0,0.1
|
||||
C62.7,41.9,62.6,42,62.5,42L62.5,42L62.5,42z M39.9,34.9h0.1V34h0.3v-0.1h-0.7V34h0.3L39.9,34.9L39.9,34.9z M40.6,34.2
|
||||
c0-0.1,0-0.2,0-0.2C40.6,34.1,40.6,34.1,40.6,34.2l0.4,0.7h0.1l0.3-0.8c0,0,0-0.1,0-0.1c0,0.1,0,0.1,0,0.2v0.7h0.1v-1h-0.1
|
||||
l-0.3,0.7c0,0,0,0.1,0,0.1h0c0,0,0-0.1,0-0.1l-0.3-0.7h-0.2v1h0.1L40.6,34.2L40.6,34.2L40.6,34.2z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 18 KiB |
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="design" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 98.6 51.3" style="enable-background:new 0 0 98.6 51.3;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#0089D6;}
|
||||
.st1{fill:url(#SVGID_1_);}
|
||||
.st2{fill:url(#SVGID_2_);}
|
||||
.st3{fill:url(#SVGID_3_);}
|
||||
.st4{fill:#231F1F;}
|
||||
.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#00678F;}
|
||||
.st6{fill-rule:evenodd;clip-rule:evenodd;fill:#E38D1A;}
|
||||
.st7{fill:#ED1C24;}
|
||||
.st8{fill:#336791;}
|
||||
.st9{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st5" d="M0,46.8h3.3V33.9l5.1,11.2c0.6,1.4,1.4,1.9,3,1.9c1.6,0,2.4-0.5,3-1.9l5.1-11.2v12.9h3.3V33.9
|
||||
c0-1.3-0.5-1.9-1.6-2.2c-2.5-0.8-4.1-0.1-4.9,1.6l-5,11.1L6.4,33.3c-0.7-1.7-2.4-2.3-4.9-1.6C0.5,32,0,32.6,0,33.9V46.8L0,46.8z"/>
|
||||
<path class="st5" d="M25.4,36.3h3.3v7.1c0,0.4,0.1,1.3,1.9,1.3c0.9,0,7.1,0,7.1,0v-8.5h3.3c0,0,0,11.5,0,11.6
|
||||
c0,2.9-3.5,3.5-5.2,3.5H25.4v-2.2c0,0,10.3,0,10.3,0c2.1-0.2,1.9-1.3,1.9-1.6v-0.9h-6.9c-3.2,0-5.3-1.5-5.3-3.1
|
||||
C25.4,43.4,25.4,36.3,25.4,36.3L25.4,36.3z"/>
|
||||
<path class="st5" d="M95.7,28.1c-2-0.1-3.6,0.2-4.9,0.7c-0.4,0.2-1,0.2-1,0.6c0.2,0.2,0.2,0.5,0.4,0.8c0.3,0.5,0.8,1.2,1.3,1.5
|
||||
c0.5,0.4,1.1,0.8,1.6,1.2c1,0.6,2.1,1,3,1.6c0.6,0.4,1.1,0.8,1.7,1.2c0.3,0.2,0.5,0.5,0.8,0.7c0,0,0-0.1,0-0.1
|
||||
c-0.2-0.2-0.2-0.6-0.4-0.8c-0.3-0.3-0.5-0.5-0.8-0.7c-0.7-1-1.6-1.8-2.6-2.5c-0.8-0.6-2.6-1.3-2.9-2.2c0,0,0,0-0.1,0
|
||||
c0.6-0.1,1.2-0.3,1.7-0.4c0.9-0.2,1.6-0.2,2.5-0.4c0.4-0.1,0.8-0.2,1.2-0.4c0-0.1,0-0.2,0-0.2c-0.5-0.5-0.8-1.1-1.3-1.5
|
||||
c-1.3-1.1-2.7-2.2-4.1-3.1c-0.8-0.5-1.8-0.8-2.6-1.3c-0.3-0.2-0.8-0.2-1-0.5c-0.5-0.6-0.7-1.3-1-1.9c-0.7-1.4-1.4-2.9-2.1-4.4
|
||||
c-0.5-1-0.7-2-1.3-2.9c-2.6-4.3-5.4-6.8-9.7-9.4c-0.9-0.5-2-0.8-3.2-1c-0.6,0-1.3-0.1-1.9-0.1c-0.4-0.2-0.8-0.7-1.2-0.9
|
||||
C66.7,0.8,63-1.2,62,1.4c-0.7,1.6,1,3.2,1.6,4.1c0.4,0.6,1,1.2,1.3,1.9C65,7.8,65,8.2,65.2,8.7C65.6,9.8,66,11,66.5,12
|
||||
c0.3,0.5,0.6,1.1,0.9,1.6c0.2,0.3,0.6,0.4,0.6,0.9c-0.4,0.5-0.4,1.3-0.6,1.9c-0.9,2.8-0.6,6.3,0.7,8.4c0.4,0.6,1.4,2,2.6,1.5
|
||||
c1.1-0.5,0.9-1.9,1.2-3.1c0.1-0.3,0-0.5,0.2-0.7c0,0,0,0.1,0,0.1c0.4,0.7,0.7,1.4,1,2.1c0.8,1.2,2.1,2.5,3.3,3.4
|
||||
c0.6,0.5,1.1,1.2,1.8,1.5c0,0,0-0.1,0-0.1c0,0,0,0-0.1,0c-0.2-0.2-0.4-0.3-0.6-0.5c-0.5-0.5-1-1-1.3-1.5c-1.1-1.4-2-3-2.8-4.6
|
||||
c-0.4-0.8-0.8-1.6-1.1-2.4c-0.2-0.3-0.2-0.8-0.4-0.9c-0.4,0.6-0.9,1-1.2,1.7c-0.5,1.1-0.5,2.4-0.7,3.8c-0.1,0-0.1,0-0.1,0.1
|
||||
c-0.8-0.2-1.1-1-1.4-1.7c-0.8-1.8-0.9-4.6-0.2-6.7c0.2-0.5,0.9-2.2,0.6-2.7c-0.2-0.5-0.7-0.8-0.9-1.1c-0.3-0.5-0.7-1.1-0.9-1.6
|
||||
c-0.6-1.4-0.9-3-1.6-4.4c-0.3-0.7-0.8-1.3-1.3-1.9c-0.5-0.7-1-1.2-1.4-2c-0.1-0.3-0.3-0.7-0.1-1c0.1-0.2,0.2-0.3,0.4-0.3
|
||||
c0.3-0.3,1.3,0.1,1.6,0.2c0.9,0.4,1.7,0.7,2.5,1.3c0.4,0.3,0.7,0.7,1.2,0.9c0.2,0,0.4,0,0.5,0c0.8,0.2,1.7,0.1,2.5,0.3
|
||||
c1.3,0.4,2.5,1.1,3.6,1.7c3.3,2.1,6,5,7.8,8.6c0.3,0.6,0.4,1.1,0.7,1.7c0.5,1.2,1.2,2.5,1.7,3.7c0.5,1.2,1,2.4,1.8,3.4
|
||||
c0.4,0.5,1.9,0.8,2.6,1.1c0.5,0.2,1.3,0.4,1.7,0.7c0.9,0.5,1.7,1.1,2.5,1.7C94.4,26.9,95.6,27.6,95.7,28.1L95.7,28.1z"/>
|
||||
<path class="st5" d="M70.2,6.3c-0.4,0-0.7,0.1-1,0.1c0,0,0,0,0,0.1c0,0,0,0,0.1,0c0.2,0.4,0.6,0.7,0.8,1c0.2,0.4,0.4,0.8,0.6,1.2
|
||||
c0,0,0-0.1,0-0.1C71,8.4,71.1,8,71.1,7.4C71,7.2,71,7.1,70.8,6.9C70.7,6.6,70.4,6.5,70.2,6.3L70.2,6.3z"/>
|
||||
<path class="st6" d="M43.4,46.8h9.4c1.1,0,2.2-0.2,3-0.6c1.4-0.7,2.1-1.5,2.1-2.7v-2.4c0-0.9-0.8-1.8-2.3-2.4
|
||||
c-0.8-0.3-1.8-0.5-2.8-0.5h-4c-1.3,0-2-0.4-2.1-1.3c0-0.1,0-0.2,0-0.3v-1.5c0-0.1,0-0.2,0-0.3c0.2-0.7,0.5-0.9,1.7-1
|
||||
c0.1,0,0.2,0,0.3,0h9.3v-2.2h-9.2c-1.3,0-2,0.1-2.7,0.3c-1.9,0.6-2.8,1.6-2.8,3.2v1.9c0,1.5,1.7,2.7,4.5,3c0.3,0,0.6,0,1,0h3.4
|
||||
c0.1,0,0.3,0,0.4,0c1,0.1,1.5,0.3,1.8,0.7c0.2,0.2,0.3,0.4,0.3,0.6v1.9c0,0.2-0.2,0.5-0.5,0.8c-0.3,0.3-0.8,0.4-1.4,0.5
|
||||
c-0.1,0-0.2,0-0.3,0h-9V46.8L43.4,46.8z"/>
|
||||
<path class="st6" d="M78.3,43c0,2.2,1.7,3.5,5,3.7c0.3,0,0.6,0.1,1,0.1h8.5v-2.2h-8.6c-1.9,0-2.6-0.5-2.6-1.6V31.7h-3.3V43L78.3,43
|
||||
z"/>
|
||||
<path class="st6" d="M60,43.1v-7.8c0-2,1.4-3.2,4.1-3.6c0.3,0,0.6,0,0.9,0h6.2c0.3,0,0.6,0,0.9,0c2.7,0.4,4.1,1.6,4.1,3.6v7.8
|
||||
c0,1.6-0.6,2.5-1.9,3l3.2,2.9h-3.8l-2.6-2.4l-2.6,0.2H65c-0.6,0-1.2-0.1-1.9-0.3C61.1,46,60,44.9,60,43.1L60,43.1z M63.6,42.9
|
||||
c0,0.1,0.1,0.2,0.1,0.3c0.2,0.9,1,1.4,2.3,1.4h3l-2.7-2.5H70l2.4,2.2c0.5-0.3,0.7-0.6,0.8-1.1c0-0.1,0-0.2,0-0.3v-7.4
|
||||
c0-0.1,0-0.2,0-0.3c-0.2-0.9-1-1.3-2.3-1.3H66c-1.5,0-2.4,0.6-2.4,1.6V42.9L63.6,42.9z"/>
|
||||
<path class="st6" d="M94.3,46.8h0.5V45h0.6v-0.4h-1.8V45h0.7V46.8L94.3,46.8z M97.9,46.8h0.5v-2.2h-0.7l-0.6,1.5l-0.6-1.5h-0.7v2.2
|
||||
h0.4v-1.7h0l0.6,1.7h0.3l0.6-1.7l0,0V46.8L97.9,46.8z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
@@ -0,0 +1,142 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="design" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 107.6 51.5" style="enable-background:new 0 0 107.6 51.5;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{clip-path:url(#SVGID_2_);}
|
||||
.st1{fill:url(#SVGID_3_);}
|
||||
.st2{clip-path:url(#SVGID_5_);}
|
||||
.st3{fill:url(#SVGID_6_);}
|
||||
.st4{fill:#005999;}
|
||||
.st5{filter:url(#Adobe_OpacityMaskFilter);}
|
||||
.st6{enable-background:new ;}
|
||||
.st7{clip-path:url(#SVGID_9_);}
|
||||
.st8{clip-path:url(#SVGID_11_);}
|
||||
.st9{clip-path:url(#SVGID_13_);fill:url(#SVGID_14_);}
|
||||
.st10{mask:url(#SVGID_7_);}
|
||||
.st11{clip-path:url(#SVGID_16_);}
|
||||
.st12{clip-path:url(#SVGID_18_);}
|
||||
.st13{fill:url(#SVGID_19_);}
|
||||
.st14{filter:url(#Adobe_OpacityMaskFilter_1_);}
|
||||
.st15{clip-path:url(#SVGID_22_);}
|
||||
.st16{clip-path:url(#SVGID_24_);}
|
||||
.st17{clip-path:url(#SVGID_26_);fill:url(#SVGID_27_);}
|
||||
.st18{mask:url(#SVGID_20_);}
|
||||
.st19{clip-path:url(#SVGID_29_);fill:#0091BE;}
|
||||
.st20{fill:#006CB6;}
|
||||
.st21{clip-path:url(#SVGID_31_);}
|
||||
.st22{fill:url(#SVGID_32_);}
|
||||
.st23{clip-path:url(#SVGID_34_);}
|
||||
.st24{fill:url(#SVGID_35_);}
|
||||
.st25{filter:url(#Adobe_OpacityMaskFilter_2_);}
|
||||
.st26{clip-path:url(#SVGID_38_);}
|
||||
.st27{clip-path:url(#SVGID_40_);}
|
||||
.st28{clip-path:url(#SVGID_42_);fill:url(#SVGID_43_);}
|
||||
.st29{mask:url(#SVGID_36_);}
|
||||
.st30{clip-path:url(#SVGID_45_);fill:#00B8F1;}
|
||||
.st31{fill:#0078AE;}
|
||||
.st32{fill:#005E9C;}
|
||||
.st33{filter:url(#Adobe_OpacityMaskFilter_3_);}
|
||||
.st34{clip-path:url(#SVGID_48_);}
|
||||
.st35{clip-path:url(#SVGID_50_);}
|
||||
.st36{clip-path:url(#SVGID_52_);fill:url(#SVGID_53_);}
|
||||
.st37{mask:url(#SVGID_46_);}
|
||||
.st38{clip-path:url(#SVGID_55_);}
|
||||
.st39{clip-path:url(#SVGID_57_);}
|
||||
.st40{fill:url(#SVGID_58_);}
|
||||
.st41{filter:url(#Adobe_OpacityMaskFilter_4_);}
|
||||
.st42{clip-path:url(#SVGID_61_);}
|
||||
.st43{clip-path:url(#SVGID_63_);}
|
||||
.st44{clip-path:url(#SVGID_65_);fill:url(#SVGID_66_);}
|
||||
.st45{mask:url(#SVGID_59_);}
|
||||
.st46{clip-path:url(#SVGID_68_);fill:#00A0E3;}
|
||||
.st47{fill:#0082C5;}
|
||||
.st48{clip-path:url(#SVGID_70_);}
|
||||
.st49{fill:url(#SVGID_71_);}
|
||||
.st50{fill:#007DC4;}
|
||||
.st51{filter:url(#Adobe_OpacityMaskFilter_5_);}
|
||||
.st52{clip-path:url(#SVGID_74_);}
|
||||
.st53{clip-path:url(#SVGID_76_);}
|
||||
.st54{clip-path:url(#SVGID_78_);fill:url(#SVGID_79_);}
|
||||
.st55{mask:url(#SVGID_72_);}
|
||||
.st56{clip-path:url(#SVGID_81_);}
|
||||
.st57{clip-path:url(#SVGID_83_);}
|
||||
.st58{fill:url(#SVGID_84_);}
|
||||
.st59{clip-path:url(#SVGID_86_);}
|
||||
.st60{fill:url(#SVGID_87_);}
|
||||
.st61{fill:#00A0E3;}
|
||||
.st62{clip-path:url(#SVGID_89_);}
|
||||
.st63{fill:url(#SVGID_90_);}
|
||||
.st64{clip-path:url(#SVGID_92_);}
|
||||
.st65{fill:url(#SVGID_93_);}
|
||||
.st66{filter:url(#Adobe_OpacityMaskFilter_6_);}
|
||||
.st67{clip-path:url(#SVGID_96_);}
|
||||
.st68{clip-path:url(#SVGID_98_);}
|
||||
.st69{clip-path:url(#SVGID_100_);fill:url(#SVGID_101_);}
|
||||
.st70{mask:url(#SVGID_94_);}
|
||||
.st71{clip-path:url(#SVGID_103_);}
|
||||
.st72{clip-path:url(#SVGID_105_);}
|
||||
.st73{fill:url(#SVGID_106_);}
|
||||
.st74{fill:#009ADE;}
|
||||
.st75{fill:#0060AE;}
|
||||
.st76{fill:#0064B0;}
|
||||
.st77{fill:#0062A7;}
|
||||
.st78{clip-path:url(#SVGID_108_);}
|
||||
.st79{fill:url(#SVGID_109_);}
|
||||
.st80{filter:url(#Adobe_OpacityMaskFilter_7_);}
|
||||
.st81{clip-path:url(#SVGID_112_);}
|
||||
.st82{clip-path:url(#SVGID_114_);}
|
||||
.st83{clip-path:url(#SVGID_116_);fill:url(#SVGID_117_);}
|
||||
.st84{mask:url(#SVGID_110_);}
|
||||
.st85{clip-path:url(#SVGID_119_);fill:#6DC3E8;}
|
||||
.st86{clip-path:url(#SVGID_119_);fill:#37BDE9;}
|
||||
.st87{clip-path:url(#SVGID_119_);}
|
||||
.st88{clip-path:url(#SVGID_121_);}
|
||||
.st89{fill:url(#SVGID_122_);}
|
||||
.st90{clip-path:url(#SVGID_124_);}
|
||||
.st91{fill:url(#SVGID_125_);}
|
||||
.st92{filter:url(#Adobe_OpacityMaskFilter_8_);}
|
||||
.st93{clip-path:url(#SVGID_128_);}
|
||||
.st94{clip-path:url(#SVGID_130_);}
|
||||
.st95{clip-path:url(#SVGID_132_);fill:url(#SVGID_133_);}
|
||||
.st96{mask:url(#SVGID_126_);}
|
||||
.st97{clip-path:url(#SVGID_135_);}
|
||||
.st98{clip-path:url(#SVGID_137_);}
|
||||
.st99{fill:url(#SVGID_138_);}
|
||||
.st100{fill:#231F20;}
|
||||
.st101{fill-rule:evenodd;clip-rule:evenodd;fill:#EC2024;}
|
||||
.st102{fill-rule:evenodd;clip-rule:evenodd;fill:#008AC7;}
|
||||
.st103{fill:#E92D2F;stroke:#E92D2F;stroke-width:9.375000e-02;stroke-miterlimit:10;}
|
||||
.st104{fill:#0774BA;stroke:#0774BA;stroke-width:9.375000e-02;stroke-miterlimit:10;}
|
||||
.st105{fill-rule:evenodd;clip-rule:evenodd;fill:#6082BB;}
|
||||
.st106{fill:url(#SVGID_139_);}
|
||||
.st107{fill:url(#SVGID_140_);}
|
||||
.st108{fill:#539E43;}
|
||||
.st109{fill:#333333;}
|
||||
.st110{fill:url(#path-2_2_);}
|
||||
.st111{filter:url(#Adobe_OpacityMaskFilter_9_);}
|
||||
.st112{fill:#FFFFFF;}
|
||||
.st113{mask:url(#mask-3_4_);}
|
||||
.st114{fill:none;}
|
||||
.st115{fill:url(#SVGID_141_);}
|
||||
.st116{filter:url(#Adobe_OpacityMaskFilter_10_);}
|
||||
.st117{mask:url(#mask-3_3_);}
|
||||
.st118{fill:url(#SVGID_142_);}
|
||||
.st119{fill:url(#SVGID_143_);}
|
||||
.st120{fill:url(#SVGID_144_);}
|
||||
.st121{fill:url(#SVGID_145_);}
|
||||
.st122{fill:url(#SVGID_146_);}
|
||||
</style>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st105" d="M21.5,17.3c3.4,0,5.6,0.6,6.7,1.9c1.1,1.2,1.4,3.4,0.8,6.4c-0.6,3.1-1.8,5.4-3.5,6.7c-1.7,1.3-4.4,2-8,2
|
||||
h-5.4l3.3-17H21.5L21.5,17.3z M0,51.5h8.8l2.1-10.8h7.6c3.3,0,6.1-0.4,8.2-1.1c2.2-0.7,4.1-1.9,5.9-3.5c1.5-1.4,2.7-2.9,3.6-4.5
|
||||
c0.9-1.6,1.6-3.5,2-5.4c0.9-4.8,0.2-8.6-2.1-11.2c-2.3-2.7-6.1-4-11.2-4h-17L0,51.5L0,51.5z"/>
|
||||
<path class="st105" d="M44.7,0.1h8.8l-2.1,10.8h7.8c4.9,0,8.3,0.9,10.2,2.6c1.9,1.7,2.4,4.5,1.7,8.3l-3.7,18.9h-8.9l3.5-17.9
|
||||
c0.4-2,0.3-3.4-0.4-4.2c-0.7-0.7-2.2-1.1-4.4-1.1h-7l-4.5,23.2h-8.8L44.7,0.1L44.7,0.1z"/>
|
||||
<path class="st105" d="M90.5,17.3c3.4,0,5.6,0.6,6.7,1.9c1.1,1.2,1.4,3.4,0.8,6.4c-0.6,3.1-1.8,5.4-3.5,6.7c-1.7,1.3-4.4,2-8,2
|
||||
h-5.4l3.3-17H90.5L90.5,17.3z M69,51.5h8.8l2.1-10.8h7.6c3.3,0,6.1-0.4,8.2-1.1c2.2-0.7,4.1-1.9,5.9-3.5c1.5-1.4,2.7-2.9,3.6-4.5
|
||||
c0.9-1.6,1.6-3.5,2-5.4c0.9-4.8,0.2-8.6-2.1-11.2c-2.3-2.7-6.1-4-11.2-4h-17L69,51.5L69,51.5z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 6.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 698.7 170" style="enable-background:new 0 0 698.7 170" xml:space="preserve"><style>.st0{fill:#646464}</style><switch><g><path class="st0" d="M263.4 86.3c0-21.4-6.1-32.4-18.3-33-4.9-.2-9.6.5-14.2 2.3-3.7 1.3-6.2 2.6-7.5 3.9v51.1c7.8 4.9 14.8 7.2 20.8 6.8 12.8-.7 19.2-11.1 19.2-31.1zm15.1.9c0 10.9-2.6 19.9-7.7 27.1-5.7 8.1-13.7 12.3-23.8 12.5-7.6.3-15.5-2.2-23.6-7.2v46.5l-13.1-4.7V58.3c2.2-2.6 4.9-4.9 8.3-6.8 7.8-4.5 17.3-6.9 28.4-7l.2.2c10.2-.1 18.1 4.1 23.6 12.5 5.1 7.8 7.7 17.8 7.7 30zm80.1 30.5c0 14.6-1.5 24.7-4.4 30.3-2.9 5.6-8.5 10.1-16.8 13.5-6.7 2.6-13.9 4.1-21.7 4.3l-2.2-8.3c7.9-1.1 13.5-2.2 16.7-3.2 6.4-2.2 10.7-5.5 13.1-9.9 1.9-3.6 2.9-10.5 2.9-20.6v-3.4c-8.8 4-18.5 6.1-28.2 6.1-6.2.1-12.3-2.1-17.1-6.1-5.5-4.4-8.3-10.1-8.3-16.9V49l13.1-4.5v54.9c0 5.9 1.9 10.4 5.7 13.6 3.8 3.2 8.7 4.7 14.7 4.6 6-.1 12.5-2.5 19.3-7v-64h13.1l.1 71.1zm51.2 8.5-4.3.2c-7.4 0-13.2-1.8-17.3-5.3-4.1-3.5-6.2-8.5-6.2-14.7V54.8h-9v-8.2h9v-22l13.1-4.7v26.6h14.7v8.2h-14.7V106c0 4.9 1.3 8.4 4 10.4 2.3 1.7 5.9 2.6 10.8 2.9v6.9h-.1zm79.4-1.1h-13.1V74.5c0-5.2-1.2-9.6-3.6-13.3-2.8-4.2-6.6-6.3-11.5-6.3-6 0-13.5 3.2-22.5 9.5V125h-13.1V4.1l13-4.1v55.1c8.4-6.1 17.5-9.2 27.5-9.2 6.9 0 12.6 2.3 16.9 7 4.3 4.7 6.5 10.5 6.5 17.4l-.1 54.8zm69.7-40.8c0-8.2-1.6-15-4.7-20.4-3.7-6.6-9.5-10-17.2-10.4-14.4.8-21.5 11.1-21.5 30.8 0 9.1 1.5 16.6 4.5 22.7 3.8 7.7 9.6 11.5 17.3 11.4 14.3-.1 21.6-11.5 21.6-34.1zm14.3.1c0 11.7-3 21.5-9 29.3-6.6 8.7-15.7 13.1-27.3 13.1-11.5 0-20.5-4.4-26.9-13.1-5.9-7.8-8.8-17.5-8.8-29.3 0-11 3.2-20.3 9.5-27.8 6.7-8 15.5-12 26.4-12s19.8 4 26.6 12c6.3 7.5 9.5 16.7 9.5 27.8zm75.2 40.7h-13.1V71.6c0-5.9-1.8-10.4-5.3-13.7-3.5-3.3-8.2-4.9-14.1-4.7-6.2.1-12.1 2.2-17.7 6.1v65.9H585V57.6c7.5-5.5 14.5-9.1 20.8-10.8 6-1.6 11.3-2.3 15.8-2.3 3.1 0 6 .3 8.8.9 5.2 1.2 9.3 3.4 12.6 6.6 3.6 3.6 5.4 7.9 5.4 12.9v60.2z"/><linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="-4.0606" y1="161.7169" x2="86.181" y2="83.3256" gradientTransform="matrix(1 0 0 -1 0 171)"><stop offset="0" style="stop-color:#5a9fd4"/><stop offset="1" style="stop-color:#306998"/></linearGradient><path d="M80.8 4.6c-6.7 0-13.2.6-18.9 1.6-16.7 2.9-19.7 9.1-19.7 20.5v15h39.5v5H27.4c-11.5 0-21.5 6.9-24.6 20-3.6 15-3.8 24.4 0 40.1 2.8 11.7 9.5 20 21 20h13.6v-18c0-13 11.3-24.5 24.6-24.5h39.4c11 0 19.7-9 19.7-20V26.7c0-10.7-9-18.7-19.7-20.5-6.8-1.1-13.7-1.6-20.6-1.6zM59.5 16.7c4.1 0 7.4 3.4 7.4 7.5s-3.3 7.5-7.4 7.5c-4.1 0-7.4-3.4-7.4-7.5s3.3-7.5 7.4-7.5z" style="fill:url(#SVGID_1_)"/><linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="121.2259" y1="35.6712" x2="88.9992" y2="81.705" gradientTransform="matrix(1 0 0 -1 0 171)"><stop offset="0" style="stop-color:#ffd43b"/><stop offset="1" style="stop-color:#ffe873"/></linearGradient><path d="M126 46.8v17.5c0 13.6-11.5 25-24.6 25H62c-10.8 0-19.7 9.2-19.7 20v37.6c0 10.7 9.3 17 19.7 20 12.5 3.7 24.5 4.3 39.4 0 9.9-2.9 19.7-8.7 19.7-20v-15H81.7v-5h59.1c11.5 0 15.7-8 19.7-20 4.1-12.4 3.9-24.2 0-40.1-2.8-11.4-8.2-20-19.7-20H126zm-22.1 95.1c4.1 0 7.4 3.4 7.4 7.5 0 4.2-3.3 7.5-7.4 7.5-4.1 0-7.4-3.4-7.4-7.5-.1-4.1 3.3-7.5 7.4-7.5z" style="fill:url(#SVGID_2_)"/><path class="st0" d="M673.9 34.8h2.3V20.4h5.4v-1.7h-13.2v1.7h5.4l.1 14.4m9.8 0h2V21.6l4.3 13.2h2.2l4.4-13.1v13.1h2.1V18.7h-2.8L691 32.5l-4.1-13.8h-3.2v16.1"/></g></switch></svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 10 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 190.88 239.22"><defs><style>.cls-1{fill:#00d8ff;}</style></defs><title>react-js-logo</title><g id="Layer_2" data-name="Layer 2"><g id="design"><circle class="cls-1" cx="95.44" cy="84.85" r="16.91"/><path class="cls-1" d="M95.44,124.41c-23.79,0-44.64-2.82-60.28-8.14C13.47,108.84,0,96.81,0,84.85,0,73.34,12.47,62.11,33.37,54.8c17-5.91,39-9.16,62.07-9.16,22.6,0,44.35,3.19,61.23,9,21.42,7.4,34.21,18.7,34.21,30.24,0,12-13.94,24-36.39,31.46C138.77,121.53,117.79,124.41,95.44,124.41Zm0-69.05c-21.67,0-43.13,3.14-58.87,8.62C18.13,70.43,9.72,79.33,9.72,84.85c0,6.18,9.82,15.79,28.58,22.21,14.64,5,34.4,7.62,57.14,7.62,21.34,0,41.23-2.7,56-7.6,20.42-6.75,29.71-16.25,29.71-22.23,0-5.54-8.65-14.48-27.65-21C137.62,58.36,117,55.36,95.44,55.36Z"/><path class="cls-1" d="M57.09,170a18.72,18.72,0,0,1-9.48-2.34c-10-5.75-13.5-22.18-9.36-43.93,3.36-17.62,11.55-38.34,23.06-58.35h0c11.35-19.65,25-36.89,38.41-48.56C116.82,1.91,133-3.5,143,2.25c10.36,6,13.84,24.09,9.1,47.23-3.35,16.27-11.35,35.88-22.52,55.22C117.66,125.32,104.8,142,92.38,152.85,79.68,164,67,170,57.09,170ZM69.74,70.21C58.91,89,50.92,109.18,47.8,125.51c-3.65,19.19-.14,30.92,4.66,33.68,5.36,3.1,18.6-.62,33.52-13.67,11.62-10.18,23.78-26,35.17-45.69,10.66-18.46,18.27-37,21.41-52.32,4.31-21,.72-33.86-4.44-36.85-4.79-2.76-16.86.27-32,13.45-12.62,11-25.54,27.35-36.37,46.09Z"/><path class="cls-1" d="M133.8,170c-9.39,0-21.21-5.6-33.45-16.14-13.55-11.66-27.4-29.09-39-49.08h0C50,85.15,41.88,64.73,38.46,47.25c-4.34-22.24-1-39,9-44.76,10.39-6,27.8,0,45.45,15.7,12.42,11,25.41,27.74,36.59,47.08,12,20.68,20,40.14,23.13,56.27,4.45,22.49.78,40.18-9.59,46.14A18.32,18.32,0,0,1,133.8,170Zm-64-70.1c10.9,18.8,24.36,35.78,36.93,46.59,14.78,12.74,26.72,15.56,31.52,12.77,5.35-3.08,8.75-16.38,4.9-35.83-3-15.09-10.57-33.52-22-53.28-10.66-18.47-23-34.33-34.63-44.68C71.15,11.82,57.72,7.83,52.37,10.91,47.57,13.69,44.16,25.67,48,45.39c3.22,16.44,11,35.8,21.77,54.51Z"/><path class="cls-1" d="M55,238.43,43.62,221.55c5.8-.53,10.81-4.75,10.81-12.13,0-7.65-5.54-12.66-12.92-12.66H24.9v41.66h5.27V221.81h8.17L48.9,238.43ZM41,217.59H30.17V201.77H41c5,0,8.17,3.16,8.17,7.91s-3.43,7.91-8.17,7.91Zm33.23,21.62q7.52,0,11.87-4.75l-2.37-3.16A13.18,13.18,0,0,1,74.47,235c-6.59,0-10.55-4.75-10.81-10.55H88.19v-1.32c0-9-5.27-16.09-14.5-16.09-8.7,0-14.77,7.12-14.77,15.82,0,10,6.33,16.35,15.29,16.35Zm9.49-17.67H63.93c.26-4.75,3.43-10,9.76-10A9.81,9.81,0,0,1,83.7,221.55Zm35.6,16.88V217.86c0-7.38-5.27-10.28-11.6-10.28a15.93,15.93,0,0,0-12.13,5l2.11,3.16a11.73,11.73,0,0,1,9.23-4.22c4.48,0,7.65,2.37,7.65,6.33v5.54c-2.37-2.9-5.8-4.22-10-4.22-5,0-10.55,3.16-10.55,10,0,6.59,5.54,10,10.55,10a13,13,0,0,0,10-4.22v3.43Zm-12.92-2.37c-4.48,0-7.38-2.64-7.38-6.59s3.16-6.59,7.38-6.59c3.43,0,6.59,1.32,8.17,3.69v5.8c-1.58,2.37-5,3.69-8.17,3.69Zm35.6,3.16a13.24,13.24,0,0,0,11.08-5.27l-3.16-2.9a9.27,9.27,0,0,1-7.65,4c-6.33,0-10.28-5-10.28-11.6s4-11.6,10.28-11.6a8.93,8.93,0,0,1,7.65,4l3.16-2.9A13.24,13.24,0,0,0,142,207.57c-9,0-15,6.86-15,15.82s6.06,15.82,15,15.82Zm25.31,0a7.69,7.69,0,0,0,5.54-1.85l-1.32-3.43a4,4,0,0,1-3.16,1.32c-2.11,0-3.16-1.58-3.16-4V212.58h6.07v-4.22h-6.07v-8.17h-4.75v8.17h-5v4.22h5v19.78c0,4.48,2.37,6.86,6.86,6.86Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 140.69 132.33"><defs><style>.cls-1{fill:#3498db;}</style></defs><title>xamarin-logo-vertical</title><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><g id="Page-1"><g id="xamarin-logo"><path id="Logo" class="cls-1" d="M16.71,131.82l-5.35-10.27L5.89,131.82H0l8.34-13.25L.83,105.4h6l4.87,10,5.28-10h5.46L14.7,118.49l7.84,13.33Zm19.08,0v-2.88h-.08a6.93,6.93,0,0,1-6.17,3.39,6.78,6.78,0,0,1-4.85-1.67,6,6,0,0,1-1.77-4.53q0-6.08,6.82-6.91l6.09-.84q0-4.26-4-4.26A11.42,11.42,0,0,0,25,116.44v-4.16A13.07,13.07,0,0,1,28.34,111a16.32,16.32,0,0,1,4-.57q8.06,0,8.06,8.16v13.24H35.79Zm-4.46-9.56a5.46,5.46,0,0,0-3,1,3,3,0,0,0-.83,2.35,2.72,2.72,0,0,0,1,2.14,3.73,3.73,0,0,0,2.5.82,4.55,4.55,0,0,0,3.46-1.45,5.06,5.06,0,0,0,1.36-3.61v-1.88l-4.5.59Zm39.13,9.56V120a8.06,8.06,0,0,0-.92-4.32,3.5,3.5,0,0,0-3.22-1.43A3.76,3.76,0,0,0,63.21,116a6.66,6.66,0,0,0-1.26,4.1v11.73h-4.7v-12.2q0-5.34-4.09-5.34A3.82,3.82,0,0,0,50,115.89a6.77,6.77,0,0,0-1.22,4.2v11.73h-4.7V110.94h4.7v3.22h.08a7.26,7.26,0,0,1,6.6-3.73,6.28,6.28,0,0,1,3.67,1.1,5.72,5.72,0,0,1,2.26,3,7.64,7.64,0,0,1,7-4.1q6.8,0,6.8,8.48v12.91Zm20.36,0v-2.88h-.08a6.93,6.93,0,0,1-6.17,3.39,6.78,6.78,0,0,1-4.85-1.67A6,6,0,0,1,78,126.13q0-6.08,6.82-6.91l6.09-.84q0-4.26-4-4.26A11.42,11.42,0,0,0,80,116.44v-4.16A13.07,13.07,0,0,1,83.37,111a16.32,16.32,0,0,1,4-.57q8.06,0,8.06,8.16v13.24H90.82Zm-4.46-9.56a5.46,5.46,0,0,0-3,1,3,3,0,0,0-.83,2.35,2.72,2.72,0,0,0,1,2.14,3.73,3.73,0,0,0,2.5.82,4.55,4.55,0,0,0,3.46-1.45,5.06,5.06,0,0,0,1.36-3.61v-1.88l-4.5.59Zm24.86-6.73a5.1,5.1,0,0,0-2.73-.71,3.94,3.94,0,0,0-3.32,1.75,7.64,7.64,0,0,0-1.26,4.57v10.69h-4.7V110.94h4.7V115H104q1.51-4.43,5.34-4.43a4.9,4.9,0,0,1,1.89.29v4.67Zm4.68-9.26a2.88,2.88,0,0,1-2-.78,2.57,2.57,0,0,1-.83-1.94,2.62,2.62,0,0,1,.83-2,3,3,0,0,1,4.09,0,2.69,2.69,0,0,1,0,3.9A2.91,2.91,0,0,1,115.91,106.27Zm-2.4,25.55V110.94h4.7v20.88Zm22.48,0V120.09q0-5.81-4.17-5.81a4.52,4.52,0,0,0-3.52,1.61,5.9,5.9,0,0,0-1.41,4.06v11.87h-4.7V110.94h4.7v3.34H127a7.38,7.38,0,0,1,6.76-3.85q7,0,7,8.57v12.83H136Z"/></g></g><path class="cls-1" d="M120.32,41.53,98.75,4a8.09,8.09,0,0,0-6.84-4H48.78a8.09,8.09,0,0,0-6.84,4L20.37,41.53a8.19,8.19,0,0,0,0,7.93L41.94,87a8.09,8.09,0,0,0,6.84,4H91.92a8.09,8.09,0,0,0,6.84-4l21.57-37.57A8.19,8.19,0,0,0,120.32,41.53ZM91.34,69H83.9a1,1,0,0,1-.84-.51L70.47,46a1,1,0,0,1-.12-.36,1,1,0,0,1-.12.36L57.6,68.51a1,1,0,0,1-.81.51H49.35a1,1,0,0,1-.84-1.45L60.83,45.5,48.51,23.4A1,1,0,0,1,49.17,22h7.62a1,1,0,0,1,.81.48L70.23,45a1,1,0,0,1,.12.36,1,1,0,0,1,.12-.36L83.06,22.46A1,1,0,0,1,83.9,22h7.44a1,1,0,0,1,.84,1.42L79.87,45.5,92.19,67.57A1,1,0,0,1,91.34,69Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1,4 @@
|
||||
// Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
|
||||
// for details on configuring this project to bundle and minify static web assets.
|
||||
|
||||
// Write your JavaScript code.
|
||||
@@ -0,0 +1,22 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2011-2021 Twitter, Inc.
|
||||
Copyright (c) 2011-2021 The Bootstrap Authors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
@@ -0,0 +1,597 @@
|
||||
/*!
|
||||
* Bootstrap Reboot v5.3.3 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2024 The Bootstrap Authors
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
*/
|
||||
:root,
|
||||
[data-bs-theme=light] {
|
||||
--bs-blue: #0d6efd;
|
||||
--bs-indigo: #6610f2;
|
||||
--bs-purple: #6f42c1;
|
||||
--bs-pink: #d63384;
|
||||
--bs-red: #dc3545;
|
||||
--bs-orange: #fd7e14;
|
||||
--bs-yellow: #ffc107;
|
||||
--bs-green: #198754;
|
||||
--bs-teal: #20c997;
|
||||
--bs-cyan: #0dcaf0;
|
||||
--bs-black: #000;
|
||||
--bs-white: #fff;
|
||||
--bs-gray: #6c757d;
|
||||
--bs-gray-dark: #343a40;
|
||||
--bs-gray-100: #f8f9fa;
|
||||
--bs-gray-200: #e9ecef;
|
||||
--bs-gray-300: #dee2e6;
|
||||
--bs-gray-400: #ced4da;
|
||||
--bs-gray-500: #adb5bd;
|
||||
--bs-gray-600: #6c757d;
|
||||
--bs-gray-700: #495057;
|
||||
--bs-gray-800: #343a40;
|
||||
--bs-gray-900: #212529;
|
||||
--bs-primary: #0d6efd;
|
||||
--bs-secondary: #6c757d;
|
||||
--bs-success: #198754;
|
||||
--bs-info: #0dcaf0;
|
||||
--bs-warning: #ffc107;
|
||||
--bs-danger: #dc3545;
|
||||
--bs-light: #f8f9fa;
|
||||
--bs-dark: #212529;
|
||||
--bs-primary-rgb: 13, 110, 253;
|
||||
--bs-secondary-rgb: 108, 117, 125;
|
||||
--bs-success-rgb: 25, 135, 84;
|
||||
--bs-info-rgb: 13, 202, 240;
|
||||
--bs-warning-rgb: 255, 193, 7;
|
||||
--bs-danger-rgb: 220, 53, 69;
|
||||
--bs-light-rgb: 248, 249, 250;
|
||||
--bs-dark-rgb: 33, 37, 41;
|
||||
--bs-primary-text-emphasis: #052c65;
|
||||
--bs-secondary-text-emphasis: #2b2f32;
|
||||
--bs-success-text-emphasis: #0a3622;
|
||||
--bs-info-text-emphasis: #055160;
|
||||
--bs-warning-text-emphasis: #664d03;
|
||||
--bs-danger-text-emphasis: #58151c;
|
||||
--bs-light-text-emphasis: #495057;
|
||||
--bs-dark-text-emphasis: #495057;
|
||||
--bs-primary-bg-subtle: #cfe2ff;
|
||||
--bs-secondary-bg-subtle: #e2e3e5;
|
||||
--bs-success-bg-subtle: #d1e7dd;
|
||||
--bs-info-bg-subtle: #cff4fc;
|
||||
--bs-warning-bg-subtle: #fff3cd;
|
||||
--bs-danger-bg-subtle: #f8d7da;
|
||||
--bs-light-bg-subtle: #fcfcfd;
|
||||
--bs-dark-bg-subtle: #ced4da;
|
||||
--bs-primary-border-subtle: #9ec5fe;
|
||||
--bs-secondary-border-subtle: #c4c8cb;
|
||||
--bs-success-border-subtle: #a3cfbb;
|
||||
--bs-info-border-subtle: #9eeaf9;
|
||||
--bs-warning-border-subtle: #ffe69c;
|
||||
--bs-danger-border-subtle: #f1aeb5;
|
||||
--bs-light-border-subtle: #e9ecef;
|
||||
--bs-dark-border-subtle: #adb5bd;
|
||||
--bs-white-rgb: 255, 255, 255;
|
||||
--bs-black-rgb: 0, 0, 0;
|
||||
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
||||
--bs-body-font-family: var(--bs-font-sans-serif);
|
||||
--bs-body-font-size: 1rem;
|
||||
--bs-body-font-weight: 400;
|
||||
--bs-body-line-height: 1.5;
|
||||
--bs-body-color: #212529;
|
||||
--bs-body-color-rgb: 33, 37, 41;
|
||||
--bs-body-bg: #fff;
|
||||
--bs-body-bg-rgb: 255, 255, 255;
|
||||
--bs-emphasis-color: #000;
|
||||
--bs-emphasis-color-rgb: 0, 0, 0;
|
||||
--bs-secondary-color: rgba(33, 37, 41, 0.75);
|
||||
--bs-secondary-color-rgb: 33, 37, 41;
|
||||
--bs-secondary-bg: #e9ecef;
|
||||
--bs-secondary-bg-rgb: 233, 236, 239;
|
||||
--bs-tertiary-color: rgba(33, 37, 41, 0.5);
|
||||
--bs-tertiary-color-rgb: 33, 37, 41;
|
||||
--bs-tertiary-bg: #f8f9fa;
|
||||
--bs-tertiary-bg-rgb: 248, 249, 250;
|
||||
--bs-heading-color: inherit;
|
||||
--bs-link-color: #0d6efd;
|
||||
--bs-link-color-rgb: 13, 110, 253;
|
||||
--bs-link-decoration: underline;
|
||||
--bs-link-hover-color: #0a58ca;
|
||||
--bs-link-hover-color-rgb: 10, 88, 202;
|
||||
--bs-code-color: #d63384;
|
||||
--bs-highlight-color: #212529;
|
||||
--bs-highlight-bg: #fff3cd;
|
||||
--bs-border-width: 1px;
|
||||
--bs-border-style: solid;
|
||||
--bs-border-color: #dee2e6;
|
||||
--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
|
||||
--bs-border-radius: 0.375rem;
|
||||
--bs-border-radius-sm: 0.25rem;
|
||||
--bs-border-radius-lg: 0.5rem;
|
||||
--bs-border-radius-xl: 1rem;
|
||||
--bs-border-radius-xxl: 2rem;
|
||||
--bs-border-radius-2xl: var(--bs-border-radius-xxl);
|
||||
--bs-border-radius-pill: 50rem;
|
||||
--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
||||
--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
||||
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
|
||||
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
||||
--bs-focus-ring-width: 0.25rem;
|
||||
--bs-focus-ring-opacity: 0.25;
|
||||
--bs-focus-ring-color: rgba(13, 110, 253, 0.25);
|
||||
--bs-form-valid-color: #198754;
|
||||
--bs-form-valid-border-color: #198754;
|
||||
--bs-form-invalid-color: #dc3545;
|
||||
--bs-form-invalid-border-color: #dc3545;
|
||||
}
|
||||
|
||||
[data-bs-theme=dark] {
|
||||
color-scheme: dark;
|
||||
--bs-body-color: #dee2e6;
|
||||
--bs-body-color-rgb: 222, 226, 230;
|
||||
--bs-body-bg: #212529;
|
||||
--bs-body-bg-rgb: 33, 37, 41;
|
||||
--bs-emphasis-color: #fff;
|
||||
--bs-emphasis-color-rgb: 255, 255, 255;
|
||||
--bs-secondary-color: rgba(222, 226, 230, 0.75);
|
||||
--bs-secondary-color-rgb: 222, 226, 230;
|
||||
--bs-secondary-bg: #343a40;
|
||||
--bs-secondary-bg-rgb: 52, 58, 64;
|
||||
--bs-tertiary-color: rgba(222, 226, 230, 0.5);
|
||||
--bs-tertiary-color-rgb: 222, 226, 230;
|
||||
--bs-tertiary-bg: #2b3035;
|
||||
--bs-tertiary-bg-rgb: 43, 48, 53;
|
||||
--bs-primary-text-emphasis: #6ea8fe;
|
||||
--bs-secondary-text-emphasis: #a7acb1;
|
||||
--bs-success-text-emphasis: #75b798;
|
||||
--bs-info-text-emphasis: #6edff6;
|
||||
--bs-warning-text-emphasis: #ffda6a;
|
||||
--bs-danger-text-emphasis: #ea868f;
|
||||
--bs-light-text-emphasis: #f8f9fa;
|
||||
--bs-dark-text-emphasis: #dee2e6;
|
||||
--bs-primary-bg-subtle: #031633;
|
||||
--bs-secondary-bg-subtle: #161719;
|
||||
--bs-success-bg-subtle: #051b11;
|
||||
--bs-info-bg-subtle: #032830;
|
||||
--bs-warning-bg-subtle: #332701;
|
||||
--bs-danger-bg-subtle: #2c0b0e;
|
||||
--bs-light-bg-subtle: #343a40;
|
||||
--bs-dark-bg-subtle: #1a1d20;
|
||||
--bs-primary-border-subtle: #084298;
|
||||
--bs-secondary-border-subtle: #41464b;
|
||||
--bs-success-border-subtle: #0f5132;
|
||||
--bs-info-border-subtle: #087990;
|
||||
--bs-warning-border-subtle: #997404;
|
||||
--bs-danger-border-subtle: #842029;
|
||||
--bs-light-border-subtle: #495057;
|
||||
--bs-dark-border-subtle: #343a40;
|
||||
--bs-heading-color: inherit;
|
||||
--bs-link-color: #6ea8fe;
|
||||
--bs-link-hover-color: #8bb9fe;
|
||||
--bs-link-color-rgb: 110, 168, 254;
|
||||
--bs-link-hover-color-rgb: 139, 185, 254;
|
||||
--bs-code-color: #e685b5;
|
||||
--bs-highlight-color: #dee2e6;
|
||||
--bs-highlight-bg: #664d03;
|
||||
--bs-border-color: #495057;
|
||||
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
|
||||
--bs-form-valid-color: #75b798;
|
||||
--bs-form-valid-border-color: #75b798;
|
||||
--bs-form-invalid-color: #ea868f;
|
||||
--bs-form-invalid-border-color: #ea868f;
|
||||
}
|
||||
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
:root {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: var(--bs-body-font-family);
|
||||
font-size: var(--bs-body-font-size);
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
color: var(--bs-body-color);
|
||||
text-align: var(--bs-body-text-align);
|
||||
background-color: var(--bs-body-bg);
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
hr {
|
||||
margin: 1rem 0;
|
||||
color: inherit;
|
||||
border: 0;
|
||||
border-top: var(--bs-border-width) solid;
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
h6, h5, h4, h3, h2, h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 500;
|
||||
line-height: 1.2;
|
||||
color: var(--bs-heading-color);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: calc(1.375rem + 1.5vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: calc(1.325rem + 0.9vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: calc(1.3rem + 0.6vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h3 {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h4 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
abbr[title] {
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
-webkit-text-decoration-skip-ink: none;
|
||||
text-decoration-skip-ink: none;
|
||||
}
|
||||
|
||||
address {
|
||||
margin-bottom: 1rem;
|
||||
font-style: normal;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
padding-left: 2rem;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul,
|
||||
dl {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
ol ol,
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-bottom: 0.5rem;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 0.875em;
|
||||
}
|
||||
|
||||
mark {
|
||||
padding: 0.1875em;
|
||||
color: var(--bs-highlight-color);
|
||||
background-color: var(--bs-highlight-bg);
|
||||
}
|
||||
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
font-size: 0.75em;
|
||||
line-height: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
|
||||
text-decoration: underline;
|
||||
}
|
||||
a:hover {
|
||||
--bs-link-color-rgb: var(--bs-link-hover-color-rgb);
|
||||
}
|
||||
|
||||
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: var(--bs-font-monospace);
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
pre {
|
||||
display: block;
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto;
|
||||
font-size: 0.875em;
|
||||
}
|
||||
pre code {
|
||||
font-size: inherit;
|
||||
color: inherit;
|
||||
word-break: normal;
|
||||
}
|
||||
|
||||
code {
|
||||
font-size: 0.875em;
|
||||
color: var(--bs-code-color);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
a > code {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
kbd {
|
||||
padding: 0.1875rem 0.375rem;
|
||||
font-size: 0.875em;
|
||||
color: var(--bs-body-bg);
|
||||
background-color: var(--bs-body-color);
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
kbd kbd {
|
||||
padding: 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
img,
|
||||
svg {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
table {
|
||||
caption-side: bottom;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
caption {
|
||||
padding-top: 0.5rem;
|
||||
padding-bottom: 0.5rem;
|
||||
color: var(--bs-secondary-color);
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: inherit;
|
||||
text-align: -webkit-match-parent;
|
||||
}
|
||||
|
||||
thead,
|
||||
tbody,
|
||||
tfoot,
|
||||
tr,
|
||||
td,
|
||||
th {
|
||||
border-color: inherit;
|
||||
border-style: solid;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button:focus:not(:focus-visible) {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
optgroup,
|
||||
textarea {
|
||||
margin: 0;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
[role=button] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
select {
|
||||
word-wrap: normal;
|
||||
}
|
||||
select:disabled {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
button,
|
||||
[type=button],
|
||||
[type=reset],
|
||||
[type=submit] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
button:not(:disabled),
|
||||
[type=button]:not(:disabled),
|
||||
[type=reset]:not(:disabled),
|
||||
[type=submit]:not(:disabled) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
legend {
|
||||
float: left;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
line-height: inherit;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
legend {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
legend + * {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
::-webkit-datetime-edit-fields-wrapper,
|
||||
::-webkit-datetime-edit-text,
|
||||
::-webkit-datetime-edit-minute,
|
||||
::-webkit-datetime-edit-hour-field,
|
||||
::-webkit-datetime-edit-day-field,
|
||||
::-webkit-datetime-edit-month-field,
|
||||
::-webkit-datetime-edit-year-field {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-inner-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
[type=search] {
|
||||
-webkit-appearance: textfield;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
|
||||
/* rtl:raw:
|
||||
[type="tel"],
|
||||
[type="url"],
|
||||
[type="email"],
|
||||
[type="number"] {
|
||||
direction: ltr;
|
||||
}
|
||||
*/
|
||||
::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
::-webkit-color-swatch-wrapper {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
::file-selector-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
output {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=bootstrap-reboot.css.map */
|
||||
@@ -0,0 +1,594 @@
|
||||
/*!
|
||||
* Bootstrap Reboot v5.3.3 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2024 The Bootstrap Authors
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
*/
|
||||
:root,
|
||||
[data-bs-theme=light] {
|
||||
--bs-blue: #0d6efd;
|
||||
--bs-indigo: #6610f2;
|
||||
--bs-purple: #6f42c1;
|
||||
--bs-pink: #d63384;
|
||||
--bs-red: #dc3545;
|
||||
--bs-orange: #fd7e14;
|
||||
--bs-yellow: #ffc107;
|
||||
--bs-green: #198754;
|
||||
--bs-teal: #20c997;
|
||||
--bs-cyan: #0dcaf0;
|
||||
--bs-black: #000;
|
||||
--bs-white: #fff;
|
||||
--bs-gray: #6c757d;
|
||||
--bs-gray-dark: #343a40;
|
||||
--bs-gray-100: #f8f9fa;
|
||||
--bs-gray-200: #e9ecef;
|
||||
--bs-gray-300: #dee2e6;
|
||||
--bs-gray-400: #ced4da;
|
||||
--bs-gray-500: #adb5bd;
|
||||
--bs-gray-600: #6c757d;
|
||||
--bs-gray-700: #495057;
|
||||
--bs-gray-800: #343a40;
|
||||
--bs-gray-900: #212529;
|
||||
--bs-primary: #0d6efd;
|
||||
--bs-secondary: #6c757d;
|
||||
--bs-success: #198754;
|
||||
--bs-info: #0dcaf0;
|
||||
--bs-warning: #ffc107;
|
||||
--bs-danger: #dc3545;
|
||||
--bs-light: #f8f9fa;
|
||||
--bs-dark: #212529;
|
||||
--bs-primary-rgb: 13, 110, 253;
|
||||
--bs-secondary-rgb: 108, 117, 125;
|
||||
--bs-success-rgb: 25, 135, 84;
|
||||
--bs-info-rgb: 13, 202, 240;
|
||||
--bs-warning-rgb: 255, 193, 7;
|
||||
--bs-danger-rgb: 220, 53, 69;
|
||||
--bs-light-rgb: 248, 249, 250;
|
||||
--bs-dark-rgb: 33, 37, 41;
|
||||
--bs-primary-text-emphasis: #052c65;
|
||||
--bs-secondary-text-emphasis: #2b2f32;
|
||||
--bs-success-text-emphasis: #0a3622;
|
||||
--bs-info-text-emphasis: #055160;
|
||||
--bs-warning-text-emphasis: #664d03;
|
||||
--bs-danger-text-emphasis: #58151c;
|
||||
--bs-light-text-emphasis: #495057;
|
||||
--bs-dark-text-emphasis: #495057;
|
||||
--bs-primary-bg-subtle: #cfe2ff;
|
||||
--bs-secondary-bg-subtle: #e2e3e5;
|
||||
--bs-success-bg-subtle: #d1e7dd;
|
||||
--bs-info-bg-subtle: #cff4fc;
|
||||
--bs-warning-bg-subtle: #fff3cd;
|
||||
--bs-danger-bg-subtle: #f8d7da;
|
||||
--bs-light-bg-subtle: #fcfcfd;
|
||||
--bs-dark-bg-subtle: #ced4da;
|
||||
--bs-primary-border-subtle: #9ec5fe;
|
||||
--bs-secondary-border-subtle: #c4c8cb;
|
||||
--bs-success-border-subtle: #a3cfbb;
|
||||
--bs-info-border-subtle: #9eeaf9;
|
||||
--bs-warning-border-subtle: #ffe69c;
|
||||
--bs-danger-border-subtle: #f1aeb5;
|
||||
--bs-light-border-subtle: #e9ecef;
|
||||
--bs-dark-border-subtle: #adb5bd;
|
||||
--bs-white-rgb: 255, 255, 255;
|
||||
--bs-black-rgb: 0, 0, 0;
|
||||
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||||
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
|
||||
--bs-body-font-family: var(--bs-font-sans-serif);
|
||||
--bs-body-font-size: 1rem;
|
||||
--bs-body-font-weight: 400;
|
||||
--bs-body-line-height: 1.5;
|
||||
--bs-body-color: #212529;
|
||||
--bs-body-color-rgb: 33, 37, 41;
|
||||
--bs-body-bg: #fff;
|
||||
--bs-body-bg-rgb: 255, 255, 255;
|
||||
--bs-emphasis-color: #000;
|
||||
--bs-emphasis-color-rgb: 0, 0, 0;
|
||||
--bs-secondary-color: rgba(33, 37, 41, 0.75);
|
||||
--bs-secondary-color-rgb: 33, 37, 41;
|
||||
--bs-secondary-bg: #e9ecef;
|
||||
--bs-secondary-bg-rgb: 233, 236, 239;
|
||||
--bs-tertiary-color: rgba(33, 37, 41, 0.5);
|
||||
--bs-tertiary-color-rgb: 33, 37, 41;
|
||||
--bs-tertiary-bg: #f8f9fa;
|
||||
--bs-tertiary-bg-rgb: 248, 249, 250;
|
||||
--bs-heading-color: inherit;
|
||||
--bs-link-color: #0d6efd;
|
||||
--bs-link-color-rgb: 13, 110, 253;
|
||||
--bs-link-decoration: underline;
|
||||
--bs-link-hover-color: #0a58ca;
|
||||
--bs-link-hover-color-rgb: 10, 88, 202;
|
||||
--bs-code-color: #d63384;
|
||||
--bs-highlight-color: #212529;
|
||||
--bs-highlight-bg: #fff3cd;
|
||||
--bs-border-width: 1px;
|
||||
--bs-border-style: solid;
|
||||
--bs-border-color: #dee2e6;
|
||||
--bs-border-color-translucent: rgba(0, 0, 0, 0.175);
|
||||
--bs-border-radius: 0.375rem;
|
||||
--bs-border-radius-sm: 0.25rem;
|
||||
--bs-border-radius-lg: 0.5rem;
|
||||
--bs-border-radius-xl: 1rem;
|
||||
--bs-border-radius-xxl: 2rem;
|
||||
--bs-border-radius-2xl: var(--bs-border-radius-xxl);
|
||||
--bs-border-radius-pill: 50rem;
|
||||
--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
||||
--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
||||
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
|
||||
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
|
||||
--bs-focus-ring-width: 0.25rem;
|
||||
--bs-focus-ring-opacity: 0.25;
|
||||
--bs-focus-ring-color: rgba(13, 110, 253, 0.25);
|
||||
--bs-form-valid-color: #198754;
|
||||
--bs-form-valid-border-color: #198754;
|
||||
--bs-form-invalid-color: #dc3545;
|
||||
--bs-form-invalid-border-color: #dc3545;
|
||||
}
|
||||
|
||||
[data-bs-theme=dark] {
|
||||
color-scheme: dark;
|
||||
--bs-body-color: #dee2e6;
|
||||
--bs-body-color-rgb: 222, 226, 230;
|
||||
--bs-body-bg: #212529;
|
||||
--bs-body-bg-rgb: 33, 37, 41;
|
||||
--bs-emphasis-color: #fff;
|
||||
--bs-emphasis-color-rgb: 255, 255, 255;
|
||||
--bs-secondary-color: rgba(222, 226, 230, 0.75);
|
||||
--bs-secondary-color-rgb: 222, 226, 230;
|
||||
--bs-secondary-bg: #343a40;
|
||||
--bs-secondary-bg-rgb: 52, 58, 64;
|
||||
--bs-tertiary-color: rgba(222, 226, 230, 0.5);
|
||||
--bs-tertiary-color-rgb: 222, 226, 230;
|
||||
--bs-tertiary-bg: #2b3035;
|
||||
--bs-tertiary-bg-rgb: 43, 48, 53;
|
||||
--bs-primary-text-emphasis: #6ea8fe;
|
||||
--bs-secondary-text-emphasis: #a7acb1;
|
||||
--bs-success-text-emphasis: #75b798;
|
||||
--bs-info-text-emphasis: #6edff6;
|
||||
--bs-warning-text-emphasis: #ffda6a;
|
||||
--bs-danger-text-emphasis: #ea868f;
|
||||
--bs-light-text-emphasis: #f8f9fa;
|
||||
--bs-dark-text-emphasis: #dee2e6;
|
||||
--bs-primary-bg-subtle: #031633;
|
||||
--bs-secondary-bg-subtle: #161719;
|
||||
--bs-success-bg-subtle: #051b11;
|
||||
--bs-info-bg-subtle: #032830;
|
||||
--bs-warning-bg-subtle: #332701;
|
||||
--bs-danger-bg-subtle: #2c0b0e;
|
||||
--bs-light-bg-subtle: #343a40;
|
||||
--bs-dark-bg-subtle: #1a1d20;
|
||||
--bs-primary-border-subtle: #084298;
|
||||
--bs-secondary-border-subtle: #41464b;
|
||||
--bs-success-border-subtle: #0f5132;
|
||||
--bs-info-border-subtle: #087990;
|
||||
--bs-warning-border-subtle: #997404;
|
||||
--bs-danger-border-subtle: #842029;
|
||||
--bs-light-border-subtle: #495057;
|
||||
--bs-dark-border-subtle: #343a40;
|
||||
--bs-heading-color: inherit;
|
||||
--bs-link-color: #6ea8fe;
|
||||
--bs-link-hover-color: #8bb9fe;
|
||||
--bs-link-color-rgb: 110, 168, 254;
|
||||
--bs-link-hover-color-rgb: 139, 185, 254;
|
||||
--bs-code-color: #e685b5;
|
||||
--bs-highlight-color: #dee2e6;
|
||||
--bs-highlight-bg: #664d03;
|
||||
--bs-border-color: #495057;
|
||||
--bs-border-color-translucent: rgba(255, 255, 255, 0.15);
|
||||
--bs-form-valid-color: #75b798;
|
||||
--bs-form-valid-border-color: #75b798;
|
||||
--bs-form-invalid-color: #ea868f;
|
||||
--bs-form-invalid-border-color: #ea868f;
|
||||
}
|
||||
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: no-preference) {
|
||||
:root {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: var(--bs-body-font-family);
|
||||
font-size: var(--bs-body-font-size);
|
||||
font-weight: var(--bs-body-font-weight);
|
||||
line-height: var(--bs-body-line-height);
|
||||
color: var(--bs-body-color);
|
||||
text-align: var(--bs-body-text-align);
|
||||
background-color: var(--bs-body-bg);
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
hr {
|
||||
margin: 1rem 0;
|
||||
color: inherit;
|
||||
border: 0;
|
||||
border-top: var(--bs-border-width) solid;
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
h6, h5, h4, h3, h2, h1 {
|
||||
margin-top: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 500;
|
||||
line-height: 1.2;
|
||||
color: var(--bs-heading-color);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: calc(1.375rem + 1.5vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: calc(1.325rem + 0.9vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: calc(1.3rem + 0.6vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h3 {
|
||||
font-size: 1.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
h4 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
abbr[title] {
|
||||
-webkit-text-decoration: underline dotted;
|
||||
text-decoration: underline dotted;
|
||||
cursor: help;
|
||||
-webkit-text-decoration-skip-ink: none;
|
||||
text-decoration-skip-ink: none;
|
||||
}
|
||||
|
||||
address {
|
||||
margin-bottom: 1rem;
|
||||
font-style: normal;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul {
|
||||
padding-right: 2rem;
|
||||
}
|
||||
|
||||
ol,
|
||||
ul,
|
||||
dl {
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
ol ol,
|
||||
ul ul,
|
||||
ol ul,
|
||||
ul ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin-bottom: 0.5rem;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bolder;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 0.875em;
|
||||
}
|
||||
|
||||
mark {
|
||||
padding: 0.1875em;
|
||||
color: var(--bs-highlight-color);
|
||||
background-color: var(--bs-highlight-bg);
|
||||
}
|
||||
|
||||
sub,
|
||||
sup {
|
||||
position: relative;
|
||||
font-size: 0.75em;
|
||||
line-height: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
|
||||
text-decoration: underline;
|
||||
}
|
||||
a:hover {
|
||||
--bs-link-color-rgb: var(--bs-link-hover-color-rgb);
|
||||
}
|
||||
|
||||
a:not([href]):not([class]), a:not([href]):not([class]):hover {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
pre,
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: var(--bs-font-monospace);
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
pre {
|
||||
display: block;
|
||||
margin-top: 0;
|
||||
margin-bottom: 1rem;
|
||||
overflow: auto;
|
||||
font-size: 0.875em;
|
||||
}
|
||||
pre code {
|
||||
font-size: inherit;
|
||||
color: inherit;
|
||||
word-break: normal;
|
||||
}
|
||||
|
||||
code {
|
||||
font-size: 0.875em;
|
||||
color: var(--bs-code-color);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
a > code {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
kbd {
|
||||
padding: 0.1875rem 0.375rem;
|
||||
font-size: 0.875em;
|
||||
color: var(--bs-body-bg);
|
||||
background-color: var(--bs-body-color);
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
kbd kbd {
|
||||
padding: 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0 0 1rem;
|
||||
}
|
||||
|
||||
img,
|
||||
svg {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
table {
|
||||
caption-side: bottom;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
caption {
|
||||
padding-top: 0.5rem;
|
||||
padding-bottom: 0.5rem;
|
||||
color: var(--bs-secondary-color);
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: inherit;
|
||||
text-align: -webkit-match-parent;
|
||||
}
|
||||
|
||||
thead,
|
||||
tbody,
|
||||
tfoot,
|
||||
tr,
|
||||
td,
|
||||
th {
|
||||
border-color: inherit;
|
||||
border-style: solid;
|
||||
border-width: 0;
|
||||
}
|
||||
|
||||
label {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button:focus:not(:focus-visible) {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
input,
|
||||
button,
|
||||
select,
|
||||
optgroup,
|
||||
textarea {
|
||||
margin: 0;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
[role=button] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
select {
|
||||
word-wrap: normal;
|
||||
}
|
||||
select:disabled {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
button,
|
||||
[type=button],
|
||||
[type=reset],
|
||||
[type=submit] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
button:not(:disabled),
|
||||
[type=button]:not(:disabled),
|
||||
[type=reset]:not(:disabled),
|
||||
[type=submit]:not(:disabled) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
legend {
|
||||
float: right;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin-bottom: 0.5rem;
|
||||
font-size: calc(1.275rem + 0.3vw);
|
||||
line-height: inherit;
|
||||
}
|
||||
@media (min-width: 1200px) {
|
||||
legend {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
legend + * {
|
||||
clear: right;
|
||||
}
|
||||
|
||||
::-webkit-datetime-edit-fields-wrapper,
|
||||
::-webkit-datetime-edit-text,
|
||||
::-webkit-datetime-edit-minute,
|
||||
::-webkit-datetime-edit-hour-field,
|
||||
::-webkit-datetime-edit-day-field,
|
||||
::-webkit-datetime-edit-month-field,
|
||||
::-webkit-datetime-edit-year-field {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-inner-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
[type=search] {
|
||||
-webkit-appearance: textfield;
|
||||
outline-offset: -2px;
|
||||
}
|
||||
|
||||
[type="tel"],
|
||||
[type="url"],
|
||||
[type="email"],
|
||||
[type="number"] {
|
||||
direction: ltr;
|
||||
}
|
||||
::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
::-webkit-color-swatch-wrapper {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
::file-selector-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
output {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
/*# sourceMappingURL=bootstrap-reboot.rtl.css.map */
|
||||