10 Commits

206 changed files with 5272 additions and 9578 deletions

133
.gitignore vendored Normal file
View File

@@ -0,0 +1,133 @@
# Logs
logs
*.log
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# TypeScript v1 declaration files
typings/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# parcel-bundler cache (https://parceljs.org/)
.cache
# next.js build output
.next
# nuxt.js build output
.nuxt
# Nuxt generate
dist
# vuepress build output
.vuepress/dist
# Serverless directories
.serverless
# IDE
.idea
.vscode
config.js
/yarn-error.log
package-lock.json
jsconfig.json
# GP | Files ext
*.sql
*.tgz
*.tar.gz
*.tar
*.rar
*.zip
*.wav
*.flv
*.db
*.psd
*.pdf
*.doc
*.docx
*.txt
*.text
*.log
*.config
*.xml
*.tbk
*.csv
*.json
# GP | Dirs & files
/bower_components/
/node_modules/
/nbproject/
/cache/
.cache/
/phpMyAdmin-*
/timthumb_cache/
/webstat/
/.idea/
/.csscomb.json
/.htaccess
/sitemap*.xml
/sftp-config.json
/robots.txt
/bower.json
/.bowerrc
/backup_rsync/
.bash_history
.idea/
.fleet/
.DS_Store
.config/
.bash*
.vim*
test*.php
gp-test*.php

14
.htaccess Normal file
View File

@@ -0,0 +1,14 @@
<IfModule mod_rewrite.c>
# Редирект: ...// -> .../
RewriteCond %{REQUEST_URI} (.*)\/\/$
RewriteRule ^(.*)$ https://%{HTTP_HOST}/%1/ [R=301,L]
# Редирект: с www -> без www
RewriteCond %{HTTP_HOST} ^www\.(.*)$
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]
# Редирект: HTTP -> HTTPS
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>

55
README.md Normal file
View File

@@ -0,0 +1,55 @@
## **Требования к верстке**
### **С точки зрения веб-разработки:**
* верстаем на чистом HTML/CSS с использованием flex и grid (без подключение библиотек типа bootstrap и т.п.)
* при именовании блоков используем методологию **БЭМ в стиле "Two Dashes"**:
`block-name__elem-name--mod-name--mod-val`
+ имена записываются латиницей в нижнем регистре
+ для разделения слов в именах БЭМ-сущностей используется дефис (-)
+ имя элемента отделяется от имени блока двумя подчеркиваниями (__)
+ модификаторы отделяются от имения блока или элемента двумя дефисами (--)
+ значение модификатора отделяется от его имени двумя дефисами (--)
* из конечного HTML-файла убрать все комментарии, если такие имеются
* все медиазапросы пишутся в отдельных файлах (которые мы подготовили) для того чтобы оптимизировать скорость загрузки; если используется препроцессор, то не нужно в классе каждого блока использовать импорты медиа запросов, а наоборот выносим пример можно посмотреть на ["видео"](https://www.youtube.com/watch?v=9uaENbRyVT4)
* **частая ошибка:** верстальщик берет изображения/видео из макета и не задает им адаптивную ширину/высоту, и на моменте сдачи верстки не заметно косяков, а вот когда мы переходим к натяжке и медиаматериалы начинают выводиться в шаблон динамически и уже разных форматов (ШИРИНАxВЫСОТА), тогда верстка начинает плыть. Чтоб такое избежать проверяйте на как себя ведет элемент при замене слишком большой/маленькой картинки.
* **ВАЖНО:** если верстка делается для многостраничного сайта (особенно на CMS), то для всех страниц прописывать уникальный класс в \<body\>, от которого строить все CSS-правила на этой странице + для кажой станицы использовать свои отдельные CSS-файлы
### **С точки зрения SEO:**
* все теги использовать строго по назначению! Текстовые (strong, b, i, em, h1-h6… p) используем только в текстовых блоках и заголовках. Для дизайна используем div и span. Например не нужно втыкать в подвал, шапку или формы захвата h4 или закрывать просто крупный текст, который не является заголовком в h2.
* на странице должен быть только один заголовок первого уровня (h1)
* должны присутствовать все основные теги и атрибуты — html, head, body, title, description, lang=ru, content=html, charset=utf8
* для кнопок, нажатие на которые не требует редиректа используем тег \<button\>, а не \<a\>
* для \<img\> самостоятельно проставляем атрибут alt="", со значением описывающим того что изображено на картинке
## **Порядок работы**
### **Подготовка окружения для локальной разработки**
1. Выкачивать локально на свой компьютер один из 2х шаблонов (по веткам: 1 - master, 2 - with-phpmailer) командой: `git clone -b ${branch_name} https://git.good-production.xyz/Good-Production/template-for-verstka.git`
заменить переменную:
`${branch_name}` -- на "master", если достаточно только отправки форм в ТГ, либо "with-phpmailer", если нужна отправка на почту средствами PHP (без использования плагинов CMS)
2. Далее создать свою ветку командой: `git checkout -b ${project_name}--${name}`
3. Приступить к локальной разработке в созданной ветке
4. Для демонстрации работы пушить свои комиты в созданную ветку командой: `git push origin ${project_name}--${name}`
- во время push для авторизации понадобиться логин/пароль: `freelancer/freelancerfreelancer00`
5. Отписать в чат, чтоб руководитель проектом посмотрел результат и выкачал его на тестовый стенд
в командах заменить переменные:
`${project_name}` -- условное названия проекта (как варинат использовать домен сайта)
`${name}` -- имя/ник исполнителя
## **Оптимальный порядок непосредственно в процессе верстки**
1. Сначала определить CSS-переменные для основных цветов/градиентов, начертаний шрифтов (толщина, размер, модификация, межтрочный интервал) и занести в специально подгтовленный CSS-файл `style-core.css`
2. Все шрифты выкачать и сохранить локально в директорию `/assets/fonts/` и подключить их в файле `style-core.css`
3. Далее начинать стоит с верстки UI kit (должен быть предоставлен в макете дизайнером), для того чтобы переиспользовать готовые элементы по ходу верстки макетов. Стили для UI kit писать так же в файл `style-core.css`.
Саму HTML-верстку для UI kit делать в файле `ui_kit.html`
3. Как UI kit будет готов, можно смело переходить к верстке основных листов макета "*.html" и просто использовать готовые классы из `style-core.css`
### **Примечания**
Для работы с Figma рекомендуем использовать плагин ["Inspect Styles"](https://www.figma.com/community/plugin/1254262542670221199) для инспевтирования CSS-свойсв.

View File

@@ -1,264 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/font/stylesheet.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>Document</title>
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="cont">
<div class="header_block">
<a href="#" class="header_logo">
<img src="assets/img/icons/logo.svg" alt="">
</a>
<div class="header_navs">
<a href="#" class="header_nav">Главная</a>
<a href="#" class="header_nav">продукция</a>
<a href="#" class="header_nav">О cosmopet</a>
<a href="#" class="header_nav">Блог</a>
<a href="#" class="header_link" id="auth"><img src="assets/img/icons/i-user.svg" alt=""></a>
<a href="#" class="header_link"><img src="assets/img/icons/i-card.svg" alt=""></a>
</div>
<button class="header_bars"><img src="assets/img/icons/bars2.svg" alt=""></button>
</div>
</div>
<div class="header_mob">
<button class="header_close"><img src="assets/img/icons/i-close.svg" alt=""></button>
<div class="header_navs">
<a href="#" class="header_nav">Главная</a>
<a href="#" class="header_nav">продукция</a>
<a href="#" class="header_nav">О cosmopet</a>
<a href="#" class="header_nav">Блог</a>
<div class="header_links">
<a href="#" class="header_link" id="auth"><img src="assets/img/icons/i-user.svg" alt=""></a>
<a href="#" class="header_link"><img src="assets/img/icons/i-card.svg" alt=""></a>
</div>
</div>
</div>
<div class="header_mob-bg"></div>
</header>
<section class="account">
<div class="cont">
<a href="#" class="back_link">
<svg xmlns="http://www.w3.org/2000/svg" width="10" height="15" viewBox="0 0 10 15" fill="none">
<path d="M9 1L2 7.5L9 14" stroke="#121212" stroke-width="2"/>
</svg>
вернуться
</a>
<h1 class="section_title">личный кабинет</h1>
<p class="section_desc">Добро пожаловать, Сироб, здесь вы можете управлять своим профилем, редактировать информацию о питомцах, проверять статус по заказам и подписке</p>
<div class="account_row">
<div class="for_border">
<a href="#" class="account_item account_item_big flex-column">
<img src="assets/img/account1.png" alt="">
<div>
<div class="account_item_title">Профиль</div>
<p>Посмотреть или изменить ваш профиль</p>
</div>
</a>
</div>
<div class="account_right">
<a href="#" class="account_item bg_black">
<img src="assets/img/animal_image3.png" alt="" class="animal_image">
<div class="account_texts">
<div class="account_item_title">Питомцы</div>
<p>Создать профили ваших питомцев</p>
</div>
</a>
<a href="#" class="account_item">
<img src="assets/img/account2.png" alt="">
<div class="account_texts">
<div class="account_item_title">Заказы</div>
<p>Проверить дату заказа или просмотреть их историю</p>
</div>
</a>
</div>
<a href="#" class="account_item bg_black">
<img src="assets/img/account3.png" alt="">
<div class="account_texts">
<div class="account_item_title">Подписка на корм</div>
<p>скоро</p>
</div>
</a>
<div class="for_border">
<a href="#" class="account_item">
<img src="assets/img/account4.png" alt="">
<div class="account_texts">
<div class="account_item_title">FAQ</div>
<p>У вас есть вопросы? Возможно, здесь уже есть ответ</p>
</div>
</a>
</div>
</div>
</div>
</section>
<footer class="footer footer2">
<div class="cont">
<div class="footer_block">
<div class="footer_menu">
<a href="#" class="footer_logo"><img src="assets/img/icons/logo2.svg" alt=""></a>
<div class="footer_navs">
<a href="#" class="footer_nav">Главная</a>
<a href="#" class="footer_nav">продукция</a>
<a href="#" class="footer_nav">О cosmopet</a>
<a href="#" class="footer_nav">Блог</a>
<a href="#" class="footer_link"><img src="assets/img/icons/i-user2.svg" alt=""></a>
<a href="#" class="footer_link"><img src="assets/img/icons/i-card2.svg" alt=""></a>
</div>
</div>
<div class="footer_box">
<h2 class="footer_box-title">Отзывы и предложения <img src="assets/img/icons/footer_line-mob.svg" alt="" class="footer_line-mob1"></h2>
<img src="assets/img/icons/footer_line2.svg" alt="" class="footer_box-line1">
<a href="#" class="footer_box-link">pro@cosmopet.shop</a>
</div>
<div class="footer_box">
<h2 class="footer_box-title">связь с ветеринаром <img src="assets/img/icons/footer_line-mob2.svg" alt="" class="footer_line-mob2"></h2>
<img src="assets/img/icons/footer_line2.svg" alt="" class="footer_box-line2">
<a href="#" class="footer_box-link">vetvopros@cosmopet.shop</a>
</div>
<div class="footer_form">
<div class="footer_form-info">
<div class="footer_form-title">
<h2>Обратная связь</h2>
<img src="assets/img/icons/footer_line2.svg" alt="">
</div>
<div class="footer_form-inp">
<input type="text" placeholder="ваше имя">
<input type="email" placeholder="почта">
</div>
</div>
<div class="footer_form-textarea">
<textarea placeholder="обращение"></textarea>
<button class="footer_form-btn btn--black-hover">отправить</button>
</div>
</div>
<div class="footer_social">
<a href="#" class="footer_social-link"><img src="assets/img/icons/i-vk2.svg" alt=""></a>
<a href="#" class="footer_social-link"><img src="assets/img/icons/i-tg2.svg" alt=""></a>
<a href="#" class="footer_social-link"><img src="assets/img/icons/i-yandex2.svg" alt=""></a>
</div>
<div class="footer_bottom">
<a href="#">123182 г. Москва, 4-й Красногорский пр., д. 2/4, стр. 1, этаж/ком. 3/1</a>
<a href="#">Соглашение о конфиденциальности</a>
</div>
</div>
</div>
</footer>
<div class="modal auth_modal auth1">
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
<div class="d-flex flex-column align-items-center gap-15">
<a href="#" class="main_btn login_btn">Вход</a>
<a href="#" class="main_btn register_btn">Регистрация</a>
</div>
</div>
<form class="modal auth_modal auth2">
<div class="modal_top">
<a href="#" class="back_btn">
<img src="assets/img/icons/i-back.svg" alt="">
</a>
<div class="modal_title">Регистрация</div>
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
</div>
<div class="modal_inputs">
<label>
<input type="text" class="input" placeholder="Имя">
<p>error</p>
</label>
<label>
<input type="tel" class="input" placeholder="Телефон">
<p>error</p>
</label>
<label>
<input type="email" class="input" placeholder="Email">
<p>error</p>
</label>
<label>
<input type="password" class="input error" placeholder="Пароль">
<p>Пароль не должен содержать знаков !”№@#-</p>
</label>
<label>
<div class="checkmark"></div>
<input type="checkbox">
<p class="opacity_txt">Согласие на получение рекламных предложений</p>
</label>
<button class="main_btn">Регистрация</button>
<p class="conditions">Нажимая на кнопку регистрации вы даёте согласие на обработку персональных данных</p>
</div>
</form>
<form class="modal auth_modal auth3">
<div class="modal_top">
<a href="#" class="back_btn">
<img src="assets/img/icons/i-back.svg" alt="">
</a>
<div class="modal_title">Регистрация</div>
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
</div>
<div class="modal_inputs">
<label>
<input type="password" class="input" placeholder="Код">
<p>Пароль не должен содержать знаков !”№@#-</p>
</label>
<p class="conditions">Нажимая на кнопку регистрации вы даёте согласие на обработку персональных данных</p>
<button class="main_btn">Регистрация</button>
</div>
</form>
<form class="modal auth_modal auth4">
<div class="modal_top">
<a href="#" class="back_btn">
<img src="assets/img/icons/i-back.svg" alt="">
</a>
<div class="modal_title">Вход</div>
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
</div>
<div class="modal_inputs">
<label>
<input type="text" class="input" placeholder="Телефон или Email">
<p>error</p>
</label>
<label>
<input type="password" class="input" placeholder="Код">
<p>Пароль не должен содержать знаков !”№@#-</p>
</label>
<a href="#" class="conditions">Забыли пароль? </a>
<button class="main_btn">Вход</button>
</div>
</form>
<form class="modal auth_modal auth5">
<div class="modal_top">
<a href="#" class="back_btn">
<img src="assets/img/icons/i-back.svg" alt="">
</a>
<div class="modal_title">Вход</div>
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
</div>
<div class="modal_inputs">
<label>
<input type="password" class="input" placeholder="Код">
<p>Пароль не должен содержать знаков !”№@#-</p>
</label>
<p class="conditions">Нажимая на кнопку регистрации вы даёте согласие на обработку персональных данных</p>
<button class="main_btn">Вход</button>
</div>
</form>
<div class="modal_back"></div>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>

View File

@@ -1,241 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/font/stylesheet.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>Document</title>
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="cont">
<div class="header_block">
<a href="#" class="header_logo">
<img src="assets/img/icons/logo.svg" alt="">
</a>
<div class="header_navs">
<a href="#" class="header_nav">Главная</a>
<a href="#" class="header_nav">продукция</a>
<a href="#" class="header_nav">О cosmopet</a>
<a href="#" class="header_nav">Блог</a>
<a href="#" class="header_link" id="auth"><img src="assets/img/icons/i-user.svg" alt=""></a>
<a href="#" class="header_link"><img src="assets/img/icons/i-card.svg" alt=""></a>
</div>
<button class="header_bars"><img src="assets/img/icons/bars2.svg" alt=""></button>
</div>
</div>
<div class="header_mob">
<button class="header_close"><img src="assets/img/icons/i-close.svg" alt=""></button>
<div class="header_navs">
<a href="#" class="header_nav">Главная</a>
<a href="#" class="header_nav">продукция</a>
<a href="#" class="header_nav">О cosmopet</a>
<a href="#" class="header_nav">Блог</a>
<div class="header_links">
<a href="#" class="header_link" id="auth"><img src="assets/img/icons/i-user.svg" alt=""></a>
<a href="#" class="header_link"><img src="assets/img/icons/i-card.svg" alt=""></a>
</div>
</div>
</div>
<div class="header_mob-bg"></div>
</header>
<section class="adress">
<div class="cont" method="post">
<a href="#" class="back_link">
<svg xmlns="http://www.w3.org/2000/svg" width="10" height="15" viewBox="0 0 10 15" fill="none">
<path d="M9 1L2 7.5L9 14" stroke="#121212" stroke-width="2"/>
</svg>
вернуться
</a>
<div class="section_title d-flex align-items-center justify-content-between">
<h1>ПУНКТ ВЫДАЧи</h1>
<a href="#" class="back_link">
<svg xmlns="http://www.w3.org/2000/svg" width="29" height="29" viewBox="0 0 29 29" fill="none">
<circle cx="14.5" cy="14.5" r="14" transform="rotate(-180 14.5 14.5)" stroke="#121212"/>
<path d="M17.1133 22.8965L8.78499 14.7387L17.1133 6.58082" stroke="#121212"/>
</svg>
</a>
</div>
<form class="adress_row">
<div class="adress_left">
<input type="text" class="input" placeholder="Найти по адресу">
<div class="place_title">ПОСТАМАТ <br> Москва, Матвеевская улица, 36к1</div>
</div>
<div class="adress_right">
<button class="main_btn">ПРИВЕЗТИ СЮДА</button>
<p>Доставка завтра, бесплатно</p>
</div>
</form>
<div class="map_wrap">
<iframe src="https://yandex.ru/map-widget/v1/?um=constructor%3A4cb895299bc13a65693266ba045d74f4b2c4c50badfabae1f023be32128bbd1e&amp;source=constructor" width="1000" height="572" frameborder="0"></iframe>
</div>
</div>
</section>
<footer class="footer footer2">
<div class="cont">
<div class="footer_block">
<div class="footer_menu">
<a href="#" class="footer_logo"><img src="assets/img/icons/logo2.svg" alt=""></a>
<div class="footer_navs">
<a href="#" class="footer_nav">Главная</a>
<a href="#" class="footer_nav">продукция</a>
<a href="#" class="footer_nav">О cosmopet</a>
<a href="#" class="footer_nav">Блог</a>
<a href="#" class="footer_link"><img src="assets/img/icons/i-user2.svg" alt=""></a>
<a href="#" class="footer_link"><img src="assets/img/icons/i-card2.svg" alt=""></a>
</div>
</div>
<div class="footer_box">
<h2 class="footer_box-title">Отзывы и предложения <img src="assets/img/icons/footer_line-mob.svg" alt="" class="footer_line-mob1"></h2>
<img src="assets/img/icons/footer_line2.svg" alt="" class="footer_box-line1">
<a href="#" class="footer_box-link">pro@cosmopet.shop</a>
</div>
<div class="footer_box">
<h2 class="footer_box-title">связь с ветеринаром <img src="assets/img/icons/footer_line-mob2.svg" alt="" class="footer_line-mob2"></h2>
<img src="assets/img/icons/footer_line2.svg" alt="" class="footer_box-line2">
<a href="#" class="footer_box-link">vetvopros@cosmopet.shop</a>
</div>
<div class="footer_form">
<div class="footer_form-info">
<div class="footer_form-title">
<h2>Обратная связь</h2>
<img src="assets/img/icons/footer_line2.svg" alt="">
</div>
<div class="footer_form-inp">
<input type="text" placeholder="ваше имя">
<input type="email" placeholder="почта">
</div>
</div>
<div class="footer_form-textarea">
<textarea placeholder="обращение"></textarea>
<button class="footer_form-btn btn--black-hover">отправить</button>
</div>
</div>
<div class="footer_social">
<a href="#" class="footer_social-link"><img src="assets/img/icons/i-vk2.svg" alt=""></a>
<a href="#" class="footer_social-link"><img src="assets/img/icons/i-tg2.svg" alt=""></a>
<a href="#" class="footer_social-link"><img src="assets/img/icons/i-yandex2.svg" alt=""></a>
</div>
<div class="footer_bottom">
<a href="#">123182 г. Москва, 4-й Красногорский пр., д. 2/4, стр. 1, этаж/ком. 3/1</a>
<a href="#">Соглашение о конфиденциальности</a>
</div>
</div>
</div>
</footer>
<div class="modal auth_modal auth1">
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
<div class="d-flex flex-column align-items-center gap-15">
<a href="#" class="main_btn login_btn">Вход</a>
<a href="#" class="main_btn register_btn">Регистрация</a>
</div>
</div>
<form class="modal auth_modal auth2">
<div class="modal_top">
<a href="#" class="back_btn">
<img src="assets/img/icons/i-back.svg" alt="">
</a>
<div class="modal_title">Регистрация</div>
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
</div>
<div class="modal_inputs">
<label>
<input type="text" class="input" placeholder="Имя">
<p>error</p>
</label>
<label>
<input type="tel" class="input" placeholder="Телефон">
<p>error</p>
</label>
<label>
<input type="email" class="input" placeholder="Email">
<p>error</p>
</label>
<label>
<input type="password" class="input error" placeholder="Пароль">
<p>Пароль не должен содержать знаков !”№@#-</p>
</label>
<label>
<div class="checkmark"></div>
<input type="checkbox">
<p class="opacity_txt">Согласие на получение рекламных предложений</p>
</label>
<button class="main_btn">Регистрация</button>
<p class="conditions">Нажимая на кнопку регистрации вы даёте согласие на обработку персональных данных</p>
</div>
</form>
<form class="modal auth_modal auth3">
<div class="modal_top">
<a href="#" class="back_btn">
<img src="assets/img/icons/i-back.svg" alt="">
</a>
<div class="modal_title">Регистрация</div>
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
</div>
<div class="modal_inputs">
<label>
<input type="password" class="input" placeholder="Код">
<p>Пароль не должен содержать знаков !”№@#-</p>
</label>
<p class="conditions">Нажимая на кнопку регистрации вы даёте согласие на обработку персональных данных</p>
<button class="main_btn">Регистрация</button>
</div>
</form>
<form class="modal auth_modal auth4">
<div class="modal_top">
<a href="#" class="back_btn">
<img src="assets/img/icons/i-back.svg" alt="">
</a>
<div class="modal_title">Вход</div>
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
</div>
<div class="modal_inputs">
<label>
<input type="text" class="input" placeholder="Телефон или Email">
<p>error</p>
</label>
<label>
<input type="password" class="input" placeholder="Код">
<p>Пароль не должен содержать знаков !”№@#-</p>
</label>
<a href="#" class="conditions">Забыли пароль? </a>
<button class="main_btn">Вход</button>
</div>
</form>
<form class="modal auth_modal auth5">
<div class="modal_top">
<a href="#" class="back_btn">
<img src="assets/img/icons/i-back.svg" alt="">
</a>
<div class="modal_title">Вход</div>
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
</div>
<div class="modal_inputs">
<label>
<input type="password" class="input" placeholder="Код">
<p>Пароль не должен содержать знаков !”№@#-</p>
</label>
<p class="conditions">Нажимая на кнопку регистрации вы даёте согласие на обработку персональных данных</p>
<button class="main_btn">Вход</button>
</div>
</form>
<div class="modal_back"></div>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>

View File

@@ -1,241 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/font/stylesheet.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>Document</title>
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="cont">
<div class="header_block">
<a href="#" class="header_logo">
<img src="assets/img/icons/logo.svg" alt="">
</a>
<div class="header_navs">
<a href="#" class="header_nav">Главная</a>
<a href="#" class="header_nav">продукция</a>
<a href="#" class="header_nav">О cosmopet</a>
<a href="#" class="header_nav">Блог</a>
<a href="#" class="header_link" id="auth"><img src="assets/img/icons/i-user.svg" alt=""></a>
<a href="#" class="header_link"><img src="assets/img/icons/i-card.svg" alt=""></a>
</div>
<button class="header_bars"><img src="assets/img/icons/bars2.svg" alt=""></button>
</div>
</div>
<div class="header_mob">
<button class="header_close"><img src="assets/img/icons/i-close.svg" alt=""></button>
<div class="header_navs">
<a href="#" class="header_nav">Главная</a>
<a href="#" class="header_nav">продукция</a>
<a href="#" class="header_nav">О cosmopet</a>
<a href="#" class="header_nav">Блог</a>
<div class="header_links">
<a href="#" class="header_link" id="auth"><img src="assets/img/icons/i-user.svg" alt=""></a>
<a href="#" class="header_link"><img src="assets/img/icons/i-card.svg" alt=""></a>
</div>
</div>
</div>
<div class="header_mob-bg"></div>
</header>
<section class="adress">
<div class="cont" method="post">
<a href="#" class="back_link">
<svg xmlns="http://www.w3.org/2000/svg" width="10" height="15" viewBox="0 0 10 15" fill="none">
<path d="M9 1L2 7.5L9 14" stroke="#121212" stroke-width="2"/>
</svg>
вернуться
</a>
<div class="section_title d-flex align-items-center justify-content-between">
<h1>Адрес доставки</h1>
<a href="#" class="back_link">
<svg xmlns="http://www.w3.org/2000/svg" width="29" height="29" viewBox="0 0 29 29" fill="none">
<circle cx="14.5" cy="14.5" r="14" transform="rotate(-180 14.5 14.5)" stroke="#121212"/>
<path d="M17.1133 22.8965L8.78499 14.7387L17.1133 6.58082" stroke="#121212"/>
</svg>
</a>
</div>
<form class="adress_row">
<div class="adress_left">
<input type="text" class="input" placeholder="Введите адрес">
<div class="place_title">Москва, Матвеевская улица, 36к2, квартира 98</div>
</div>
<div class="adress_right">
<button class="main_btn">ПРИВЕЗТИ СЮДА</button>
<p>Доставка завтра, бесплатно</p>
</div>
</form>
<div class="map_wrap">
<iframe src="https://yandex.ru/map-widget/v1/?um=constructor%3A4cb895299bc13a65693266ba045d74f4b2c4c50badfabae1f023be32128bbd1e&amp;source=constructor" width="1000" height="572" frameborder="0"></iframe>
</div>
</div>
</section>
<footer class="footer footer2">
<div class="cont">
<div class="footer_block">
<div class="footer_menu">
<a href="#" class="footer_logo"><img src="assets/img/icons/logo2.svg" alt=""></a>
<div class="footer_navs">
<a href="#" class="footer_nav">Главная</a>
<a href="#" class="footer_nav">продукция</a>
<a href="#" class="footer_nav">О cosmopet</a>
<a href="#" class="footer_nav">Блог</a>
<a href="#" class="footer_link"><img src="assets/img/icons/i-user2.svg" alt=""></a>
<a href="#" class="footer_link"><img src="assets/img/icons/i-card2.svg" alt=""></a>
</div>
</div>
<div class="footer_box">
<h2 class="footer_box-title">Отзывы и предложения <img src="assets/img/icons/footer_line-mob.svg" alt="" class="footer_line-mob1"></h2>
<img src="assets/img/icons/footer_line2.svg" alt="" class="footer_box-line1">
<a href="#" class="footer_box-link">pro@cosmopet.shop</a>
</div>
<div class="footer_box">
<h2 class="footer_box-title">связь с ветеринаром <img src="assets/img/icons/footer_line-mob2.svg" alt="" class="footer_line-mob2"></h2>
<img src="assets/img/icons/footer_line2.svg" alt="" class="footer_box-line2">
<a href="#" class="footer_box-link">vetvopros@cosmopet.shop</a>
</div>
<div class="footer_form">
<div class="footer_form-info">
<div class="footer_form-title">
<h2>Обратная связь</h2>
<img src="assets/img/icons/footer_line2.svg" alt="">
</div>
<div class="footer_form-inp">
<input type="text" placeholder="ваше имя">
<input type="email" placeholder="почта">
</div>
</div>
<div class="footer_form-textarea">
<textarea placeholder="обращение"></textarea>
<button class="footer_form-btn btn--black-hover">отправить</button>
</div>
</div>
<div class="footer_social">
<a href="#" class="footer_social-link"><img src="assets/img/icons/i-vk2.svg" alt=""></a>
<a href="#" class="footer_social-link"><img src="assets/img/icons/i-tg2.svg" alt=""></a>
<a href="#" class="footer_social-link"><img src="assets/img/icons/i-yandex2.svg" alt=""></a>
</div>
<div class="footer_bottom">
<a href="#">123182 г. Москва, 4-й Красногорский пр., д. 2/4, стр. 1, этаж/ком. 3/1</a>
<a href="#">Соглашение о конфиденциальности</a>
</div>
</div>
</div>
</footer>
<div class="modal auth_modal auth1">
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
<div class="d-flex flex-column align-items-center gap-15">
<a href="#" class="main_btn login_btn">Вход</a>
<a href="#" class="main_btn register_btn">Регистрация</a>
</div>
</div>
<form class="modal auth_modal auth2">
<div class="modal_top">
<a href="#" class="back_btn">
<img src="assets/img/icons/i-back.svg" alt="">
</a>
<div class="modal_title">Регистрация</div>
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
</div>
<div class="modal_inputs">
<label>
<input type="text" class="input" placeholder="Имя">
<p>error</p>
</label>
<label>
<input type="tel" class="input" placeholder="Телефон">
<p>error</p>
</label>
<label>
<input type="email" class="input" placeholder="Email">
<p>error</p>
</label>
<label>
<input type="password" class="input error" placeholder="Пароль">
<p>Пароль не должен содержать знаков !”№@#-</p>
</label>
<label>
<div class="checkmark"></div>
<input type="checkbox">
<p class="opacity_txt">Согласие на получение рекламных предложений</p>
</label>
<button class="main_btn">Регистрация</button>
<p class="conditions">Нажимая на кнопку регистрации вы даёте согласие на обработку персональных данных</p>
</div>
</form>
<form class="modal auth_modal auth3">
<div class="modal_top">
<a href="#" class="back_btn">
<img src="assets/img/icons/i-back.svg" alt="">
</a>
<div class="modal_title">Регистрация</div>
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
</div>
<div class="modal_inputs">
<label>
<input type="password" class="input" placeholder="Код">
<p>Пароль не должен содержать знаков !”№@#-</p>
</label>
<p class="conditions">Нажимая на кнопку регистрации вы даёте согласие на обработку персональных данных</p>
<button class="main_btn">Регистрация</button>
</div>
</form>
<form class="modal auth_modal auth4">
<div class="modal_top">
<a href="#" class="back_btn">
<img src="assets/img/icons/i-back.svg" alt="">
</a>
<div class="modal_title">Вход</div>
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
</div>
<div class="modal_inputs">
<label>
<input type="text" class="input" placeholder="Телефон или Email">
<p>error</p>
</label>
<label>
<input type="password" class="input" placeholder="Код">
<p>Пароль не должен содержать знаков !”№@#-</p>
</label>
<a href="#" class="conditions">Забыли пароль? </a>
<button class="main_btn">Вход</button>
</div>
</form>
<form class="modal auth_modal auth5">
<div class="modal_top">
<a href="#" class="back_btn">
<img src="assets/img/icons/i-back.svg" alt="">
</a>
<div class="modal_title">Вход</div>
<span class="plus plus_black">
<img src="assets/img/icons/i-plus.svg" alt="">
</span>
</div>
<div class="modal_inputs">
<label>
<input type="password" class="input" placeholder="Код">
<p>Пароль не должен содержать знаков !”№@#-</p>
</label>
<p class="conditions">Нажимая на кнопку регистрации вы даёте согласие на обработку персональных данных</p>
<button class="main_btn">Вход</button>
</div>
</form>
<div class="modal_back"></div>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>

962
articles.html Normal file
View File

@@ -0,0 +1,962 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SEO title</title>
<meta name="description" content="SEO Description">
<link rel="shortcut icon" href="/assets/img/favicon.ico?v=1.0">
<!-- Link Swiper's CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<!-- Базовые стили -->
<link rel="stylesheet" href="/assets/css/gp-style-normalize.css?v=1.0">
<link rel="stylesheet" href="/assets/css/gp-style-core.css?v=1.0">
<link rel="stylesheet" href="/assets/css/gp-style-desktop.css?v=1.0">
<!-- Адаптив -->
<link rel="stylesheet" media="screen and (min-width: 1400px)" href="/assets/css/gp-style-ultra.css?v=1.0">
<link rel="stylesheet" media="screen and (max-width: 1200px)" href="/assets/css/gp-style-xl.css?v=1.0">
<link rel="stylesheet" media="screen and (max-width: 992px)" href="/assets/css/gp-style-tablet.css?v=1.0">
<link rel="stylesheet" media="screen and (max-width: 576px)" href="/assets/css/gp-style-mobile.css?v=1.0">
<!-- Яндекс.Вебмастер + Google Search Console -->
<meta name="yandex-verification" content="XXXXXXXXXXXXXXXXX" />
<meta name="google-site-verification" content="XXXXXXXXXXXXXXXXX" />
<!-- /Яндекс.Вебмастер + Google Search Console -->
<!-- Yandex.Metrika counter -->
<script type="text/javascript">
(function (m, e, t, r, i, k, a) {
m[i] = m[i] || function () { (m[i].a = m[i].a || []).push(arguments) };
m[i].l = 1 * new Date();
for (var j = 0; j < document.scripts.length; j++) { if (document.scripts[j].src === r) { return; } }
k = e.createElement(t), a = e.getElementsByTagName(t)[0], k.async = 1, k.src = r, a.parentNode.insertBefore(k, a)
})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(XXXXXX, "init", { // XXXXXX - счетчик
clickmap: true,
trackLinks: true,
accurateTrackBounce: true,
webvisor: true,
ecommerce: "dataLayer"
});
</script>
<noscript>
<div><img src="https://mc.yandex.ru/watch/85828806" style="position:absolute; left:-9999px;" alt="" /></div>
</noscript>
<!-- /Yandex.Metrika counter -->
</head>
<body>
<div class="wrapper">
<!-- Header -->
<header class="header">
<div class="container header-container">
<button class="header-bars">
<img src="./assets/img/bars.svg" alt="">
</button>
<a href="/" class="header-logo">
<img src="./assets/img/logo.svg" alt="">
<span>сosmopet</span>
</a>
<ul class="header-navs">
<li>
<a href="#" class="header-navs__link">ГЛАВНАЯ</a>
</li>
<li>
<a href="#" class="header-navs__link">О COSMOPET</a>
</li>
<li>
<a href="#" class="header-navs__link">ПРОИЗВОДСТВО</a>
</li>
<li>
<a href="#" class="header-navs__link">БЛОГ</a>
</li>
<li class="header-accordion">
<div class="header-accordion__btn">
<span>ПРОДУКЦИЯ</span>
<img src="./assets/img/arrow-down.svg" alt="">
</div>
</li>
</ul>
<div class="header-right">
<div class="header-lang">
<div class="header-lang__btn">
<span>RU</span>
<img src="./assets/img/arrow-down.svg" alt="">
</div>
</div>
<a href="#">
<img src="./assets/img/user-icon.svg" alt="">
</a>
<a href="#">
<img src="./assets/img/basket-icon.svg" alt="">
</a>
</div>
</div>
</header>
<!-- Header end -->
<main>
<!-- Breadcrumb -->
<section class="breadcrumb">
<div class="container">
<a href="#">Главная</a> /
<a href="#">Блог</a> /
<a href="#">Статья</a>
</div>
</section>
<!-- Breadcrumb end -->
<!-- Article home -->
<!--
use classes position-1, position-2
<div class="article-home position-1 position-2"></div>
-->
<section class="article-home">
<div class="container">
<h1>Сколько корма нужно именно вашей <br>собаке?</h1>
<div class="article-home__data">
<ul class="article-home__data-alerts">
<li>
<a href="#">Хештег 1</a>
</li>
<li>
<a href="#">Хештег 2</a>
</li>
</ul>
<p>21.10.24</p>
<p>время чтения: 5 минут</p>
<p>
<img src="./assets/img/heart-white.svg" alt="">
<span>22</span>
</p>
<p>
<img src="./assets/img/msg-white.svg" alt="">
<span>5</span>
</p>
<div class="user">
<img src="./assets/img/user-logo.png" alt="">
<span>Ольга М.</span>
</div>
</div>
<div class="article-home__card">
<img src="./assets/img/article-home-card.png" alt="">
</div>
</div>
</section>
<!-- Article home end -->
<!-- Article content -->
<div class="article-content">
<div class="article-container">
<!-- Discount -->
<section class="discount">
<h2 class="discount-title">Узнайте о нас больше и получите <span>скидку!</span></h2>
<img src="./assets/img/discount-bg.png" alt="" class="discount-bg">
<img src="./assets/img/discount-bg-sm.png" alt="" class="discount-bg mb">
<form action="" class="discount-form">
<input type="email" placeholder="почта">
<img src="./assets/img/long-arrow.svg" alt="">
<button type="submit">подписаться</button>
</form>
<div class="discount-descriptions">
<p class="discount-description__1">Подписываясь на рассылка, я даю согласие на обработку персональных данных, на получение рекламных сообщений и новостей о товарах и услугах</p>
<p class="discount-description__2">Подпишитесь, чтобы быть в курсе деятельности Cosmopet и узнавать о наших предложениях. Обещаем не заваливать вас бесполезными письмами. А за подписку дарим -25% на весь ассортимент нашей продукции</p>
</div>
</section>
<!-- Discount end -->
<!-- Diet -->
<section class="diet">
<p>Удобный инструмент - калькулятор, который поможет вам определить дневную дозировку корма непосредственно для вашего котика и пёсика.</p>
<a href="#">Калькулятор рациона</a>
</section>
<!-- Diet end -->
<!-- Texts -->
<section class="texts">
<h2>ЗАГОЛОВОК 2</h2>
<h3>ЗАГОЛОВОК 3</h3>
<div class="texts-description">
<p>Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large </p>
<p>
<b>Текст Body large Текст Body large</b> Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large
</p>
<p>
Текст Body large Текст Body large Текст <a href="#">Body large Текст Body large</a> Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large
</p>
</div>
<ol>
<li>
<h4>1</h4>
<p>Нумерованный список</p>
</li>
<li>
<h4>2</h4>
<p>Нумерованный список</p>
</li>
<li>
<h4>3</h4>
<p>Нумерованный список</p>
</li>
<li>
<h4>4</h4>
<p>Нумерованный список</p>
</li>
<li>
<h4>5</h4>
<p>Нумерованный список</p>
</li>
</ol>
<ul>
<li>Маркированный список</li>
<li>Маркированный список</li>
<li>Маркированный список</li>
<li>Маркированный список</li>
<li>Маркированный список</li>
</ul>
<div class="texts-swp">
<button class="texts-swp__prev">
<img src="./assets/img/swp-prev.svg" alt="">
</button>
<button class="texts-swp__next">
<img src="./assets/img/swp-next.svg" alt="">
</button>
<div class="texts-swp__pagination"></div>
<div class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="./assets/img/texts-card-1.png" alt="">
</div>
<div class="swiper-slide">
<img src="./assets/img/texts-card-2.png" alt="">
</div>
<div class="swiper-slide">
<img src="./assets/img/texts-card-3.png" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- Texts end -->
<!-- Alerts -->
<section class="alerts">
<div class="alerts-grey">
<img src="./assets/img/icon-1.svg" alt="" class="icon-1">
<p>Значимость этих проблем настолько очевидна, что рамки и место обучения кадров позволяет выполнять важные задания по разработке соответствующий условий активизации. Идейные соображения высшего порядка, а также рамки и место обучения кадров требуют определения и уточнения соответствующий условий активизации. Разнообразный и богатый опыт укрепление и развитие структуры влечет за собой процесс внедрения и модернизации форм развития.</p>
<img src="./assets/img/icon-2.svg" alt="" class="icon-2">
</div>
<div class="alerts-violet">
<img src="./assets/img/icon-3.svg" alt="" class="icon-1">
<p>Значимость этих проблем настолько очевидна, что рамки и место обучения кадров позволяет выполнять важные задания по разработке соответствующий условий активизации. Идейные соображения высшего порядка, а также рамки и место обучения кадров требуют определения и уточнения соответствующий условий активизации. Разнообразный и богатый опыт укрепление и развитие структуры влечет за собой процесс внедрения и модернизации форм развития.</p>
</div>
<div class="alerts-yellow">
<img src="./assets/img/icon-4.svg" alt="" class="icon-1">
<p>Значимость этих проблем настолько очевидна, что рамки и место обучения кадров позволяет выполнять важные задания по разработке соответствующий условий активизации. Идейные соображения высшего порядка, а также рамки и место обучения кадров требуют определения и уточнения соответствующий условий активизации. Разнообразный и богатый опыт укрепление и развитие структуры влечет за собой процесс внедрения и модернизации форм развития.</p>
</div>
<div class="alerts-green">
<img src="./assets/img/icon-5.svg" alt="" class="icon-1">
<p>Значимость этих проблем настолько очевидна, что рамки и место обучения кадров позволяет выполнять важные задания по разработке соответствующий условий активизации. Идейные соображения высшего порядка, а также рамки и место обучения кадров требуют определения и уточнения соответствующий условий активизации. Разнообразный и богатый опыт укрепление и развитие структуры влечет за собой процесс внедрения и модернизации форм развития.</p>
</div>
</section>
<!-- Alerts end -->
<!-- Article table -->
<section class="article-table__wrap">
<div class="article-table">
<div class="article-table__item">
<ul>
<li>Масса собаки, кг</li>
<li>0,8</li>
<li>0,8</li>
<li>0,8</li>
<li>0,8</li>
</ul>
<ul>
<li>ПЕ в день, ккал</li>
<li>118</li>
<li>118</li>
<li>118</li>
<li>118</li>
</ul>
</div>
<div class="article-table__item">
<ul>
<li>Масса собаки, кг</li>
<li>0,8</li>
<li>0,8</li>
<li>0,8</li>
<li>0,8</li>
</ul>
<ul>
<li>ПЕ в день, ккал</li>
<li>118</li>
<li>118</li>
<li>118</li>
<li>118</li>
</ul>
</div>
<div class="article-table__item">
<ul>
<li>Масса собаки, кг</li>
<li>0,8</li>
<li>0,8</li>
<li>0,8</li>
<li>0,8</li>
</ul>
<ul>
<li>ПЕ в день, ккал</li>
<li>118</li>
<li>118</li>
<li>118</li>
<li>118</li>
</ul>
</div>
</div>
</section>
<!-- Article table end -->
<!-- Article block -->
<section class="article-block">
<div class="article-block__head">
<div class="article-block__head-left">
<h3>ЗАГОЛОВОК 3</h3>
<p>Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large </p>
<p>Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large </p>
</div>
<div class="article-block__head-right">
<img src="./assets/img/article-block-card-1.png" alt="">
</div>
</div>
<div class="article-block__item-wrap">
<div class="article-block__item">
<div class="article-block__item-content">
<h3>ЗАГОЛОВОК H3</h3>
<p>Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large </p>
<ul>
<li>
<img src="./assets/img/plus-icon.svg" alt="">
<p>Текст Body Small Текст Body Small Текст Body Small Текст Body Small Текст Body Small</p>
</li>
<li>
<img src="./assets/img/minus-icon.svg" alt="">
<p>Текст Body Small Текст Body Small Текст Body Small Текст Body Small Текст Body Small</p>
</li>
</ul>
</div>
<div class="article-block__item-img">
<img src="./assets/img/article-block-card-2.png" alt="">
</div>
</div>
<div class="article-block__item">
<div class="article-block__item-img">
<img src="./assets/img/article-block-card-3.png" alt="">
</div>
<div class="article-block__item-content">
<p>Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large </p>
<ul>
<li>
<img src="./assets/img/plus-icon.svg" alt="">
<p>Текст Body Small Текст Body Small Текст Body Small Текст Body Small Текст Body Small</p>
</li>
<li>
<img src="./assets/img/minus-icon.svg" alt="">
<p>Текст Body Small Текст Body Small Текст Body Small Текст Body Small Текст Body Small</p>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Article block end -->
<!-- Block Accent -->
<section class="block-accent">
<div class="block-accent__card card-violet">
<img src="./assets/img/block-accent-icon-1.svg" alt="">
<div class="block-accent__card-content">
<h3>ЗАГОЛОВОК H3</h3>
<p>Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large </p>
</div>
</div>
<div class="block-accent__card card-orange">
<img src="./assets/img/block-accent-icon-2.svg" alt="">
<p>Кстати: экологически чистые картонные когтеточки можно получить в подарок при покупке корма для кошек Cosmocat в упаковках 2 кг.</p>
</div>
<div class="block-accent__card card-blue">
<img src="./assets/img/block-accent-icon-3.svg" alt="">
<div class="block-accent__card-content">
<h3>Взрослая кошка (1-7 лет)</h3>
<p>Как правило, в этом возрасте питомцу нужно просто поддерживать вес исходя из уровня его активности и особых указаний ветеринара (если они будут).</p>
</div>
</div>
</section>
<!-- Block Accent end -->
<!-- Indent -->
<section class="indent">
<h2 class="indent-title">ЗАГОЛОВОК H2 ЗАГОЛОВОК H2 ЗАГОЛОВОК H2 </h2>
<p>Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large </p>
<ul>
<li>
<img src="./assets/img/indent-icon-1.svg" alt="">
<div>
<h3>ЗАГОЛОВОК H3</h3>
<p>Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large </p>
</div>
</li>
<li>
<img src="./assets/img/indent-icon-1.svg" alt="">
<div>
<h3>ЗАГОЛОВОК H3</h3>
<p>Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large </p>
</div>
</li>
<li>
<img src="./assets/img/indent-icon-1.svg" alt="">
<div>
<h3>ЗАГОЛОВОК H3</h3>
<p>Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large </p>
</div>
</li>
</ul>
<p>Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large </p>
</section>
<!-- Indent end -->
<!-- Product card -->
<section class="product-card">
<img src="./assets/img/product-card.png" alt="">
</section>
<!-- Product card end -->
<!-- Alohida -->
<section class="block-lists">
<div class="block-list_block">
<img src="./assets/img/block-list-icon-1.svg" alt="">
<div class="block-lists_text">
<h3>
ЗАГОЛОВОК H3
</h3>
<p>
Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large
</p>
</div>
</div>
<div class="block-list_block">
<img src="./assets/img/block-list-icon-2.svg" alt="">
<div class="block-lists_text">
<p>
Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large
</p>
</div>
</div>
<div class="block-list_block">
<img src="./assets/img/block-list-icon-3.svg" alt="">
<div class="block-lists_text">
<p>
Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large
</p>
</div>
</div>
<div class="block-list_block">
<img src="./assets/img/block-list-icon-4.svg" alt="">
<div class="block-lists_text">
<p>
Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large Текст Body large
</p>
</div>
</div>
</section>
<section class="video_block">
<iframe width="339" height="602" src="https://www.youtube.com/embed/3zrGER3nNiw" title="Котята проголодались, мяукают и хотят кушать | Котенок Арнольд ворует еду" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</section>
<section class="comment">
<div class="comment-btn">
<button>
<svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.7859 4.66406C14.7135 4.66406 13.3546 6.89752 13.0591 8.01424C12.8425 6.89752 11.5348 4.66406 8.03702 4.66406C3.66481 4.66406 1.71504 10.267 5.55549 15.0612C8.62786 18.8966 11.8381 20.3945 13.0591 20.6641C14.4181 20.4138 17.8686 18.8619 20.7991 14.6568C24.4623 9.40052 21.6263 4.66406 17.7859 4.66406Z" fill="#121212"/>
</svg>
Нравится
</button>
<span>
22
</span>
</div>
<div class="comment-in">
<h3 class="comment-title">
КОММЕНТАРИИ (5)
</h3>
<div class="comment-block">
<p class="comment-block_text">
<a href="#">Войдите</a>, чтобы оставлять комментарии
</p>
</div>
<div class="comment-block_wrapper">
<div class="comment-block">
<div class="comment-user">
<img src="./assets/img/user_img.png" alt="">
<div class="comment-user_text">
<h6>
Ольга М.
</h6>
<span>
15 января 2025
</span>
</div>
</div>
<p>
Лучший обзор на когтеточки!
</p>
<div class="comment-btns">
<button>
<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.5 3H3.25C2.00736 3 1 4.00736 1 5.25V5.25C1 6.49264 2.00736 7.5 3.25 7.5H3.5" stroke="#666666"/>
<path d="M7 0.5L9.5 3L7 5.5" stroke="#666666"/>
</svg>
Ответить
</button>
<button>
<svg width="15" height="13" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.7745 1C8.67239 1 7.7426 2.5355 7.54047 3.30325C7.39224 2.5355 6.49748 1 4.10427 1C1.11276 1 -0.221288 4.85199 2.40639 8.14801C4.50853 10.7848 6.705 11.8147 7.54047 12C8.47026 11.8279 10.8311 10.761 12.8363 7.87004C15.3427 4.25632 13.4022 1 10.7745 1Z" stroke="#666666"/>
</svg>
2
</button>
</div>
</div>
<button class="answer-btn">
<svg width="15" height="10" viewBox="0 0 15 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 1.41406L7.5 7.91406L1 1.41406" stroke="#76CE75" stroke-width="2"/>
</svg>
1 <span>
ответ
</span>
</button>
</div>
<div class="comment-block answer-block active">
<div class="comment-user">
<img src="./assets/img/user_img2.png" alt="">
<div class="comment-user_text">
<h6>
Дед
</h6>
<span>
15 января 2025
</span>
</div>
</div>
<p>
Помню в 1937 году когтеточки были лучше
</p>
<div class="comment-btns">
<button>
<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.5 3H3.25C2.00736 3 1 4.00736 1 5.25V5.25C1 6.49264 2.00736 7.5 3.25 7.5H3.5" stroke="#666666"/>
<path d="M7 0.5L9.5 3L7 5.5" stroke="#666666"/>
</svg>
Ответить
</button>
<button>
<svg width="15" height="13" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.7745 1C8.67239 1 7.7426 2.5355 7.54047 3.30325C7.39224 2.5355 6.49748 1 4.10427 1C1.11276 1 -0.221288 4.85199 2.40639 8.14801C4.50853 10.7848 6.705 11.8147 7.54047 12C8.47026 11.8279 10.8311 10.761 12.8363 7.87004C15.3427 4.25632 13.4022 1 10.7745 1Z" stroke="#666666"/>
</svg>
2
</button>
</div>
</div>
<div class="comment-block">
<div class="comment-user">
<img src="./assets/img/user_img3.png" alt="">
<div class="comment-user_text">
<h6>
Чжон Д.
</h6>
<span>
15 января 2025
</span>
</div>
</div>
<p>
关于挠痒柱的最佳评论
</p>
<div class="comment-btns">
<button>
<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.5 3H3.25C2.00736 3 1 4.00736 1 5.25V5.25C1 6.49264 2.00736 7.5 3.25 7.5H3.5" stroke="#666666"/>
<path d="M7 0.5L9.5 3L7 5.5" stroke="#666666"/>
</svg>
Ответить
</button>
<button>
<svg width="15" height="13" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.7745 1C8.67239 1 7.7426 2.5355 7.54047 3.30325C7.39224 2.5355 6.49748 1 4.10427 1C1.11276 1 -0.221288 4.85199 2.40639 8.14801C4.50853 10.7848 6.705 11.8147 7.54047 12C8.47026 11.8279 10.8311 10.761 12.8363 7.87004C15.3427 4.25632 13.4022 1 10.7745 1Z" stroke="#666666"/>
</svg>
2
</button>
</div>
</div>
<div class="comment-block_wrapper">
<div class="comment-block">
<div class="comment-user">
<img src="./assets/img/user_img4.png" alt="">
<div class="comment-user_text">
<h6>
Пётр Ш.
</h6>
<span>
15 января 2025
</span>
</div>
</div>
<p>
А расскажите как самому сделать когтеточки?
</p>
<div class="comment-btns">
<button>
<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.5 3H3.25C2.00736 3 1 4.00736 1 5.25V5.25C1 6.49264 2.00736 7.5 3.25 7.5H3.5" stroke="#666666"/>
<path d="M7 0.5L9.5 3L7 5.5" stroke="#666666"/>
</svg>
Ответить
</button>
<button>
<svg width="15" height="13" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.7745 1C8.67239 1 7.7426 2.5355 7.54047 3.30325C7.39224 2.5355 6.49748 1 4.10427 1C1.11276 1 -0.221288 4.85199 2.40639 8.14801C4.50853 10.7848 6.705 11.8147 7.54047 12C8.47026 11.8279 10.8311 10.761 12.8363 7.87004C15.3427 4.25632 13.4022 1 10.7745 1Z" stroke="#666666"/>
</svg>
2
</button>
</div>
</div>
<button class="answer-btn">
<svg width="15" height="10" viewBox="0 0 15 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 1.41406L7.5 7.91406L1 1.41406" stroke="#76CE75" stroke-width="2"/>
</svg>
1
<span>
ответ
</span>
</button>
</div>
<div class="comment-block answer-block">
<div class="comment-user">
<img src="./assets/img/user_img2.png" alt="">
<div class="comment-user_text">
<h6>
Дед
</h6>
<span>
15 января 2025
</span>
</div>
</div>
<p>
Помню в 1937 году когтеточки были лучше
</p>
<div class="comment-btns">
<button>
<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.5 3H3.25C2.00736 3 1 4.00736 1 5.25V5.25C1 6.49264 2.00736 7.5 3.25 7.5H3.5" stroke="#666666"/>
<path d="M7 0.5L9.5 3L7 5.5" stroke="#666666"/>
</svg>
Ответить
</button>
<button>
<svg width="15" height="13" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.7745 1C8.67239 1 7.7426 2.5355 7.54047 3.30325C7.39224 2.5355 6.49748 1 4.10427 1C1.11276 1 -0.221288 4.85199 2.40639 8.14801C4.50853 10.7848 6.705 11.8147 7.54047 12C8.47026 11.8279 10.8311 10.761 12.8363 7.87004C15.3427 4.25632 13.4022 1 10.7745 1Z" stroke="#666666"/>
</svg>
2
</button>
</div>
</div>
<div class="comment-block_wrapper">
<div class="comment-block">
<div class="comment-user">
<img src="./assets/img/user_img5.png" alt="">
<div class="comment-user_text">
<h6>
Ира О.
</h6>
<span>
15 января 2025
</span>
</div>
</div>
<p>
Классный обзор когтеточек!
</p>
<div class="comment-btns">
<button>
<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.5 3H3.25C2.00736 3 1 4.00736 1 5.25V5.25C1 6.49264 2.00736 7.5 3.25 7.5H3.5" stroke="#666666"/>
<path d="M7 0.5L9.5 3L7 5.5" stroke="#666666"/>
</svg>
Ответить
</button>
<button>
<svg width="15" height="13" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.7745 1C8.67239 1 7.7426 2.5355 7.54047 3.30325C7.39224 2.5355 6.49748 1 4.10427 1C1.11276 1 -0.221288 4.85199 2.40639 8.14801C4.50853 10.7848 6.705 11.8147 7.54047 12C8.47026 11.8279 10.8311 10.761 12.8363 7.87004C15.3427 4.25632 13.4022 1 10.7745 1Z" stroke="#666666"/>
</svg>
2
</button>
</div>
</div>
<button class="answer-btn">
<svg width="15" height="10" viewBox="0 0 15 10" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14 1.41406L7.5 7.91406L1 1.41406" stroke="#76CE75" stroke-width="2"/>
</svg>
1
<span>
ответ
</span>
</button>
</div>
<div class="comment-block answer-block">
<div class="comment-user">
<img src="./assets/img/user_img2.png" alt="">
<div class="comment-user_text">
<h6>
Дед
</h6>
<span>
15 января 2025
</span>
</div>
</div>
<p>
Помню в 1937 году когтеточки были лучше
</p>
<div class="comment-btns">
<button>
<svg width="11" height="8" viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.5 3H3.25C2.00736 3 1 4.00736 1 5.25V5.25C1 6.49264 2.00736 7.5 3.25 7.5H3.5" stroke="#666666"/>
<path d="M7 0.5L9.5 3L7 5.5" stroke="#666666"/>
</svg>
Ответить
</button>
<button>
<svg width="15" height="13" viewBox="0 0 15 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M10.7745 1C8.67239 1 7.7426 2.5355 7.54047 3.30325C7.39224 2.5355 6.49748 1 4.10427 1C1.11276 1 -0.221288 4.85199 2.40639 8.14801C4.50853 10.7848 6.705 11.8147 7.54047 12C8.47026 11.8279 10.8311 10.761 12.8363 7.87004C15.3427 4.25632 13.4022 1 10.7745 1Z" stroke="#666666"/>
</svg>
2
</button>
</div>
</div>
</div>
</section>
</div>
</div>
<!-- Article content end -->
<!-- Home -->
<section class="home other-home">
<div class="container">
<div class="home-swp">
<div class="home-swp__btn">
<button class="home-swp__btn-prev">
<img src="./assets/img/swp-prev.svg" alt="">
</button>
<button class="home-swp__btn-next">
<img src="./assets/img/swp-next.svg" alt="">
</button>
</div>
<div class="swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="home-card bg-yellow">
<div class="home-card__img">
<img src="./assets/img/home-card.png" alt="">
</div>
<div class="home-card__content">
<h3 class="home-card__content-title">Как выбрать когтеточку: обзор мастхевов для вашей кошки</h3>
<p class="home-card__content-description">Простая с виду задача «купить когтеточку» может оказаться утомительным и дорогим занятием. Типичная ситуация: вы приобрели сразу несколько вариантов ...</p>
<div class="home-card__content-body">
<ul class="home-card__content-body__alerts">
<li>Обзоры</li>
<li>Тренды</li>
</ul>
<div class="home-card__content-body__day">21.10.24</div>
<div class="home-card__content-body__time">время чтения: 5 минут</div>
<div class="home-card__content-body__data">
<div>
<img src="./assets/img/heart.svg" alt="">
<span>22</span>
</div>
<div>
<img src="./assets/img/msg.svg" alt="">
<span>22</span>
</div>
<div>
<img src="./assets/img/user-logo.png" alt="" class="main-img">
</div>
</div>
<a href="#" class="home-card__content-body__link">читать статью</a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="home-card bg-green">
<div class="home-card__img">
<img src="./assets/img/home-card-2.png" alt="">
</div>
<div class="home-card__content">
<h3 class="home-card__content-title">Краткая история кормов: от хлебных корок до лечебных рационов</h3>
<p class="home-card__content-description">Современный мир сложно представить без готовых кормов для собак и кошек. И сложно поверить, что это относительно современная концепция, существующая менее 150 лет. Поэтапно о том ...</p>
<div class="home-card__content-body">
<ul class="home-card__content-body__alerts">
<li>Обзоры</li>
<li>Тренды</li>
</ul>
<div class="home-card__content-body__day">21.10.24</div>
<div class="home-card__content-body__time">время чтения: 5 минут</div>
<div class="home-card__content-body__data">
<div>
<img src="./assets/img/heart.svg" alt="">
<span>22</span>
</div>
<div>
<img src="./assets/img/msg.svg" alt="">
<span>22</span>
</div>
<div>
<img src="./assets/img/user-logo.png" alt="" class="main-img">
</div>
</div>
<a href="#" class="home-card__content-body__link">читать статью</a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="home-card bg-violet">
<div class="home-card__img">
<img src="./assets/img/home-card-3.png" alt="">
</div>
<div class="home-card__content">
<h3 class="home-card__content-title">Пищевая аллергия у собак. Причины и пути решения</h3>
<p class="home-card__content-description">Даже привычный рацион может вызвать у питомца нежелательную реакцию зуд, расстройства ЖКТ, изменения в поведении. Хорошая новость: с этой проблемой можно справиться. Рассказываем, как ...</p>
<div class="home-card__content-body">
<ul class="home-card__content-body__alerts">
<li>Обзоры</li>
<li>Тренды</li>
</ul>
<div class="home-card__content-body__day">21.10.24</div>
<div class="home-card__content-body__time">время чтения: 5 минут</div>
<div class="home-card__content-body__data">
<div>
<img src="./assets/img/heart.svg" alt="">
<span>22</span>
</div>
<div>
<img src="./assets/img/msg.svg" alt="">
<span>22</span>
</div>
<div>
<img src="./assets/img/user-logo.png" alt="" class="main-img">
</div>
</div>
<a href="#" class="home-card__content-body__link">читать статью</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Home end -->
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-top">
<div class="footer-content__wrap">
<div class="footer-content">
<a href="/" class="logo">
<img src="./assets/img/logo-green.svg" alt="">
<span>сosmopet</span>
</a>
<p class="footer-content__address">
123182 г. Москва, <br>
4-й Красногорский пр., <br>
д. 2/4, стр. 1, этаж/ком. 3/1
</p>
<ul>
<li>
<p>Отзывы и предложения</p>
<a href="mailto:pro@cosmopet.shop" target="_blank">pro@cosmopet.shop</a>
</li>
<li>
<p>Заявки для оптовых покупателей</p>
<a href="mailto:pro@cosmopet.shop" target="_blank">pro@cosmopet.shop</a>
</li>
<li>
<p>Связь с ветеринаром</p>
<a href="mailto:vetvopros@cosmopet.shop" target="_blank">vetvopros@cosmopet.shop</a>
</li>
</ul>
</div>
<div class="footer-top__link">
<a href="#" class="link-black">Чат бот с ветеринаром</a>
<a href="#" class="link-white">Калькулятор рациона</a>
</div>
</div>
<form class="footer-contact">
<h3 class="footer-contact__title">Форма обратной связи</h3>
<input type="text" placeholder="Ваше имя" class="form-inp">
<input type="email" placeholder="Эл.почта" class="form-inp">
<textarea class="form-textarea" name="" placeholder="Текст обращения" id=""></textarea>
<button class="footer-contact__submit" type="submit">Отправить</button>
</form>
</div>
<div class="footer-bottom">
<ul class="footer-network">
<li>
<a href="#">
<img src="./assets/img/footer-network-1.svg" alt="">
</a>
</li>
<li>
<a href="#">
<img src="./assets/img/footer-network-2.svg" alt="">
</a>
</li>
<li>
<a href="#">
<img src="./assets/img/footer-network-3.svg" alt="">
</a>
</li>
</ul>
<a href="#">Соглашение о конфиденциальности</a>
<a href="#">Декларация соответствия корма</a>
<a href="#">Декларация соответствия лакомств</a>
</div>
</div>
</footer>
<!-- Footer end -->
</div>
<!-- Swiper JS -->
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script src="./assets/js/main.js"></script>
</body>
</html>

View File

@@ -0,0 +1,119 @@
@font-face {
font-family: "Craftwork Grotest";
src: url('../fonts/Craftwork_Grotesk_Trial/CraftworkGrotesk-Regular.ttf');
font-weight: 400;
}
@font-face {
font-family: "Craftwork Grotest";
src: url('../fonts/Craftwork_Grotesk_Trial/CraftworkGrotesk-Medium.ttf');
font-weight: 500;
}
@font-face {
font-family: "Craftwork Grotest";
src: url('../fonts/Craftwork_Grotesk_Trial/CraftworkGrotesk-SemiBold.ttf');
font-weight: 600;
}
@font-face {
font-family: "Craftwork Grotest";
src: url('../fonts/Craftwork_Grotesk_Trial/CraftworkGrotesk-Bold.ttf');
font-weight: 700;
}
@font-face {
font-family: "Abel";
src: url('../fonts/Abel/Abel-Regular.ttf');
font-weight: 400;
}
:root {
/* Colors */
--radial: radial-gradient(261.43% 263.03% at 124% -28.000000000000004%,rgb(15, 88, 129),rgb(30, 164, 156) 36.979%,rgb(118, 206, 117) 66.667%,rgb(236, 243, 159) 91.146%);
--accent-1: radial-gradient(142.43% 141.42% at 100% 0%, #188892 0%, #1EA49C 45%, #76CE75 90%, #BBE38D 100%);
--accent-2: radial-gradient(2700.48% 141.42% at 100% 0%,rgb(122, 217, 231),rgb(126, 231, 225) 25%,rgb(181, 228, 180) 80%,rgb(215, 238, 170) 100%);
--accent-3: linear-gradient(6deg, rgb(244, 66, 66) 7.584%,rgb(86, 158, 240) 72.371%);
--linear: linear-gradient(-7.39deg, rgb(244, 241, 240) 23.643%,rgba(244, 241, 240, 0.3) 59.827%);
--btn-bg: radial-gradient(100% 174.56% at 100% 0%, #7AD9E7 0%, #7EE7E1 25%, #B5E4B4 80%, #D7EEAA 100%);
--main_white: #FFFFFF;
--creme-white: #F4F1F0;
--grey-f5: #F5F5F5;
--main_black: #121212;
--grey-black: #121212;
--bg-light-grey: #F5F5F5;
--interface_title: #333333;
--interface_hover: #666666;
--orange_80: #FFDF99;
--green_90: #D9FFCC;
--green-dark: #76CE75;
--violet_90: #E7CAFF;
--blue_90: #CCE2FF;
--background: #F4F1F0;
--placeholder: #999999;
/* Fonts */
--font-craftwork: 'Craftwork Grotest', sans-serif;
--font-abel: 'Abel', serif;
}
body {
background: var(--radial);
font-family: var(--font-craftwork);
font-weight: 500;
}
.container {
max-width: 1232px;
margin: 0 auto;
@media (max-width: 1264px) {
max-width: calc(100% - 32px);
}
}
.form-inp {
height: 48px;
width: 100%;
border: 1px solid var(--placeholder);
border-radius: 20px;
background: var(--main_white);
padding: 0 16px;
color: var(--main_black);
font-size: 20px;
font-weight: 400;
line-height: 24px;
}
.form-inp::placeholder {
color: var(--placeholder);
}
.form-inp:hover,
.form-inp:focus {
border-color: var(--main_black);
}
.form-textarea {
height: 96px;
width: 100%;
resize: none;
background: var(--main_white);
border: 1px solid var(--placeholder);
padding: 12px 16px;
border-radius: 20px;
color: var(--main_black);
font-size: 20px;
font-weight: 400;
line-height: 24px;
}
.form-textarea::placeholder {
color: var(--placeholder);
}
.form-textarea:hover,
.form-textarea:focus {
border-color: var(--main_black);
}

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,133 @@
/* Стили для мобильных устройств */
@media only screen and (max-width: 576px) {
.anons-best__title {
font-size: 26px;
line-height: 32px;
margin-bottom: 12px;
}
.anons-best__card {
padding-top: 205px;
}
.anons-best__card .main-img {
height: 300px;
}
.anons-best__card-body {
padding: 20px 17px;
}
.anons-best__card-body__title {
font-size: 20px;
line-height: 24px;
margin-bottom: 16px;
}
.anons-best__card.light .main-img {
height: 197px;
}
.anons-best__card.light .anons-best__card-body__title {
font-size: 20px;
line-height: 24px;
}
.editorial-card {
flex-direction: column;
border-radius: 30px;
position: relative;
}
.editorial-card .main-img {
width: 100%;
height: 203px;
}
.editorial-card__content {
padding: 17px 13px 24px;
}
.editorial-card__content-alerts {
position: absolute;
top: 13px;
left: 8px;
width: calc(100% - 16px);
}
.editorial-card__content-title {
font-size: 20px;
line-height: 24px;
margin-bottom: 17px;
}
.editorial-card__content-data {
gap: 5px 16px;
}
.footer {
padding: 24px 0 58px;
}
.footer-top {
align-items: flex-start;
text-align: left;
gap: 24px;
}
.footer-content__wrap {
align-items: flex-start;
gap: 24px;
}
.footer-content {
align-items: flex-start;
}
.footer-content .logo {
font-size: 20px;
margin-bottom: 24px;
}
.footer-content__address {
font-size: 18px;
line-height: 24px;
margin-bottom: 32px;
}
.footer-content ul {
gap: 24px;
}
.footer-content ul p {
font-size: 16px;
line-height: 20px;
}
.footer-content ul a {
font-size: 24px;
line-height: 32px;
}
.footer-top__link .link-white {
display: none;
}
.footer-contact {
width: 100%;
padding: 16px;
border-radius: 24px;
}
.footer-contact__title {
color: var(--main_white);
}
.footer-bottom {
margin-top: 0;
padding-top: 24px;
border: 0;
align-items: flex-start;
gap: 17px;
}
}

View File

@@ -0,0 +1,78 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent !important;
}
a {
text-decoration: none;
color: inherit;
display: inline-block;
cursor: pointer;
}
img {
max-width: 100%;
}
span,
label {
display: inline-block;
}
html {
scroll-behavior: smooth;
}
input,
textarea {
outline: none;
border: 0;
background: transparent;
}
button,
select {
border: none;
cursor: pointer;
background: transparent;
outline: 0;
}
address {
font-style: normal;
}
.wrapper {
width: 100%;
overflow: hidden;
min-height: 100svh;
}
ul,
ol,
dl {
list-style: none;
padding: 0;
margin: 0;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
padding: 0;
margin: 0;
font-weight: 500;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
-moz-appearance: none;
margin: 0;
}

View File

@@ -0,0 +1,666 @@
/* Стили для планшетов */
@media only screen and (max-width: 992px) {
.header-navs {
display: none;
}
.header-container {
height: 56px;
padding: 0;
}
.header-bars {
display: flex;
align-items: center;
justify-content: center;
}
.header-logo {
font-size: 16px;
line-height: 20px;
gap: 8px;
}
.header-logo img {
width: 31px;
flex-shrink: 0;
}
.header-lang {
display: none;
}
.home {
padding: 92px 0 36px;
}
.home-title {
font-size: 32px;
line-height: 38px;
margin-bottom: 36px;
}
.home-description {
font-size: 20px;
line-height: 24px;
margin-bottom: 36px;
}
.home-swp__btn {
bottom: auto;
top: 93px;
left: -10px;
width: calc(100% + 20px);
justify-content: space-between;
transform: translateX(0);
}
.home-swp__btn button {
width: 48px;
height: 48px;
border-radius: 20px;
}
.home-card {
flex-direction: column;
border-radius: 24px;
gap: 17px;
}
.home-card__img {
height: 234px;
width: 100%;
border-radius: 24px;
}
.home-card__content {
padding: 0 16px 89px;
}
.home-card__content-title {
font-size: 20px;
line-height: 24px;
margin-bottom: 15px;
}
.home-card__content-description {
font-size: 16px;
line-height: 20px;
margin-bottom: 15px;
display: -webkit-box;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.home-card__content-body {
gap: 7px;
}
.home-card__content-body__alerts {
gap: 7px;
}
.home-card__content-body__alerts li {
font-size: 14px;
line-height: 16px;
padding: 8px;
}
.home-card__content-body__day {
font-size: 14px;
line-height: 16px;
}
.home-card__content-body__time {
font-size: 14px;
line-height: 16px;
}
.home-card__content-body__data {
gap: 7px;
}
.home-card__content-body__data>div {
gap: 4px;
font-size: 14px;
line-height: 16px;
}
.home-card__content-body__data .main-img {
width: 32px;
height: 32px;
}
.home-card__content-body__link {
right: 50%;
bottom: 27px;
transform: translateX(50%);
}
.anons {
border-radius: 24px;
}
.anons-article__title {
font-size: 26px;
line-height: 32px;
}
.anons-theme {
margin-bottom: 60px;
}
.anons-theme__title {
margin-bottom: 20px;
font-size: 20px;
line-height: 24px;
}
.anons-theme ul {
gap: 12px;
}
.anons-theme ul a {
font-size: 16px;
line-height: 20px;
padding: 6px 24px;
}
.anons-best__card-wrap {
grid-template-columns: repeat(1, minmax(0, 1fr));
gap: 24px;
}
.anons-article__card-wrap {
grid-template-columns: repeat(1, minmax(0, 1fr));
gap: 20px;
}
.author {
padding: 188px 0 36px;
}
.author-content {
padding: 109px 42px 35px;
flex-direction: column;
align-items: flex-start;
}
.author-content__start-1,
.author-content__start-2 {
display: none;
}
.author-content__img {
display: none;
left: 50%;
transform: translateX(-50%);
top: -180px;
width: 235px;
}
.author-content__img.mb {
display: block;
}
.author-content__title {
width: 100%;
font-size: 26px;
line-height: 32px;
margin-bottom: 16px;
}
.author-content__title br {
display: none;
}
.author-content__link {
width: 100%;
text-align: center;
padding: 11px;
}
.editorial {
padding-bottom: 36px;
}
.editorial-head {
margin-bottom: 36px;
max-width: 313px;
}
.editorial-head__title {
font-size: 32px;
line-height: 38px;
}
.editorial-head__img {
width: 100px;
top: -14px;
right: -22.5px;
}
.editorial-head__star {
display: none;
}
.editorial-card__wrap {
gap: 31px;
}
.breadcrumb {
padding: 92px 0 15px;
}
.article-home {
padding-bottom: 36px;
}
.article-home .container {
display: flex;
flex-direction: column;
}
.article-home h1 {
order: 1;
font-size: 32px;
line-height: 38px;
margin-bottom: 15px;
}
.article-home__card {
order: 2;
height: 199px;
}
.article-home__card img {
border-radius: 32px;
}
.article-home__data {
gap: 8px 16px;
order: 3;
margin: 15px 0 0;
}
.article-home__data-alerts {
gap: 16px;
}
.article-home__data-alerts a {
padding: 6px 8px;
}
.article-content {
padding: 48px 0;
border-radius: 64px;
}
.discount {
padding: 32px 24px;
border-radius: 32px;
margin-bottom: 48px;
}
.discount-title {
font-size: 26px;
line-height: 32px;
margin-bottom: 21px;
}
.discount-bg {
display: none;
}
.discount-bg.mb {
display: inline-block;
position: static;
margin-bottom: 21px;
}
.discount-form {
flex-direction: column;
gap: 21px;
margin-bottom: 21px;
}
.discount-form img {
display: none;
}
.discount-form input {
width: 100%;
text-align: center;
}
.discount-form button {
width: 100%;
text-align: center;
}
.discount-descriptions {
display: flex;
flex-direction: column-reverse;
}
.discount-description__2 {
font-size: 18px;
line-height: 24px;
font-weight: 500;
grid-area: 21px;
margin-bottom: 21px;
}
.discount-description__1 {
margin-bottom: 0;
font-size: 12px;
}
.diet {
padding: 36px 24px;
border-radius: 32px;
flex-direction: column;
margin-bottom: 48px;
}
.diet p {
width: 100%;
font-size: 18px;
line-height: 24px;
}
.diet a {
width: 100%;
}
.texts h2 {
font-size: 28px;
line-height: 32px;
}
.texts h3 {
font-size: 20px;
line-height: 24px;
}
.texts-description p {
font-size: 18px;
line-height: 24px;
}
.texts ol {
gap: 12px;
}
.texts ol li {
font-size: 18px;
line-height: 24px;
}
.texts ol li h4 {
font-size: 18px;
line-height: 24px;
}
.texts ul {
gap: 12px;
}
.texts ul li {
font-size: 18px;
line-height: 24px;
}
.alerts-grey {
padding: 32px 48px;
}
.alerts-grey .icon-1 {
width: 24px;
top: 32px;
left: 16px;
}
.alerts-grey .icon-2 {
width: 24px;
right: 16px;
bottom: 32px;
}
.alerts-grey p {
font-size: 18px;
line-height: 24px;
}
.alerts-violet,
.alerts-yellow,
.alerts-green {
padding: 32px 24px;
flex-direction: column;
}
.alerts-violet p,
.alerts-yellow p,
.alerts-green p {
font-size: 18px;
line-height: 24px;
}
.article-table {
flex-direction: column;
gap: 0px;
}
.article-table__item {
width: 100%;
}
.article-table__item:not(:first-child) li:first-child {
display: none;
}
.article-table__item:not(:first-child) {
border-top: 0;
}
.article-table__item ul li {
font-size: 16px;
line-height: 20px;
font-weight: 500;
}
.article-block__head {
grid-template-columns: repeat(1, minmax(0, 1fr));
gap: 32px;
}
.article-block__head-left {
order: 2;
}
.article-block__head-left h3 {
font-size: 20px;
line-height: 24px;
}
.article-block__head-left p {
font-size: 18px;
line-height: 24px;
}
.article-block__head-right {
order: 1;
height: 319px;
}
.article-block__item-wrap {
gap: 48px;
}
.article-block__item {
flex-direction: column;
gap: 32px;
}
.article-block__item-img {
order: 1;
width: 100%;
height: 450px;
border-radius: 50px;
}
.article-block__item-content {
order: 2;
}
.article-block__item-content h3 {
font-size: 20px;
line-height: 24px;
}
.article-block__item-content p {
font-size: 18px;
line-height: 24px;
}
.article-block__item-content ul {
flex-direction: column;
padding: 20px 14px 20px 20px;
gap: 28px;
border-radius: 24px;
}
.article-block__item-content ul li {
gap: 19px;
}
.article-block__item-content ul li p {
font-size: 16px;
line-height: 20px;
}
.block-accent__card {
padding: 36px 24px;
gap: 32px;
flex-direction: column !important;
}
.block-accent__card-content {
gap: 27px;
}
.block-accent__card-content h3 {
font-size: 20px;
line-height: 24px;
text-align: center;
}
.block-accent__card-content p {
font-size: 18px;
line-height: 24px;
}
.indent {
padding: 36px 24px;
gap: 24px;
}
.indent-title {
font-size: 26px;
line-height: 32px;
}
.indent p {
font-size: 18px;
line-height: 24px;
}
.indent ul {
gap: 24px;
}
.indent ul li {
gap: 16px;
}
.indent ul li img {
width: 37px;
}
.indent ul li h3 {
font-size: 20px;
line-height: 24px;
gap: 16px;
}
.product-card {
padding: 11px;
gap: 40px;
}
.product-card img {
max-width: 242px;
max-height: 167px;
}
/* Alohida */
.block-list_block img {
flex-shrink: 0;
width: 66px;
height: 45px;
}
.block-list_block h3 {
font-size: 20px;
line-height: 24px;
}
.block-list_block p {
font-size: 18px;
line-height: 24px;
}
.comment .comment-block {
padding: 20px 24px;
margin-top: 28px;
}
.comment .comment-title {
padding-bottom: 20px;
}
.comment .answer-block {
margin: 10px 0 0 42px;
}
.comment .comment-user h6 {
font-size: 16px;
line-height: 24px;
}
.comment .comment-block p {
font-size: 16px;
line-height: 24px;
}
.comment .comment-btns {
gap: 14px;
}
.comment .comment-btns button {
font-size: 12px;
line-height: 16px;
}
.comment .comment-user span {
font-size: 12px;
line-height: 16px;
}
.video_block iframe {
width: 100%;
height: 587px;
}
}

View File

@@ -0,0 +1,4 @@
/* Стили для ультрашироких экранов */
@media only screen and (min-width: 1400px) {
}

View File

@@ -0,0 +1,44 @@
@media (max-width: 1200px) {
.header-navs {
gap: 12px;
}
.header-navs__link {
font-size: 14px;
}
.header-right {
gap: 4px;
}
.anons-article__card-wrap {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.editorial-card__wrap {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.footer-top {
flex-direction: column;
align-items: center;
text-align: center;
}
.footer-content {
display: flex;
flex-direction: column;
align-items: center;
}
.footer-content__wrap {
flex-direction: column;
align-items: center;
gap: 48px;
}
.footer-bottom {
flex-direction: column;
gap: 24px;
}
}

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

View File

@@ -1,54 +0,0 @@
@font-face {
font-family: 'Craftwork Grotesk';
src: url('CraftworkGrotesk-Heavy.woff2') format('woff2'),
url('CraftworkGrotesk-Heavy.woff') format('woff');
font-weight: 900;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Craftwork Grotesk';
src: url('CraftworkGrotesk-Bold.woff2') format('woff2'),
url('CraftworkGrotesk-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Craftwork Grotesk Semi';
src: url('CraftworkGrotesk-SemiBold.woff2') format('woff2'),
url('CraftworkGrotesk-SemiBold.woff') format('woff');
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Craftwork Grotesk';
src: url('CraftworkGrotesk.woff2') format('woff2'),
url('CraftworkGrotesk.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Craftwork Grotesk';
src: url('CraftworkGrotesk-Regular.woff2') format('woff2'),
url('CraftworkGrotesk-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Craftwork Grotesk';
src: url('CraftworkGrotesk-Medium.woff2') format('woff2'),
url('CraftworkGrotesk-Medium.woff') format('woff');
font-weight: 500;
font-style: normal;
font-display: swap;
}

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="ehLxXUyeP0H1" viewBox="0 0 212 212"><style> #ehLxXUyeP0H2_tr {animation: ehLxXUyeP0H2_tr__tr 80000ms linear infinite normal forwards}@keyframes ehLxXUyeP0H2_tr__tr { 0% {transform: translate(105.523003px,105.523003px) rotate(0deg)} 100% {transform: translate(105.523003px,105.523003px) rotate(359.999997deg)}} </style><defs><linearGradient id="ehLxXUyeP0H2-fill" x1="8.11966" y1="144.395" x2="51.5715" y2="35.1744" spreadMethod="pad" gradientUnits="userSpaceOnUse" gradientTransform="translate(0 0)"><stop id="ehLxXUyeP0H2-fill-0" offset="0%" stop-color="#f44242"></stop><stop id="ehLxXUyeP0H2-fill-1" offset="100%" stop-color="#569ef0"></stop></linearGradient></defs><g id="ehLxXUyeP0H2_tr" transform="translate(105.523003,105.523003) rotate(0)"><path d="M78.1944,29.8172C78.1944,14.438,90.446,2,105.523,2s27.329,12.438,27.329,27.8172-12.252,27.8171-27.329,27.8171-27.3286-12.438-27.3286-27.8171ZM105.523,0C89.3093,0,76.1944,13.3658,76.1944,29.8172c0,2.279.2517,4.4989.7285,6.6322-1.1768-1.8772-2.5818-3.6522-4.215-5.2854-11.6886-11.6886-30.6395-11.6885-42.3281,0s-11.6887,30.6396-.0001,42.3282c1.6588,1.6587,3.4638,3.0821,5.3735,4.27-1.9184-.3875-3.9035-.5909-5.9361-.5909C13.3495,77.1713,0,90.5209,0,106.988c-.000002,16.468,13.3495,29.818,29.8171,29.818c1.2223,0,2.4273-.074,3.6111-.217-.7804.637-1.5361,1.319-2.2636,2.047-11.6886,11.689-11.6887,30.64-.0001,42.328c11.6886,11.689,30.6396,11.689,42.3282,0c1.0714-1.071,2.0446-2.204,2.9195-3.386-.1437,1.197-.2178,2.415-.2178,3.651c0,16.452,13.1149,29.817,29.3286,29.817c16.214,0,29.329-13.365,29.329-29.817c0-1.383-.093-2.744-.272-4.078.926,1.283,1.967,2.509,3.122,3.664c11.689,11.689,30.64,11.689,42.329,0c11.688-11.688,11.688-30.639,0-42.328-.655-.655-1.333-1.273-2.03-1.854c1.06.114,2.137.173,3.228.173c16.468,0,29.817-13.35,29.817-29.818c0-16.4671-13.349-29.8167-29.817-29.8167-1.838,0-3.638.1664-5.384.4849c1.761-1.135,3.429-2.4733,4.97-4.0149c11.689-11.6886,11.689-30.6395,0-42.3281-11.688-11.6886-30.639-11.6886-42.328,0-1.773,1.7732-3.277,3.7136-4.513,5.7704.574-2.3263.878-4.7606.878-7.2664C134.852,13.3658,121.737,0,105.523,0Zm25.064,45.3085c-5.145,8.5862-14.439,14.3258-25.064,14.3258-10.4233,0-19.5659-5.5239-24.7667-13.8402c2.1513,9.6608-.5315,20.1812-8.0484,27.6981-7.3766,7.3766-17.6457,10.0979-27.1564,8.1638c8.455,5.2626,14.0828,14.6403,14.0828,25.332c0,9.318-4.2738,17.637-10.968,23.105c8.8294-1.082,18.0488,1.765,24.8264,8.543c6.7493,6.749,9.6014,15.92,8.5562,24.716c5.3475-7.247,13.8668-11.94,23.4741-11.94c9.73,0,18.344,4.813,23.677,12.218-1.19-8.925,1.644-18.284,8.503-25.143c6.679-6.68,15.73-9.542,24.443-8.587-6.56-5.47-10.734-13.703-10.734-22.912c0-10.5203,5.449-19.7684,13.678-25.0758-9.354,1.7199-19.369-1.037-26.603-8.2709-7.682-7.6818-10.315-18.5004-7.9-28.3328ZM37.7241,133.666c1.8722-1.048,3.8331-1.879,5.8459-2.492c8.4003-4.788,14.0643-13.825,14.0643-24.186c0-15.3626-12.4542-27.8167-27.8172-27.8167s-27.8171,12.4541-27.8171,27.8167c0,15.363,12.4541,27.818,27.8171,27.818c2.7468,0,5.4007-.399,7.907-1.14Zm-5.1453,6.384c1.8118-1.812,3.8106-3.323,5.9343-4.532c2.0513-.625,4.0089-1.465,5.8464-2.493c9.5052-2.82,20.2156-.478,27.719,7.025c10.9075,10.908,10.9075,28.592,0,39.5-10.9076,10.907-28.5922,10.907-39.4997,0-10.9076-10.908-10.9076-28.592,0-39.5ZM181.229,79.1713c15.363,0,27.817,12.4541,27.817,27.8167c0,15.363-12.454,27.818-27.817,27.818-2.459,0-4.844-.32-7.115-.919-2.307-1.367-4.758-2.398-7.283-3.093-8.044-4.875-13.419-13.713-13.419-23.806c0-15.3626,12.454-27.8167,27.817-27.8167Zm-7.904,56.5757c-2.585-.709-5.03-1.757-7.283-3.094-9.303-2.463-19.63-.047-26.925,7.248-10.908,10.908-10.908,28.592,0,39.5c10.907,10.908,28.592,10.908,39.499,0c10.908-10.908,10.908-28.592,0-39.5-1.627-1.627-3.406-3.012-5.291-4.154ZM78.1944,181.229c0-15.379,12.2516-27.817,27.3286-27.817s27.329,12.438,27.329,27.817-12.252,27.817-27.329,27.817-27.3286-12.438-27.3286-27.817ZM71.2937,32.5782c10.9075,10.9076,10.9075,28.5922,0,39.4998-10.9076,10.9075-28.5922,10.9075-39.4998,0-10.9075-10.9076-10.9075-28.5922.0001-39.4997s28.5921-10.9076,39.4997-.0001ZM179.401,72.2271c-10.908,10.9076-28.592,10.9076-39.5,0-10.907-10.9075-10.907-28.5922,0-39.4997c10.908-10.9076,28.592-10.9075,39.5,0s10.908,28.5922,0,39.4997Z" transform="translate(-105.523003,-105.523003)" clip-rule="evenodd" fill="url(#ehLxXUyeP0H2-fill)" fill-rule="evenodd"></path></g></svg>

Before

Width:  |  Height:  |  Size: 4.3 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 6.1 KiB

View File

@@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="eAbSZFt1Mvj1" viewBox="0 0 212 213.01"><style> #eAbSZFt1Mvj4_to {animation: eAbSZFt1Mvj4_to__to 40000ms linear infinite normal forwards}@keyframes eAbSZFt1Mvj4_to__to { 0% {transform: translate(107.122537px,158.225498px)} 50% {transform: translate(107.122537px,53.225498px)} 100% {transform: translate(107.122537px,158.225498px)}} #eAbSZFt1Mvj5_to {animation: eAbSZFt1Mvj5_to__to 40000ms linear infinite normal forwards}@keyframes eAbSZFt1Mvj5_to__to { 0% {transform: translate(106.132898px,132.1339px)} 50% {transform: translate(106.132898px,79.1339px)} 100% {transform: translate(106.132898px,132.1339px)}} #eAbSZFt1Mvj6_to {animation: eAbSZFt1Mvj6_to__to 40000ms linear infinite normal forwards}@keyframes eAbSZFt1Mvj6_to__to { 0% {transform: translate(105.836395px,184.837502px)} 50% {transform: translate(105.836395px,27.203493px)} 100% {transform: translate(105.836395px,184.837502px)}} </style><defs><linearGradient id="eAbSZFt1Mvj3-stroke" x1="9.06531" y1="144.428" x2="52.2262" y2="35.9389" spreadMethod="pad" gradientUnits="userSpaceOnUse" gradientTransform="translate(0 0)"><stop id="eAbSZFt1Mvj3-stroke-0" offset="0%" stop-color="#f44242"></stop><stop id="eAbSZFt1Mvj3-stroke-1" offset="100%" stop-color="#569ef0"></stop></linearGradient><linearGradient id="eAbSZFt1Mvj4-stroke" x1="57.6654" y1="177.531" x2="79.2455" y2="123.288" spreadMethod="pad" gradientUnits="userSpaceOnUse" gradientTransform="translate(0 0)"><stop id="eAbSZFt1Mvj4-stroke-0" offset="0%" stop-color="#f44242"></stop><stop id="eAbSZFt1Mvj4-stroke-1" offset="100%" stop-color="#569ef0"></stop></linearGradient><linearGradient id="eAbSZFt1Mvj5-stroke" x1="33.6731" y1="161.051" x2="65.9975" y2="79.8004" spreadMethod="pad" gradientUnits="userSpaceOnUse" gradientTransform="translate(0 0)"><stop id="eAbSZFt1Mvj5-stroke-0" offset="0%" stop-color="#f44242"></stop><stop id="eAbSZFt1Mvj5-stroke-1" offset="100%" stop-color="#569ef0"></stop></linearGradient><linearGradient id="eAbSZFt1Mvj6-stroke" x1="81.6491" y1="194.49" x2="92.4392" y2="167.368" spreadMethod="pad" gradientUnits="userSpaceOnUse" gradientTransform="translate(0 0)"><stop id="eAbSZFt1Mvj6-stroke-0" offset="0%" stop-color="#f44242"></stop><stop id="eAbSZFt1Mvj6-stroke-1" offset="100%" stop-color="#569ef0"></stop></linearGradient></defs><g transform="translate(.1835 0.484508)"><path d="M105.817,210.633c57.888,0,104.816-46.928,104.816-104.816c0-57.8889-46.928-104.817014-104.816-104.817009C47.928,0.999996,1,47.9281,1.00001,105.817c0,57.888,46.92799,104.816,104.81699,104.816Z" fill="none" stroke="url(#eAbSZFt1Mvj3-stroke)" stroke-width="2" stroke-miterlimit="10"></path><g id="eAbSZFt1Mvj4_to" transform="translate(107.122537,158.225498)"><path d="M106.04,210.633c28.944,0,52.408-23.463,52.408-52.407s-23.464-52.408-52.408-52.408c-28.9436,0-52.4072,23.464-52.4072,52.408s23.4636,52.407,52.4072,52.407Z" transform="translate(-106.040394,-158.225498)" fill="none" stroke="url(#eAbSZFt1Mvj4-stroke)" stroke-width="2" stroke-miterlimit="10"></path></g><g id="eAbSZFt1Mvj5_to" transform="translate(106.132898,132.1339)"><path d="M106.133,210.634c43.354,0,78.5-35.146,78.5-78.5c0-43.3545-35.146-78.5002-78.5-78.5002-43.3546,0-78.5002,35.1457-78.5002,78.5002c0,43.354,35.1456,78.5,78.5002,78.5Z" transform="translate(-106.132898,-132.1339)" fill="none" stroke="url(#eAbSZFt1Mvj5-stroke)" stroke-width="2" stroke-miterlimit="10"></path></g><g id="eAbSZFt1Mvj6_to" transform="translate(105.836395,184.837502)"><path d="M105.837,211.041c14.471,0,26.203-11.731,26.203-26.203s-11.732-26.204-26.203-26.204c-14.4724,0-26.2042,11.732-26.2042,26.204s11.7318,26.203,26.2042,26.203Z" transform="translate(-105.836395,-184.837502)" fill="none" stroke="url(#eAbSZFt1Mvj6-stroke)" stroke-width="2" stroke-miterlimit="10"></path></g></g></svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 551 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 573 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 492 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 603 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 391 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 473 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 618 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 684 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 888 KiB

View File

@@ -0,0 +1,3 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.5 5.5L7.5 10.5L12.5 5.5" stroke="#121212" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 702 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 762 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 702 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

BIN
assets/img/author-card.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -1,3 +1,11 @@
<svg width="21" height="21" viewBox="0 0 21 21" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M21 0.500002C21 0.776144 20.7761 1 20.5 1L0.5 1C0.223858 1 0 0.776142 0 0.5C0 0.223858 0.223858 0 0.5 0H20.5C20.7761 0 21 0.223859 21 0.500002ZM21 10.5C21 10.7761 20.7761 11 20.5 11L0.5 11C0.223858 11 0 10.7761 0 10.5C0 10.2239 0.223858 10 0.5 10L20.5 10C20.7761 10 21 10.2239 21 10.5ZM20.5 21C20.7761 21 21 20.7761 21 20.5C21 20.2239 20.7761 20 20.5 20L0.5 20C0.223858 20 0 20.2239 0 20.5C0 20.7761 0.223858 21 0.5 21L20.5 21Z" fill="#F4F1F0"/> <g clip-path="url(#clip0_12806_2018)">
<path d="M4 8H20" stroke="#121212" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M4 16H20" stroke="#121212" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_12806_2018">
<rect width="24" height="24" fill="white"/>
</clipPath>
</defs>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 598 B

After

Width:  |  Height:  |  Size: 458 B

View File

@@ -0,0 +1,3 @@
<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.9995 11.5385C19.3616 11.5385 18.7499 11.7816 18.2988 12.2144C17.8478 12.6471 17.5944 13.2341 17.5944 13.8462V15.1282H22.4045V13.8462C22.4045 13.2341 22.1511 12.6471 21.7001 12.2144C21.2491 11.7816 20.6373 11.5385 19.9995 11.5385ZM24.0079 15.1282V13.8462C24.0079 12.8261 23.5856 11.8478 22.8339 11.1265C22.0821 10.4052 21.0626 10 19.9995 10C18.9364 10 17.9168 10.4052 17.1651 11.1265C16.4133 11.8478 15.991 12.8261 15.991 13.8462V15.1282H13.9399M15.991 16.6667H13.9398C13.7471 16.6666 13.5566 16.7066 13.3816 16.7838C13.2065 16.861 13.051 16.9736 12.9255 17.1138C12.8 17.2541 12.7077 17.4188 12.6548 17.5965C12.6019 17.7742 12.5896 17.9608 12.6189 18.1435C12.6189 18.1434 12.6189 18.1435 12.6189 18.1435L13.9604 26.5045C14.0477 27.0493 14.3354 27.5463 14.7714 27.9052C15.2074 28.2642 15.7629 28.4615 16.3373 28.4615C16.3373 28.4615 16.3374 28.4615 16.3373 28.4615H23.6616C24.2362 28.4617 24.7921 28.2644 25.2283 27.9055C25.6645 27.5465 25.9523 27.0496 26.0396 26.5046L27.3811 18.1436C27.3811 18.1436 27.3811 18.1435 27.3811 18.1436C27.4104 17.9609 27.3981 17.7742 27.3452 17.5965C27.2923 17.4188 27.1999 17.2541 27.0745 17.1138C26.949 16.9736 26.7935 16.861 26.6184 16.7838C26.4433 16.7066 26.253 16.6666 26.0603 16.6667H24.0079V18.9744C24.0079 19.3992 23.649 19.7436 23.2062 19.7436C22.7635 19.7436 22.4045 19.3992 22.4045 18.9744V16.6667H17.5944V18.9744C17.5944 19.3992 17.2355 19.7436 16.7927 19.7436C16.3499 19.7436 15.991 19.3992 15.991 18.9744V16.6667ZM24.0079 15.1282H26.0601C26.0601 15.1282 26.0602 15.1282 26.0601 15.1282C26.4839 15.1282 26.9028 15.2161 27.2879 15.3859C27.673 15.5557 28.0153 15.8034 28.2913 16.112C28.5673 16.4206 28.7705 16.7829 28.8869 17.1739C29.0033 17.5649 29.0303 17.9755 28.9658 18.3774L27.6244 26.7385C27.6243 26.7385 27.6244 26.7384 27.6244 26.7385C27.4788 27.6467 26.9991 28.475 26.2722 29.0732C25.5453 29.6715 24.6192 30.0002 23.6616 30C23.6615 30 23.6616 30 23.6616 30H16.3373C15.3799 30 14.454 29.6711 13.7273 29.0728C13.0007 28.4746 12.5212 27.6466 12.3757 26.7386C12.3756 26.7385 12.3757 26.7386 12.3757 26.7386L11.0342 18.3776C10.9697 17.9756 10.9966 17.5649 11.1131 17.1739C11.2295 16.7829 11.4327 16.4206 11.7087 16.112C11.9847 15.8034 12.327 15.5557 12.7121 15.3859C13.0972 15.2161 13.5161 15.1282 13.9399 15.1282" fill="#333333"/>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1,9 @@
<svg width="121" height="121" viewBox="0 0 121 121" fill="none" xmlns="http://www.w3.org/2000/svg">
<path opacity="0.5" fill-rule="evenodd" clip-rule="evenodd" d="M103.293 60.2828C103.293 76.4596 98.412 91.066 90.5695 101.605C85.027 109.053 78.0294 114.445 70.2389 116.967C74.3157 113.838 77.8884 108.836 80.7637 102.622C85.8012 91.7348 88.8903 76.7646 88.8903 60.2828C88.8903 43.8009 85.8012 28.8307 80.7637 17.9436C77.8885 11.7295 74.3157 6.72732 70.2389 3.59884C78.0294 6.12069 85.027 11.5123 90.5695 18.9605C98.412 29.4996 103.293 44.1059 103.293 60.2828ZM60.46 120.566C60.4231 120.566 60.3862 120.566 60.3494 120.565C60.2951 120.565 60.2408 120.566 60.1864 120.566C60.1835 120.566 60.1806 120.566 60.1776 120.566C60.1752 120.566 60.1728 120.566 60.1704 120.566C58.3847 120.565 56.6246 120.427 54.8956 120.158C24.1275 117.438 -2.75205e-06 91.6409 0 60.2154C2.44683e-06 27.8551 25.5845 1.46296 57.6588 0.092141C58.4923 0.0309959 59.3322 -7.39604e-08 60.1779 0C60.2353 5.02441e-09 60.2927 0.000143045 60.3501 0.000428854C60.3867 0.000143983 60.4233 1.39357e-06 60.46 1.39686e-06C60.6265 1.4118e-06 60.7926 0.00294737 60.9582 0.00881014C61.452 0.0199689 61.9438 0.0416977 62.4334 0.0738259C94.7279 1.20495 120.563 27.6968 120.563 60.2154C120.563 91.8003 96.1902 117.7 65.1988 120.197C63.8045 120.403 62.3903 120.524 60.9589 120.557C60.793 120.563 60.6267 120.566 60.46 120.566ZM56.398 117.863C50.968 115.972 45.9285 110.334 41.9713 101.782C37.081 91.2132 34.0296 76.5419 34.0296 60.2828C34.0296 44.0236 37.081 29.3524 41.9713 18.7834C45.9285 10.2312 50.968 4.5937 56.398 2.70286C55.9307 3.43365 55.491 4.29568 55.0757 5.26482C53.7467 8.36594 52.5728 12.7918 51.5951 18.1851C49.6369 28.9881 48.4317 43.8713 48.4317 60.2828C48.4317 76.6942 49.6369 91.5775 51.5951 102.38C52.5727 107.774 53.7466 112.2 55.0757 115.301C55.491 116.27 55.9307 117.132 56.398 117.863ZM59.5738 118.391C59.3359 118.259 59.0646 118.041 58.7605 117.698C58.1613 117.022 57.5368 115.966 56.914 114.513C55.6717 111.614 54.5301 107.359 53.5631 102.024C51.632 91.3705 50.4317 76.6123 50.4317 60.2828C50.4317 43.9532 51.632 29.195 53.5631 18.5419C54.5301 13.2071 55.6717 8.95127 56.914 6.05265C57.5368 4.59943 58.1613 3.54387 58.7605 2.8675C59.2172 2.35195 59.6 2.11972 59.9065 2.03738C60.0315 2.03659 60.1565 2.0362 60.2816 2.0362C60.3361 2.0362 60.3906 2.03627 60.4451 2.03642C60.7523 2.11792 61.1363 2.34994 61.5947 2.8675C62.1939 3.54387 62.8185 4.59943 63.4413 6.05265C64.6835 8.95127 65.8251 13.2071 66.7922 18.5419C68.7232 29.195 69.9235 43.9532 69.9235 60.2828C69.9235 76.6123 68.7232 91.3705 66.7921 102.024C65.8251 107.359 64.6835 111.614 63.4412 114.513C62.8185 115.966 62.1939 117.022 61.5947 117.698C61.289 118.043 61.0164 118.261 60.7776 118.393C60.6124 118.394 60.4471 118.395 60.2816 118.395C60.0453 118.395 59.8094 118.393 59.5738 118.391ZM63.8089 118.089C64.3318 117.312 64.8206 116.372 65.2795 115.301C66.6086 112.2 67.7825 107.774 68.7601 102.38C70.7183 91.5775 71.9235 76.6942 71.9235 60.2828C71.9235 43.8713 70.7183 28.9881 68.7601 18.1851C67.7825 12.7919 66.6086 8.36594 65.2796 5.26482C64.8206 4.19382 64.3318 3.25364 63.8089 2.47682C69.5101 4.10729 74.8188 9.858 78.9486 18.7834C83.8389 29.3524 86.8903 44.0236 86.8903 60.2828C86.8903 76.5419 83.8389 91.2132 78.9486 101.782C74.8188 110.708 69.5101 116.458 63.8089 118.089ZM29.7862 101.605C35.5546 109.357 42.899 114.881 51.0731 117.261C46.8331 114.157 43.1233 109.035 40.1562 102.622C35.1187 91.7348 32.0296 76.7646 32.0296 60.2828C32.0296 43.8009 35.1187 28.8307 40.1562 17.9436C43.1233 11.5311 46.8331 6.40909 51.0731 3.3049C42.899 5.68469 35.5546 11.2088 29.7862 18.9605C21.9437 29.4995 17.063 44.1059 17.063 60.2828C17.063 76.4596 21.9437 91.066 29.7862 101.605ZM77.583 4.64253C83.0999 7.7243 88.047 12.2205 92.174 17.7665C100.298 28.6836 105.293 43.7186 105.293 60.2828C105.293 76.8469 100.298 91.882 92.174 102.799C88.1799 108.166 83.4176 112.551 78.1141 115.621C101.58 108.101 118.563 86.1369 118.563 60.2154C118.563 34.0987 101.324 11.9996 77.583 4.64253ZM41.9809 115.469C18.7572 107.808 2 85.9642 2 60.2154C2 34.2712 19.0125 12.2917 42.5107 4.79022C37.0991 7.86718 32.2433 12.3085 28.1817 17.7665C20.0579 28.6836 15.063 43.7186 15.063 60.2828C15.063 76.8469 20.0579 91.882 28.1817 102.799C32.1103 108.078 36.782 112.407 41.9809 115.469Z" fill="url(#paint0_linear_11666_41291)"/>
<defs>
<linearGradient id="paint0_linear_11666_41291" x1="4.63847" y1="82.4894" x2="29.4618" y2="20.0946" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,19 @@
<svg width="166" height="104" viewBox="0 0 166 104" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M142.355 59.8173L142.372 59.801L142.387 59.7839L147.777 53.871C148.857 52.6864 148.814 50.8622 147.681 49.7288L142.355 44.4031L109.757 11.8051C107.414 9.46199 107.414 5.663 109.757 3.31986C112.101 0.976713 115.9 0.976713 118.243 3.31986L162.79 47.8676C165.134 50.2107 165.134 54.0097 162.79 56.3529L118.243 100.901C115.9 103.244 112.101 103.244 109.757 100.901C107.414 98.5575 107.414 94.7585 109.757 92.4153L142.355 59.8173Z" stroke="url(#paint0_linear_11666_41297)" stroke-width="2"/>
<path d="M88.8554 59.8173L88.8717 59.801L88.8873 59.7839L94.2768 53.871C95.3566 52.6864 95.3144 50.8622 94.181 49.7288L88.8554 44.4031L56.2574 11.8051C53.9142 9.46199 53.9142 5.663 56.2574 3.31986C58.6005 0.976713 62.3995 0.976713 64.7427 3.31986L109.29 47.8676C111.634 50.2107 111.634 54.0097 109.29 56.3529L64.7427 100.901C62.3995 103.244 58.6005 103.244 56.2574 100.901C53.9142 98.5575 53.9142 94.7585 56.2574 92.4153L88.8554 59.8173Z" stroke="url(#paint1_linear_11666_41297)" stroke-width="2"/>
<path d="M35.3554 59.8173L35.3717 59.801L35.3873 59.7839L40.7768 53.871C41.8566 52.6864 41.8144 50.8622 40.681 49.7288L35.3554 44.4031L2.75736 11.8051C0.414214 9.46199 0.414213 5.663 2.75736 3.31986C5.10051 0.976713 8.89951 0.976713 11.2427 3.31986L55.7904 47.8676C58.1335 50.2107 58.1335 54.0097 55.7904 56.3529L11.2427 100.901C8.89951 103.244 5.10052 103.244 2.75737 100.901C0.414222 98.5575 0.41422 94.7585 2.75737 92.4153L35.3554 59.8173Z" stroke="url(#paint2_linear_11666_41297)" stroke-width="2"/>
<defs>
<linearGradient id="paint0_linear_11666_41297" x1="109.253" y1="71.0991" x2="138.293" y2="29.6446" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint1_linear_11666_41297" x1="55.7525" y1="71.0991" x2="84.793" y2="29.6446" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint2_linear_11666_41297" x1="2.25254" y1="71.0991" x2="31.293" y2="29.6446" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 3.4 MiB

View File

@@ -0,0 +1,9 @@
<svg width="145" height="98" viewBox="0 0 145 98" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M66.9613 0.661133C66.3364 0.661133 65.7371 0.904633 65.2952 1.33807L33.1564 32.8619C32.3011 33.7008 32.2323 35.0387 32.9972 35.9577L39.739 44.0584C27.9109 49.1211 17.8349 54.9282 10.8059 60.7227C7.17983 63.712 4.31581 66.7378 2.45064 69.7005C0.582667 72.6678 -0.333613 75.658 0.110647 78.4864C0.707324 82.2852 3.54344 85.1201 7.74426 87.101C11.9591 89.0887 17.7247 90.3088 24.5811 90.782C35.5224 91.5371 49.4098 90.4007 64.605 87.2774V95.3499C64.605 96.6264 65.66 97.6611 66.9613 97.6611H82.2655C83.5668 97.6611 84.6218 96.6264 84.6218 95.3499V82.1903C101.016 77.2236 115.448 70.8146 126.064 64.11C132.234 60.2132 137.174 56.1793 140.455 52.2216C143.725 48.2771 145.481 44.2353 144.885 40.4365C144.377 37.203 142.079 34.7256 138.709 32.9022C135.33 31.0739 130.725 29.8167 125.268 29.091C114.481 27.6562 100.115 28.2669 84.6218 30.9123V2.97234C84.6218 1.69589 83.5668 0.661133 82.2655 0.661133H66.9613ZM84.6218 33.2672V79.7951C100.665 74.8984 114.716 68.6299 125.002 62.1332C131.046 58.3159 135.731 54.457 138.763 50.8003C141.805 47.1305 143.049 43.8363 142.609 41.0347C142.246 38.727 140.565 36.6846 137.48 35.015C134.403 33.3503 130.074 32.1413 124.751 31.4333C114.212 30.0315 100.024 30.6249 84.6218 33.2672ZM82.2655 80.5002V2.97234H66.9613L34.8226 34.4962L44.2405 45.8124L66.9613 24.1037V84.4148C69.9535 83.7611 72.9948 83.0303 76.0727 82.2214C78.1646 81.6716 80.23 81.0971 82.2655 80.5002ZM66.9613 86.7794V95.3499H82.2655V82.8902C80.345 83.4494 78.3994 83.9885 76.4314 84.5057C73.2335 85.3462 70.0722 86.1038 66.9613 86.7794ZM64.605 84.9157V29.5815L45.8847 47.468C45.4113 47.9203 44.7661 48.1568 44.1064 48.1199C43.4467 48.083 42.8331 47.7761 42.4152 47.274L41.2541 45.8789C29.2075 50.965 19.0684 56.7905 12.1377 62.5041C8.63995 65.3876 6.00819 68.2027 4.35063 70.8357C2.69589 73.4643 2.06251 75.8246 2.38665 77.8882C2.8267 80.6898 4.96565 83.0949 8.87395 84.938C12.7682 86.7744 18.2459 87.9624 24.9624 88.4259C35.7179 89.1682 49.4812 88.042 64.605 84.9157Z" fill="url(#paint0_linear_1_3164)"/>
<defs>
<linearGradient id="paint0_linear_1_3164" x1="5.57864" y1="67.0273" x2="20.0296" y2="12.7285" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,9 @@
<svg width="145" height="98" viewBox="0 0 145 98" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M32.9201 36.0402C32.8523 36.689 33.0711 37.3353 33.5224 37.8191C33.9737 38.3028 34.6152 38.5789 35.2882 38.5789H36.328C26.3176 43.1677 17.6325 48.3985 11.2812 53.6175C7.53717 56.694 4.55692 59.805 2.60355 62.8198C0.651972 65.8318 -0.341358 68.8573 0.106108 71.6716C0.70351 75.4289 3.54284 78.2313 7.74461 80.1887C11.9606 82.1527 17.7268 83.3581 24.5831 83.8256C27.0569 83.9942 29.6812 84.0674 32.4372 84.0439V95.3548C32.4372 96.6285 33.5028 97.6611 34.8174 97.6611H100.97C102.284 97.6611 103.35 96.6285 103.35 95.3548V80.8694C103.35 79.5956 102.284 78.563 100.97 78.563H72.6935C73.933 78.2631 75.1789 77.9507 76.4304 77.6257C96.1922 72.4948 113.709 65.1843 126.06 57.4782C132.23 53.6286 137.171 49.6432 140.453 45.7325C143.724 41.8349 145.482 37.8388 144.885 34.0814C144.458 31.3958 142.82 29.2222 140.361 27.5222C137.908 25.8267 134.575 24.5548 130.587 23.6694C122.614 21.8992 111.787 21.6239 99.4679 22.8192C98.3782 17.7407 96.432 13.3742 93.5637 9.78139C88.6641 3.46393 80.0441 0.661133 68.5999 0.661133C58.431 0.661133 50.1046 3.33308 43.9074 8.92099L43.8953 8.932C37.7155 14.5828 34.1995 23.7981 32.9201 36.0402ZM99.896 25.1229C100.318 27.789 100.525 30.6337 100.525 33.6492C100.525 39.1049 98.9851 44.3635 95.9728 49.3948C93.0423 54.4203 88.3149 59.5967 81.9253 64.9368L81.9235 64.9383C77.0925 68.9677 70.9409 73.3994 63.4868 78.2321C67.5877 77.4174 71.7925 76.4563 76.068 75.3462C95.6509 70.2618 112.913 63.0388 124.988 55.5055C131.03 51.7353 135.713 47.9246 138.743 44.3142C141.784 40.6906 143.025 37.4406 142.586 34.6784C142.277 32.7351 141.075 30.9981 138.922 29.5104C136.764 28.0182 133.713 26.8254 129.877 25.9737C122.305 24.2928 111.899 23.9893 99.896 25.1229ZM57.3983 79.348C57.8185 79.0851 58.2351 78.8235 58.6479 78.563C67.6603 72.8765 74.9012 67.7522 80.3708 63.1903C86.6486 57.9436 91.1607 52.9631 93.9073 48.2487C96.7323 43.5343 98.1448 38.6678 98.1448 33.6492C98.1448 24.0683 95.9868 16.5785 91.6708 11.1797C87.4333 5.7049 79.743 2.9675 68.5999 2.9675C58.8692 2.9675 51.1789 5.51481 45.5289 10.6094C40.3207 15.3718 36.9982 23.1574 35.5614 33.9662C35.4612 34.7202 35.3701 35.489 35.2882 36.2725H41.603C41.6849 36.2384 41.7669 36.2043 41.8489 36.1703C42.2364 36.0096 42.6393 36.0616 42.9319 36.2725H50.2373C51.1005 29.429 52.9838 24.6006 55.8873 21.7871C58.7908 18.9737 63.0283 17.567 68.5999 17.567C73.7791 17.567 77.5065 18.9737 79.7822 21.7871C82.0579 24.5245 83.1958 28.4786 83.1958 33.6492C83.1958 37.9074 81.744 42.0515 78.8405 46.0816C76.0155 50.1116 71.2287 54.75 64.48 59.9967C57.8099 65.2434 47.9223 72.2009 34.8174 80.8694V81.6496C41.6564 81.4691 49.2771 80.7093 57.3983 79.348ZM34.8174 84.0005V95.3548H100.97V80.8694H62.0343C52.2129 82.7389 42.9886 83.7739 34.8174 84.0005ZM32.4372 81.6893V80.8694C32.4372 80.1072 32.8258 79.3942 33.4754 78.9645C46.5632 70.3074 56.3867 63.3922 62.9799 58.206L62.9905 58.1978C69.6671 53.0071 74.2418 48.5372 76.8716 44.7856C76.8773 44.7775 76.8831 44.7694 76.8889 44.7613C79.5578 41.0568 80.8156 37.3652 80.8156 33.6492C80.8156 28.7654 79.7354 25.4074 77.9286 23.234C77.922 23.226 77.9154 23.218 77.9089 23.2099C76.2469 21.1553 73.3595 19.8733 68.5999 19.8733C63.4283 19.8733 59.8869 21.1733 57.5703 23.418C55.2319 25.6839 53.4411 29.8832 52.5999 36.5523C52.4539 37.7093 51.4401 38.5789 50.2373 38.5789H41.9659C30.0356 43.5809 19.7553 49.5372 12.6357 55.3876C9.01639 58.3617 6.26107 61.2699 4.5118 63.9697C2.76075 66.6723 2.08436 69.0568 2.40519 71.0747C2.84438 73.8369 4.97947 76.2104 8.88576 78.0302C12.7779 79.8433 18.2533 81.0166 24.9682 81.4744C27.3198 81.6348 29.8152 81.7068 32.4372 81.6893Z" fill="url(#paint0_linear_1_3169)"/>
<defs>
<linearGradient id="paint0_linear_1_3169" x1="5.57864" y1="67.0273" x2="20.0296" y2="12.7285" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@@ -0,0 +1,9 @@
<svg width="145" height="98" viewBox="0 0 145 98" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.9515 84.0341C33.7684 84.3385 28.9484 84.3376 24.5949 84.0373C17.7393 83.5644 11.973 82.345 7.75662 80.3578C3.55451 78.3772 0.713038 75.5409 0.115148 71.7365C-0.327501 68.9199 0.526682 65.9612 2.32256 63.0258C4.11345 60.0986 6.87992 57.1244 10.4079 54.1885C17.4603 48.3197 27.7525 42.4418 40.059 37.2741L49.0623 32.9348C49.0885 32.9221 49.1148 32.9105 49.1412 32.8999L70.8457 18.6302H38.5945C37.2702 18.6302 36.1967 17.5778 36.1967 16.2797V3.0117C36.1967 1.71352 37.2702 0.661133 38.5945 0.661133H100.498C101.822 0.661133 102.896 1.71352 102.896 3.0117V16.2797C102.896 17.1018 102.458 17.8643 101.74 18.2902L92.8708 23.5566L99.3855 22.3176L99.4382 22.3124C111.768 21.1 122.604 21.3774 130.584 23.1696C134.572 24.0654 137.905 25.3523 140.359 27.0681C142.819 28.7885 144.457 30.9888 144.885 33.7083C145.482 37.5127 143.722 41.5578 140.451 45.5014C137.169 49.4584 132.228 53.4904 126.059 57.3846C119.991 61.2147 112.677 64.9481 104.462 68.3708C103.373 76.4414 100.224 83.1146 94.875 88.2254L94.8637 88.2361C88.0985 94.6165 78.7635 97.6611 67.1925 97.6611C58.8897 97.6611 51.6871 95.4534 45.7211 90.9415C43.1739 89.0152 40.9202 86.7075 38.9515 84.0341ZM47.8839 62.7147C47.6171 62.0565 47.0617 61.5514 46.3723 61.3397C45.6829 61.128 44.9328 61.2324 44.3307 61.6238L33.5035 68.6616C32.6025 69.2472 32.2127 70.3513 32.5516 71.3576C33.8487 75.2085 35.4541 78.6705 37.3783 81.7247C32.9219 81.9318 28.7661 81.9021 24.9828 81.6411C18.2697 81.1781 12.7964 79.9914 8.90618 78.1579C5.00171 76.3176 2.86967 73.9184 2.43116 71.1281C2.10565 69.0568 2.70003 66.7239 4.27485 64.1499C5.85466 61.5677 8.38103 58.8148 11.7734 55.9917C18.5559 50.3475 28.6032 44.5851 40.7874 39.4713L40.818 39.4585L46.8112 36.57C46.821 36.597 46.8315 36.6239 46.8424 36.6508L52.9622 51.6493C53.4521 52.8502 54.8397 53.4374 56.0672 52.9634C60.9959 51.0599 65.7982 50.1272 70.4877 50.1272C75.2247 50.1272 78.7925 51.1965 81.4063 53.1183L81.4201 53.1284C81.4259 53.1326 81.4317 53.1367 81.4376 53.1409C83.8065 54.8246 85.1547 57.4848 85.1547 61.6215C85.1547 67.2588 83.4182 71.2752 80.2148 74.0366C80.0423 74.1813 79.8674 74.3224 79.6899 74.46C78.4928 74.7955 77.2861 75.1232 76.0705 75.4425C72.1126 76.4822 68.2154 77.3926 64.4052 78.1759C60.6283 77.802 57.7367 76.6428 55.5791 74.8414C52.8501 72.4957 50.2455 68.5399 47.8839 62.7147ZM58.6304 79.2784C56.8876 78.6247 55.348 77.7385 54.0115 76.6201C51.2719 74.27 48.8014 70.6598 46.5998 65.7895C46.2794 65.0806 45.9647 64.3451 45.6557 63.5828L34.8285 70.6206C36.2342 74.7943 37.9997 78.4439 40.1251 81.5694C45.8875 81.1872 52.1037 80.4274 58.6304 79.2784ZM101.879 69.425C100.692 76.4429 97.7995 82.1486 93.2014 86.5422C87.0032 92.3878 78.3336 95.3106 67.1925 95.3106C59.3467 95.3106 52.6777 93.2338 47.1856 89.0804C45.2155 87.5904 43.422 85.8431 41.8052 83.8385C48.858 83.287 56.5181 82.1953 64.5437 80.5493C65.3949 80.6218 66.2779 80.6581 67.1925 80.6581C72.6015 80.6581 77.1487 79.2933 80.8341 76.5637C88.2648 74.4538 95.3345 72.0405 101.879 69.425ZM102.238 66.7887C102.412 65.133 102.499 63.4107 102.499 61.6215C102.499 53.9299 99.9488 48.0074 94.849 43.854C89.8277 39.6236 82.8057 37.5084 73.783 37.5084C72.3022 37.5084 70.7111 37.5805 69.0097 37.7246C67.1956 37.8782 65.256 38.1139 63.1911 38.4314L100.498 16.2797V3.0117H38.5945V16.2797H78.7259L49.0686 35.7778L55.1883 50.7762C60.3666 48.7764 65.4664 47.7767 70.4877 47.7767C75.5875 47.7767 79.7066 48.9304 82.8449 51.2379C85.9833 53.4684 87.5524 56.9296 87.5524 61.6215C87.5524 66.2671 86.4567 70.1017 84.2653 73.1252C90.6002 71.204 96.6274 69.0685 102.238 66.7887ZM104.74 65.7511C112.439 62.4912 119.286 58.9676 124.978 55.3742C131.019 51.5608 135.701 47.7068 138.729 44.0559C141.768 40.3916 143.007 37.107 142.568 34.3167C142.26 32.3539 141.06 30.5984 138.909 29.0944C136.752 27.5858 133.703 26.3796 129.868 25.5182C122.212 23.7986 111.657 23.5043 99.4824 24.6976L90.0422 26.493C89.5381 26.5889 89.081 26.3479 88.8787 25.927L73.329 35.1599C73.4813 35.1585 73.6326 35.1578 73.783 35.1578C83.1621 35.1578 90.8062 37.3562 96.3967 42.0585C102.137 46.7413 104.896 53.3805 104.896 61.6215C104.896 63.0331 104.844 64.4098 104.74 65.7511Z" fill="url(#paint0_linear_1_3174)"/>
<defs>
<linearGradient id="paint0_linear_1_3174" x1="5.57864" y1="67.0273" x2="20.0296" y2="12.7285" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1,14 @@
<svg width="145" height="98" viewBox="0 0 145 98" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M76.7999 62.6744V21.095L44.5417 62.6744H76.7999ZM49.1258 60.3738L74.6437 27.4823V60.3738H49.1258Z" fill="url(#paint0_linear_1_3179)"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M104.719 69.5394C112.74 65.9858 119.896 62.1587 125.861 58.2669C132.059 54.2231 137.027 50.0735 140.34 46.0409C143.633 42.0334 145.456 37.9289 144.902 34.0885C144.505 31.34 142.883 29.1655 140.462 27.5023C138.044 25.841 134.744 24.628 130.785 23.8206C122.86 22.2046 112.062 22.169 99.7455 23.6636L99.7181 23.667L93.0286 24.8654V2.96178C93.0286 1.69117 92.0632 0.661133 90.8723 0.661133H75.7174C75.0836 0.661133 74.4819 0.958656 74.0722 1.47463L44.3558 38.8998C44.0907 38.6365 43.6931 38.554 43.3094 38.7238C30.9526 44.1914 19.8817 50.6387 12.052 56.987C8.14123 60.158 4.98889 63.3443 2.89426 66.4162C0.808053 69.4758 -0.333601 72.5829 0.0862154 75.4903C0.640754 79.3307 3.45795 82.1084 7.60101 83.9901C11.77 85.8836 17.4949 86.9762 24.3228 87.296C37.6536 87.9204 55.4239 85.6084 74.6437 80.248V95.3605C74.6437 96.6311 75.6091 97.6611 76.7999 97.6611H90.8723C92.0632 97.6611 93.0286 96.6311 93.0286 95.3605V79.5279H102.563C103.754 79.5279 104.719 78.4979 104.719 77.2272V69.5394ZM104.719 62.6744C104.719 61.4038 103.754 60.3738 102.563 60.3738H93.0286V27.2086L99.7925 25.9968C111.989 24.5187 122.557 24.574 130.209 26.1344C134.041 26.9158 137.085 28.0634 139.231 29.5376C141.374 31.0097 142.539 32.7452 142.819 34.684C143.217 37.4455 141.955 40.7722 138.851 44.5501C135.768 48.3029 131.028 52.293 124.936 56.2678C119.234 59.9881 112.396 63.6636 104.719 67.0968V62.6744ZM102.563 68.0452V62.6744H90.8723V2.96178H75.7174L28.3043 62.6744V77.2272H76.7999V77.2665C86.0058 74.5894 94.6942 71.4489 102.563 68.0452ZM76.7999 79.6355C85.9732 76.9827 94.6593 73.8676 102.563 70.4791V77.2272H90.8723V95.3605H76.7999V79.6355ZM68.4442 79.5279H28.3043C27.1135 79.5279 26.1481 78.4979 26.1481 77.2272V62.6744C26.1481 62.1298 26.3292 61.6028 26.6591 61.1873L42.1368 41.6945C30.6197 46.9322 20.4222 52.9658 13.1771 58.8402C9.3653 61.9308 6.42088 64.9373 4.52605 67.7162C2.62279 70.5074 1.88226 72.909 2.16899 74.8948C2.56774 77.6563 4.65267 80.0261 8.5583 81.8C12.438 83.5621 17.9084 84.6332 24.6199 84.9475C36.3412 85.4965 51.6605 83.73 68.4442 79.5279Z" fill="url(#paint1_linear_1_3179)"/>
<defs>
<linearGradient id="paint0_linear_1_3179" x1="5.57864" y1="67.0273" x2="20.0296" y2="12.7285" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint1_linear_1_3179" x1="5.57864" y1="67.0273" x2="20.0296" y2="12.7285" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -1,3 +0,0 @@
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.7509 15.5482C16.8299 15.6272 16.8925 15.721 16.9353 15.8241C16.978 15.9273 17 16.0379 17 16.1496C17 16.2613 16.978 16.3718 16.9353 16.475C16.8925 16.5782 16.8299 16.6719 16.7509 16.7509C16.6719 16.8299 16.5782 16.8925 16.475 16.9353C16.3718 16.978 16.2613 17 16.1496 17C16.0379 17 15.9273 16.978 15.8241 16.9353C15.721 16.8925 15.6272 16.8299 15.5482 16.7509L8.5 9.70162L1.45177 16.7509C1.29228 16.9104 1.07597 17 0.850425 17C0.624878 17 0.408569 16.9104 0.249084 16.7509C0.0895981 16.5914 4.44607e-09 16.3751 0 16.1496C-4.44607e-09 15.924 0.0895981 15.7077 0.249084 15.5482L7.29838 8.5L0.249084 1.45177C0.0895981 1.29228 0 1.07597 0 0.850425C0 0.624878 0.0895981 0.408569 0.249084 0.249084C0.408569 0.0895981 0.624878 0 0.850425 0C1.07597 0 1.29228 0.0895981 1.45177 0.249084L8.5 7.29838L15.5482 0.249084C15.7077 0.0895981 15.924 -4.44607e-09 16.1496 0C16.3751 4.44607e-09 16.5914 0.0895981 16.7509 0.249084C16.9104 0.408569 17 0.624878 17 0.850425C17 1.07597 16.9104 1.29228 16.7509 1.45177L9.70162 8.5L16.7509 15.5482Z" fill="#000"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -1,288 +0,0 @@
<svg width="1015" height="351" viewBox="0 0 1015 351" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="path-1-inside-1_1981_7883" fill="white">
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.5 243.035C38.3203 243.035 32.5 237.215 32.5 230.035L32.5 36C32.5 28.8203 38.3203 23 45.5 23C52.6797 23 58.5 28.8203 58.5 36L58.5 230.035C58.5 237.215 52.6797 243.035 45.5 243.035ZM131 243C123.82 243 118 237.18 118 230L118 89C118 81.8203 123.82 76 131 76C138.18 76 144 81.8203 144 89L144 230C144 237.18 138.18 243 131 243ZM203 230C203 237.18 208.82 243 216 243C223.18 243 229 237.18 229 230L229 204C229 196.82 223.18 191 216 191C208.82 191 203 196.82 203 204V230Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.5 243.035C38.3203 243.035 32.5 237.215 32.5 230.035L32.5 36C32.5 28.8203 38.3203 23 45.5 23C52.6797 23 58.5 28.8203 58.5 36L58.5 230.035C58.5 237.215 52.6797 243.035 45.5 243.035ZM131 243C123.82 243 118 237.18 118 230L118 89C118 81.8203 123.82 76 131 76C138.18 76 144 81.8203 144 89L144 230C144 237.18 138.18 243 131 243ZM203 230C203 237.18 208.82 243 216 243C223.18 243 229 237.18 229 230L229 204C229 196.82 223.18 191 216 191C208.82 191 203 196.82 203 204V230Z" fill="#F4F1F0"/>
<path d="M32.5 230.035L30.5 230.035L32.5 230.035ZM32.5 36L30.5 36L30.5 36L32.5 36ZM58.5 36L56.5 36L56.5 36L58.5 36ZM58.5 230.035L60.5 230.035L60.5 230.035L58.5 230.035ZM118 230L120 230V230L118 230ZM118 89L116 89V89L118 89ZM144 89L142 89V89L144 89ZM144 230L146 230V230L144 230ZM229 230L231 230L231 230L229 230ZM229 204L227 204L227 204L229 204ZM30.5 230.035C30.5 238.319 37.2158 245.035 45.5 245.035V241.035C39.4249 241.035 34.5 236.11 34.5 230.035L30.5 230.035ZM30.5 36L30.5 230.035L34.5 230.035L34.5 36L30.5 36ZM45.5 21C37.2157 21 30.5 27.7157 30.5 36H34.5C34.5 29.9249 39.4249 25 45.5 25V21ZM60.5 36C60.5 27.7157 53.7843 21 45.5 21V25C51.5751 25 56.5 29.9249 56.5 36H60.5ZM60.5 230.035L60.5 36L56.5 36L56.5 230.035L60.5 230.035ZM45.5 245.035C53.7843 245.035 60.5 238.319 60.5 230.035H56.5C56.5 236.11 51.5752 241.035 45.5 241.035V245.035ZM116 230C116 238.284 122.716 245 131 245V241C124.925 241 120 236.075 120 230H116ZM116 89L116 230L120 230L120 89L116 89ZM131 74C122.716 74 116 80.7157 116 89H120C120 82.9249 124.925 78 131 78V74ZM146 89C146 80.7157 139.284 74 131 74V78C137.075 78 142 82.9249 142 89H146ZM146 230L146 89L142 89L142 230L146 230ZM131 245C139.284 245 146 238.284 146 230H142C142 236.075 137.075 241 131 241V245ZM216 241C209.925 241 205 236.075 205 230H201C201 238.284 207.716 245 216 245V241ZM227 230C227 236.075 222.075 241 216 241V245C224.284 245 231 238.284 231 230H227ZM227 204L227 230L231 230L231 204L227 204ZM216 193C222.075 193 227 197.925 227 204H231C231 195.716 224.284 189 216 189V193ZM205 204C205 197.925 209.925 193 216 193V189C207.716 189 201 195.716 201 204H205ZM205 230V204H201V230H205Z" fill="url(#paint0_linear_1981_7883)" mask="url(#path-1-inside-1_1981_7883)"/>
<mask id="path-3-inside-2_1981_7883" fill="white">
<path fill-rule="evenodd" clip-rule="evenodd" d="M362.5 243.035C355.32 243.035 349.5 237.215 349.5 230.035L349.5 36C349.5 28.8203 355.32 23 362.5 23C369.68 23 375.5 28.8203 375.5 36L375.5 230.035C375.5 237.215 369.68 243.035 362.5 243.035ZM447.5 243C440.044 243 434 236.956 434 229.5L434 114.5C434 107.044 440.044 101 447.5 101C454.956 101 461 107.044 461 114.5L461 229.5C461 236.956 454.956 243 447.5 243ZM520 230C520 237.18 525.82 243 533 243C540.18 243 546 237.18 546 230C546 222.82 540.18 217 533 217C525.82 217 520 222.82 520 230Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M362.5 243.035C355.32 243.035 349.5 237.215 349.5 230.035L349.5 36C349.5 28.8203 355.32 23 362.5 23C369.68 23 375.5 28.8203 375.5 36L375.5 230.035C375.5 237.215 369.68 243.035 362.5 243.035ZM447.5 243C440.044 243 434 236.956 434 229.5L434 114.5C434 107.044 440.044 101 447.5 101C454.956 101 461 107.044 461 114.5L461 229.5C461 236.956 454.956 243 447.5 243ZM520 230C520 237.18 525.82 243 533 243C540.18 243 546 237.18 546 230C546 222.82 540.18 217 533 217C525.82 217 520 222.82 520 230Z" fill="#F4F1F0"/>
<path d="M349.5 230.035L347.5 230.035L349.5 230.035ZM349.5 36L347.5 36V36L349.5 36ZM375.5 36L373.5 36V36L375.5 36ZM375.5 230.035L377.5 230.035V230.035L375.5 230.035ZM434 229.5L436 229.5V229.5L434 229.5ZM434 114.5L432 114.5V114.5L434 114.5ZM461 114.5L459 114.5V114.5L461 114.5ZM461 229.5L463 229.5V229.5L461 229.5ZM546 230L548 230L548 230L546 230ZM347.5 230.035C347.5 238.319 354.216 245.035 362.5 245.035V241.035C356.425 241.035 351.5 236.11 351.5 230.035L347.5 230.035ZM347.5 36L347.5 230.035L351.5 230.035L351.5 36L347.5 36ZM362.5 21C354.216 21 347.5 27.7157 347.5 36H351.5C351.5 29.9249 356.425 25 362.5 25V21ZM377.5 36C377.5 27.7157 370.784 21 362.5 21V25C368.575 25 373.5 29.9249 373.5 36H377.5ZM377.5 230.035L377.5 36L373.5 36L373.5 230.035L377.5 230.035ZM362.5 245.035C370.784 245.035 377.5 238.319 377.5 230.035H373.5C373.5 236.11 368.575 241.035 362.5 241.035V245.035ZM432 229.5C432 238.06 438.94 245 447.5 245V241C441.149 241 436 235.851 436 229.5H432ZM432 114.5L432 229.5L436 229.5L436 114.5L432 114.5ZM447.5 99C438.94 99 432 105.94 432 114.5H436C436 108.149 441.149 103 447.5 103V99ZM463 114.5C463 105.94 456.06 99 447.5 99V103C453.851 103 459 108.149 459 114.5H463ZM463 229.5L463 114.5L459 114.5L459 229.5L463 229.5ZM447.5 245C456.06 245 463 238.06 463 229.5H459C459 235.851 453.851 241 447.5 241V245ZM533 241C526.925 241 522 236.075 522 230H518C518 238.284 524.716 245 533 245V241ZM544 230C544 236.075 539.075 241 533 241V245C541.284 245 548 238.284 548 230H544ZM533 219C539.075 219 544 223.925 544 230L548 230C548 221.716 541.284 215 533 215V219ZM522 230C522 223.925 526.925 219 533 219V215C524.716 215 518 221.716 518 230H522Z" fill="url(#paint1_linear_1981_7883)" mask="url(#path-3-inside-2_1981_7883)"/>
<mask id="path-5-inside-3_1981_7883" fill="white">
<path fill-rule="evenodd" clip-rule="evenodd" d="M679.5 243.035C672.32 243.035 666.5 237.215 666.5 230.035L666.5 36C666.5 28.8203 672.32 23 679.5 23C686.68 23 692.5 28.8203 692.5 36L692.5 230.035C692.5 237.215 686.68 243.035 679.5 243.035ZM765 243C757.82 243 752 237.18 752 230L752 57C752 49.8203 757.82 44 765 44C772.18 44 778 49.8203 778 57L778 230C778 237.18 772.18 243 765 243ZM837 230C837 237.18 842.82 243 850 243C857.18 243 863 237.18 863 230L863 149C863 141.82 857.18 136 850 136C842.82 136 837 141.82 837 149V230Z"/>
</mask>
<path fill-rule="evenodd" clip-rule="evenodd" d="M679.5 243.035C672.32 243.035 666.5 237.215 666.5 230.035L666.5 36C666.5 28.8203 672.32 23 679.5 23C686.68 23 692.5 28.8203 692.5 36L692.5 230.035C692.5 237.215 686.68 243.035 679.5 243.035ZM765 243C757.82 243 752 237.18 752 230L752 57C752 49.8203 757.82 44 765 44C772.18 44 778 49.8203 778 57L778 230C778 237.18 772.18 243 765 243ZM837 230C837 237.18 842.82 243 850 243C857.18 243 863 237.18 863 230L863 149C863 141.82 857.18 136 850 136C842.82 136 837 141.82 837 149V230Z" fill="#F4F1F0"/>
<path d="M666.5 230.035L664.5 230.035L666.5 230.035ZM666.5 36L664.5 36V36L666.5 36ZM692.5 36L690.5 36V36L692.5 36ZM692.5 230.035L694.5 230.035V230.035L692.5 230.035ZM752 230L754 230V230L752 230ZM752 57L750 57V57L752 57ZM778 57L776 57V57L778 57ZM778 230L780 230V230L778 230ZM863 230L865 230V230L863 230ZM863 149L861 149V149L863 149ZM664.5 230.035C664.5 238.319 671.216 245.035 679.5 245.035V241.035C673.425 241.035 668.5 236.11 668.5 230.035L664.5 230.035ZM664.5 36L664.5 230.035L668.5 230.035L668.5 36L664.5 36ZM679.5 21C671.216 21 664.5 27.7157 664.5 36H668.5C668.5 29.9249 673.425 25 679.5 25V21ZM694.5 36C694.5 27.7157 687.784 21 679.5 21V25C685.575 25 690.5 29.9249 690.5 36H694.5ZM694.5 230.035L694.5 36L690.5 36L690.5 230.035L694.5 230.035ZM679.5 245.035C687.784 245.035 694.5 238.319 694.5 230.035H690.5C690.5 236.11 685.575 241.035 679.5 241.035V245.035ZM750 230C750 238.284 756.716 245 765 245V241C758.925 241 754 236.075 754 230H750ZM750 57L750 230L754 230L754 57L750 57ZM765 42C756.716 42 750 48.7157 750 57H754C754 50.9249 758.925 46 765 46V42ZM780 57C780 48.7157 773.284 42 765 42V46C771.075 46 776 50.9249 776 57H780ZM780 230L780 57L776 57L776 230L780 230ZM765 245C773.284 245 780 238.284 780 230H776C776 236.075 771.075 241 765 241V245ZM850 241C843.925 241 839 236.075 839 230H835C835 238.284 841.716 245 850 245V241ZM861 230C861 236.075 856.075 241 850 241V245C858.284 245 865 238.284 865 230H861ZM861 149L861 230L865 230L865 149L861 149ZM850 138C856.075 138 861 142.925 861 149H865C865 140.716 858.284 134 850 134V138ZM839 149C839 142.925 843.925 138 850 138V134C841.716 134 835 140.716 835 149H839ZM839 230V149H835V230H839Z" fill="url(#paint2_linear_1981_7883)" mask="url(#path-5-inside-3_1981_7883)"/>
<path d="M91.4781 296.378C92.1842 298.317 92.3704 300.414 92.0181 302.458C91.6658 304.502 90.7873 306.423 89.4703 308.029C86.2862 312.155 80.7892 316.281 73.6741 320.594C68.079 324.208 63.3997 329.092 60.0177 334.848C56.0469 340.785 52.5699 342.189 47.8048 339.939C45.0981 338.686 42.51 337.192 40.0712 335.474C43.6941 334.512 46.0418 330.977 48.894 327.018C52.2192 321.697 56.6809 317.181 61.9513 313.802C69.4838 309.42 74.7317 304.744 77.5311 299.895C78.6354 298.17 79.3476 296.224 79.6162 294.197C79.8849 292.17 79.7033 290.112 79.0845 288.173C78.8603 287.55 78.5959 286.943 78.293 286.356C82.8455 289.056 90.5188 292.89 91.4781 296.378Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M89.5711 296.986L89.5497 296.908C89.4521 296.553 89.1001 295.965 88.2653 295.16C87.4642 294.387 86.385 293.573 85.1264 292.737C84.0056 291.993 82.8184 291.278 81.6366 290.591C81.7814 291.872 81.7696 293.172 81.5989 294.46C81.2937 296.763 80.4882 298.973 79.2404 300.935C76.1948 306.186 70.6355 311.058 62.9951 315.509C57.99 318.725 53.7513 323.019 50.5901 328.078L50.5552 328.134L50.5168 328.187C50.3485 328.421 50.1801 328.656 50.0114 328.891C48.7924 330.591 47.5572 332.314 46.235 333.733C45.5712 334.446 44.8562 335.116 44.0701 335.696C45.5493 336.587 47.0764 337.398 48.6451 338.124L48.652 338.128L48.6588 338.131C50.7075 339.098 52.1602 339.148 53.4441 338.616C54.8461 338.036 56.4241 336.613 58.3236 333.783C61.861 327.781 66.7477 322.687 72.589 318.914L72.613 318.899L72.6374 318.884C79.7168 314.592 84.9416 310.623 87.8871 306.807L87.9052 306.784L87.924 306.761C89.0217 305.422 89.7537 303.821 90.0471 302.118C90.3406 300.416 90.185 298.672 89.5988 297.062L89.5711 296.986ZM60.0177 334.848C56.0469 340.785 52.5699 342.189 47.8048 339.939C45.848 339.033 43.9533 338.001 42.1321 336.85C41.4341 336.409 40.7469 335.95 40.0712 335.474C40.8432 335.269 41.5572 334.948 42.2306 334.53C44.527 333.105 46.3503 330.563 48.3834 327.729C48.552 327.494 48.7221 327.257 48.894 327.018C52.2192 321.697 56.6809 317.181 61.9513 313.802C69.4838 309.42 74.7317 304.744 77.5311 299.895C78.6354 298.17 79.3476 296.224 79.6162 294.197C79.8332 292.559 79.7564 290.902 79.3927 289.303C79.3062 288.922 79.2035 288.545 79.0845 288.173C78.8603 287.55 78.5959 286.943 78.293 286.356C78.9801 286.763 79.7383 287.197 80.5338 287.651C80.5561 287.663 80.5784 287.676 80.6008 287.689C80.6085 287.693 80.6162 287.698 80.6239 287.702C80.7869 287.795 80.9515 287.889 81.1172 287.984C85.4863 290.481 90.6986 293.543 91.4781 296.378C92.1842 298.317 92.3704 300.414 92.0181 302.458C91.6658 304.502 90.7873 306.423 89.4703 308.029C86.2862 312.155 80.7892 316.281 73.6741 320.594C68.079 324.208 63.3997 329.092 60.0177 334.848Z" fill="url(#paint3_linear_1981_7883)"/>
<path d="M33.062 321.745C32.9073 315.596 35.2502 308.146 39.8367 300.202C48.4828 285.226 65.6859 278.889 78.18 286.102C81.5225 287.78 84.1587 290.594 85.625 294.05C86.128 295.65 86.2665 297.347 86.0305 299.015C85.7944 300.683 85.1897 302.28 84.2609 303.688C81.7198 308.089 76.7478 312.614 69.6549 316.725C64.0406 320.288 59.2823 325.066 55.7316 330.706C50.7811 337.605 48.3274 340.506 42.1334 336.93C39.3779 335.487 37.0755 333.308 35.4763 330.631C33.877 327.954 33.042 324.881 33.062 321.745Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M35.0622 321.726L35.062 321.757C35.0443 324.53 35.7825 327.244 37.1932 329.606C38.6038 331.967 40.6335 333.887 43.0613 335.158L43.0977 335.177L43.1334 335.198C44.5499 336.016 45.5879 336.364 46.3828 336.447C47.1216 336.524 47.7479 336.384 48.4104 336.007C49.125 335.601 49.9142 334.899 50.8748 333.785C51.8225 332.687 52.8452 331.297 54.0718 329.588C57.7767 323.72 62.735 318.747 68.5834 315.037L68.6173 315.015L68.652 314.995C75.5871 310.975 80.2308 306.668 82.5289 302.688L82.5586 302.637L82.5913 302.587C83.3573 301.425 83.8557 300.109 84.0502 298.734C84.2402 297.392 84.1354 296.029 83.7452 294.741C82.456 291.761 80.1704 289.339 77.2829 287.89L77.2306 287.863L77.18 287.834C65.925 281.336 49.8412 286.873 41.5688 301.202C37.082 308.973 34.9195 316.052 35.0614 321.694L35.0622 321.726ZM85.625 294.05C86.128 295.65 86.2665 297.347 86.0305 299.015C85.7944 300.683 85.1897 302.28 84.2609 303.688C81.7198 308.089 76.7478 312.614 69.6549 316.725C64.0406 320.288 59.2823 325.066 55.7316 330.706C50.7811 337.605 48.3274 340.506 42.1334 336.93C39.3779 335.487 37.0755 333.308 35.4763 330.631C33.877 327.954 33.042 324.881 33.062 321.745C32.9073 315.596 35.2502 308.146 39.8367 300.202C48.4828 285.226 65.6859 278.889 78.18 286.102C81.5225 287.78 84.1587 290.594 85.625 294.05Z" fill="url(#paint4_linear_1981_7883)"/>
<path d="M43.0747 315.48C44.5312 312.957 47.1983 311.73 49.0034 312.772C50.8085 313.814 51.0968 316.748 49.6403 319.271C48.1838 321.793 45.4813 323 43.6939 321.968C41.9065 320.936 41.6285 317.985 43.0747 315.48Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M46.7409 314.608C46.0827 314.909 45.3498 315.539 44.8067 316.48C44.2727 317.405 44.0933 318.357 44.1627 319.087C44.2336 319.833 44.5211 320.137 44.6939 320.236C44.8746 320.341 45.2887 320.436 45.9682 320.13C46.6346 319.829 47.3705 319.202 47.9082 318.271C48.4486 317.335 48.6255 316.385 48.5545 315.661C48.4826 314.928 48.1959 314.615 48.0034 314.504C47.8135 314.394 47.4064 314.303 46.7409 314.608ZM49.0034 312.772C47.1983 311.73 44.5312 312.957 43.0747 315.48C41.6285 317.985 41.9065 320.936 43.6939 321.968C45.4813 323 48.1838 321.793 49.6403 319.271C51.0968 316.748 50.8085 313.814 49.0034 312.772Z" fill="url(#paint5_linear_1981_7883)"/>
<path d="M408.478 296.378C409.184 298.317 409.37 300.414 409.018 302.458C408.666 304.502 407.787 306.423 406.47 308.029C403.286 312.155 397.789 316.281 390.674 320.594C385.079 324.208 380.4 329.092 377.018 334.848C373.047 340.785 369.57 342.189 364.805 339.939C362.098 338.686 359.51 337.192 357.071 335.474C360.694 334.512 363.042 330.977 365.894 327.018C369.219 321.697 373.681 317.181 378.951 313.802C386.484 309.42 391.732 304.744 394.531 299.895C395.635 298.17 396.348 296.224 396.616 294.197C396.885 292.17 396.703 290.112 396.085 288.173C395.86 287.55 395.596 286.943 395.293 286.356C399.846 289.056 407.519 292.89 408.478 296.378Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M406.571 296.986L406.55 296.908C406.452 296.553 406.1 295.965 405.265 295.16C404.464 294.387 403.385 293.573 402.126 292.737C401.006 291.993 399.818 291.278 398.637 290.591C398.781 291.872 398.77 293.172 398.599 294.46C398.294 296.763 397.488 298.973 396.24 300.935C393.195 306.186 387.635 311.058 379.995 315.509C374.99 318.725 370.751 323.019 367.59 328.078L367.555 328.134L367.517 328.187C367.348 328.421 367.18 328.656 367.011 328.891C365.792 330.591 364.557 332.314 363.235 333.733C362.571 334.446 361.856 335.116 361.07 335.696C362.549 336.587 364.076 337.398 365.645 338.124L365.652 338.128L365.659 338.131C367.708 339.098 369.16 339.148 370.444 338.616C371.846 338.036 373.424 336.613 375.324 333.783C378.861 327.781 383.748 322.687 389.589 318.914L389.613 318.899L389.637 318.884C396.717 314.592 401.942 310.623 404.887 306.807L404.905 306.784L404.924 306.761C406.022 305.422 406.754 303.821 407.047 302.118C407.341 300.416 407.185 298.672 406.599 297.062L406.571 296.986ZM377.018 334.848C373.047 340.785 369.57 342.189 364.805 339.939C362.848 339.033 360.953 338.001 359.132 336.85C358.434 336.409 357.747 335.95 357.071 335.474C357.843 335.269 358.557 334.948 359.231 334.53C361.527 333.105 363.35 330.563 365.383 327.729C365.552 327.494 365.722 327.257 365.894 327.018C369.219 321.697 373.681 317.181 378.951 313.802C386.484 309.42 391.732 304.744 394.531 299.895C395.635 298.17 396.348 296.224 396.616 294.197C396.833 292.559 396.756 290.902 396.393 289.303C396.306 288.922 396.203 288.545 396.085 288.173C395.86 287.55 395.596 286.943 395.293 286.356C395.98 286.763 396.738 287.197 397.534 287.651C397.556 287.663 397.578 287.676 397.601 287.689C397.608 287.693 397.616 287.698 397.624 287.702C397.787 287.795 397.951 287.889 398.117 287.984C402.486 290.481 407.699 293.543 408.478 296.378C409.184 298.317 409.37 300.414 409.018 302.458C408.666 304.502 407.787 306.423 406.47 308.029C403.286 312.155 397.789 316.281 390.674 320.594C385.079 324.208 380.4 329.092 377.018 334.848Z" fill="url(#paint6_linear_1981_7883)"/>
<path d="M350.062 321.745C349.907 315.596 352.25 308.146 356.837 300.202C365.483 285.226 382.686 278.889 395.18 286.102C398.523 287.78 401.159 290.594 402.625 294.05C403.128 295.65 403.267 297.347 403.03 299.015C402.794 300.683 402.19 302.28 401.261 303.688C398.72 308.089 393.748 312.614 386.655 316.725C381.041 320.288 376.282 325.066 372.732 330.706C367.781 337.605 365.327 340.506 359.133 336.93C356.378 335.487 354.076 333.308 352.476 330.631C350.877 327.954 350.042 324.881 350.062 321.745Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M352.062 321.726L352.062 321.757C352.044 324.53 352.783 327.244 354.193 329.606C355.604 331.967 357.633 333.887 360.061 335.158L360.098 335.177L360.133 335.198C361.55 336.016 362.588 336.364 363.383 336.447C364.122 336.524 364.748 336.384 365.41 336.007C366.125 335.601 366.914 334.899 367.875 333.785C368.822 332.687 369.845 331.297 371.072 329.588C374.777 323.72 379.735 318.747 385.583 315.037L385.617 315.015L385.652 314.995C392.587 310.975 397.231 306.668 399.529 302.688L399.559 302.637L399.591 302.587C400.357 301.425 400.856 300.109 401.05 298.734C401.24 297.392 401.135 296.029 400.745 294.741C399.456 291.761 397.17 289.339 394.283 287.89L394.231 287.863L394.18 287.834C382.925 281.336 366.841 286.873 358.569 301.202C354.082 308.973 351.919 316.052 352.061 321.694L352.062 321.726ZM402.625 294.05C403.128 295.65 403.267 297.347 403.03 299.015C402.794 300.683 402.19 302.28 401.261 303.688C398.72 308.089 393.748 312.614 386.655 316.725C381.041 320.288 376.282 325.066 372.732 330.706C367.781 337.605 365.327 340.506 359.133 336.93C356.378 335.487 354.076 333.308 352.476 330.631C350.877 327.954 350.042 324.881 350.062 321.745C349.907 315.596 352.25 308.146 356.837 300.202C365.483 285.226 382.686 278.889 395.18 286.102C398.523 287.78 401.159 290.594 402.625 294.05Z" fill="url(#paint7_linear_1981_7883)"/>
<path d="M360.075 315.48C361.531 312.957 364.198 311.73 366.003 312.772C367.809 313.814 368.097 316.748 366.64 319.271C365.184 321.793 362.481 323 360.694 321.968C358.906 320.936 358.629 317.985 360.075 315.48Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M363.741 314.608C363.083 314.909 362.35 315.539 361.807 316.48C361.273 317.405 361.093 318.357 361.163 319.087C361.234 319.833 361.521 320.137 361.694 320.236C361.875 320.341 362.289 320.436 362.968 320.13C363.635 319.829 364.371 319.202 364.908 318.271C365.449 317.335 365.625 316.385 365.555 315.661C365.483 314.928 365.196 314.615 365.003 314.504C364.814 314.394 364.406 314.303 363.741 314.608ZM366.003 312.772C364.198 311.73 361.531 312.957 360.075 315.48C358.629 317.985 358.906 320.936 360.694 321.968C362.481 323 365.184 321.793 366.64 319.271C368.097 316.748 367.809 313.814 366.003 312.772Z" fill="url(#paint8_linear_1981_7883)"/>
<path d="M206.164 334.139C203.818 331.793 203.818 327.989 206.164 325.642C208.511 323.296 212.315 323.296 214.661 325.642L215.369 326.35C217.716 328.697 217.716 332.501 215.369 334.847C213.023 337.194 209.219 337.194 206.873 334.847L206.164 334.139Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M213.955 327.764L213.247 327.056C211.682 325.491 209.144 325.491 207.579 327.056C206.013 328.622 206.013 331.16 207.579 332.725L208.287 333.433C209.852 334.998 212.39 334.998 213.955 333.433C215.521 331.868 215.521 329.33 213.955 327.764ZM206.164 325.642C203.818 327.989 203.818 331.793 206.164 334.139L206.873 334.847C209.219 337.194 213.023 337.194 215.369 334.847C217.716 332.501 217.716 328.697 215.369 326.35L214.661 325.642C212.315 323.296 208.511 323.296 206.164 325.642Z" fill="url(#paint9_linear_1981_7883)"/>
<path d="M243.161 297.493C240.326 294.658 240.326 290.061 243.161 287.226C245.996 284.391 250.593 284.391 253.428 287.226L255.028 288.826C256.784 290.582 256.784 293.429 255.028 295.185L247.94 302.272L243.161 297.493Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M253.614 290.24L252.014 288.64C249.96 286.586 246.629 286.586 244.575 288.64C242.521 290.694 242.521 294.025 244.575 296.079L247.94 299.444L253.614 293.771C254.589 292.796 254.589 291.215 253.614 290.24ZM243.161 287.226C240.326 290.061 240.326 294.658 243.161 297.493L247.94 302.272L255.028 295.185C256.784 293.429 256.784 290.582 255.028 288.826L253.428 287.226C250.593 284.391 245.996 284.391 243.161 287.226Z" fill="url(#paint10_linear_1981_7883)"/>
<path d="M233.071 295.901C230.724 293.554 230.724 289.75 233.071 287.404C235.417 285.058 239.221 285.058 241.568 287.404L247.94 293.777C250.287 296.123 250.287 299.927 247.94 302.273C245.594 304.62 241.79 304.62 239.443 302.273L233.071 295.901Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M246.526 295.191L240.153 288.818C238.588 287.253 236.05 287.253 234.485 288.818C232.92 290.383 232.92 292.921 234.485 294.487L240.858 300.859C242.423 302.425 244.961 302.425 246.526 300.859C248.091 299.294 248.091 296.756 246.526 295.191ZM233.071 287.404C230.724 289.75 230.724 293.554 233.071 295.901L239.443 302.273C241.79 304.62 245.594 304.62 247.94 302.273C250.287 299.927 250.287 296.123 247.94 293.777L241.568 287.404C239.221 285.058 235.417 285.058 233.071 287.404Z" fill="url(#paint11_linear_1981_7883)"/>
<path d="M226.7 298.026C224.353 295.679 224.353 291.875 226.7 289.529C229.046 287.183 232.85 287.183 235.197 289.529L243.693 298.026C246.04 300.372 246.04 304.176 243.693 306.523C241.347 308.869 237.543 308.869 235.197 306.523L226.7 298.026Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M242.279 299.44L233.782 290.943C232.217 289.378 229.679 289.378 228.114 290.943C226.549 292.508 226.549 295.046 228.114 296.612L236.611 305.109C238.176 306.674 240.714 306.674 242.279 305.109C243.845 303.543 243.845 301.005 242.279 299.44ZM226.7 289.529C224.353 291.875 224.353 295.679 226.7 298.026L235.197 306.523C237.543 308.869 241.347 308.869 243.693 306.523C246.04 304.176 246.04 300.372 243.693 298.026L235.197 289.529C232.85 287.183 229.046 287.183 226.7 289.529Z" fill="url(#paint12_linear_1981_7883)"/>
<path d="M204.748 325.639C202.402 323.293 202.402 319.489 204.748 317.142C207.095 314.796 210.899 314.796 213.245 317.142L218.91 322.807C221.256 325.153 221.256 328.957 218.91 331.304C216.564 333.65 212.759 333.65 210.413 331.304L204.748 325.639Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M217.496 324.221L211.831 318.556C210.266 316.991 207.728 316.991 206.163 318.556C204.597 320.122 204.597 322.66 206.163 324.225L211.827 329.889C213.393 331.455 215.93 331.455 217.496 329.889C219.061 328.324 219.061 325.786 217.496 324.221ZM204.748 317.142C202.402 319.489 202.402 323.293 204.748 325.639L210.413 331.304C212.759 333.65 216.564 333.65 218.91 331.304C221.256 328.957 221.256 325.153 218.91 322.807L213.245 317.142C210.899 314.796 207.095 314.796 204.748 317.142Z" fill="url(#paint13_linear_1981_7883)"/>
<path d="M206.873 317.85C204.527 315.504 204.527 311.699 206.873 309.353C209.22 307.007 213.024 307.007 215.37 309.353L223.867 317.85C226.214 320.196 226.214 324.001 223.867 326.347C221.521 328.693 217.717 328.693 215.37 326.347L206.873 317.85Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M222.453 319.264L213.956 310.767C212.391 309.202 209.853 309.202 208.288 310.767C206.722 312.333 206.722 314.87 208.288 316.436L216.785 324.933C218.35 326.498 220.888 326.498 222.453 324.933C224.018 323.367 224.018 320.83 222.453 319.264ZM206.873 309.353C204.527 311.699 204.527 315.504 206.873 317.85L215.37 326.347C217.717 328.693 221.521 328.693 223.867 326.347C226.214 324.001 226.214 320.196 223.867 317.85L215.37 309.353C213.024 307.007 209.22 307.007 206.873 309.353Z" fill="url(#paint14_linear_1981_7883)"/>
<path d="M211.122 310.772C208.775 308.426 208.775 304.621 211.122 302.275C213.468 299.929 217.272 299.929 219.618 302.275L229.531 312.188C231.878 314.534 231.878 318.339 229.531 320.685C227.185 323.031 223.381 323.031 221.035 320.685L211.122 310.772Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M228.117 313.602L218.204 303.689C216.639 302.124 214.101 302.124 212.536 303.689C210.97 305.255 210.97 307.792 212.536 309.358L222.449 319.271C224.014 320.836 226.552 320.836 228.117 319.271C229.683 317.705 229.683 315.168 228.117 313.602ZM211.122 302.275C208.775 304.621 208.775 308.426 211.122 310.772L221.035 320.685C223.381 323.031 227.185 323.031 229.531 320.685C231.878 318.339 231.878 314.534 229.531 312.188L219.618 302.275C217.272 299.929 213.468 299.929 211.122 302.275Z" fill="url(#paint15_linear_1981_7883)"/>
<path d="M220.327 301.565C217.98 299.219 217.98 295.414 220.327 293.068C222.673 290.722 226.477 290.722 228.823 293.068L238.737 302.981C241.083 305.327 241.083 309.132 238.737 311.478C236.39 313.824 232.586 313.824 230.24 311.478L220.327 301.565Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M237.322 304.395L227.409 294.482C225.844 292.917 223.306 292.917 221.741 294.482C220.175 296.047 220.175 298.585 221.741 300.151L231.654 310.064C233.219 311.629 235.757 311.629 237.322 310.064C238.888 308.498 238.888 305.961 237.322 304.395ZM220.327 293.068C217.98 295.414 217.98 299.219 220.327 301.565L230.24 311.478C232.586 313.824 236.39 313.824 238.737 311.478C241.083 309.132 241.083 305.327 238.737 302.981L228.823 293.068C226.477 290.722 222.673 290.722 220.327 293.068Z" fill="url(#paint16_linear_1981_7883)"/>
<path d="M215.37 305.108C213.023 302.761 213.023 298.957 215.37 296.611C217.716 294.265 221.52 294.265 223.866 296.611L234.488 307.232C236.834 309.578 236.834 313.383 234.488 315.729C232.141 318.075 228.337 318.075 225.991 315.729L215.37 305.108Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M233.073 308.646L222.452 298.025C220.887 296.46 218.349 296.46 216.784 298.025C215.218 299.59 215.218 302.128 216.784 303.694L227.405 314.315C228.97 315.88 231.508 315.88 233.073 314.315C234.639 312.749 234.639 310.212 233.073 308.646ZM215.37 296.611C213.023 298.957 213.023 302.761 215.37 305.108L225.991 315.729C228.337 318.075 232.141 318.075 234.488 315.729C236.834 313.383 236.834 309.578 234.488 307.232L223.866 296.611C221.52 294.265 217.716 294.265 215.37 296.611Z" fill="url(#paint17_linear_1981_7883)"/>
<path d="M123.21 340.143C122.264 340.138 121.358 339.762 120.691 339.095C120.113 338.53 119.756 337.779 119.683 336.977C118.875 336.905 118.118 336.551 117.548 335.978C117.216 335.65 116.952 335.261 116.773 334.832C116.593 334.403 116.5 333.943 116.5 333.479C116.5 333.014 116.593 332.554 116.773 332.125C116.952 331.696 117.216 331.307 117.548 330.98C117.973 330.556 118.501 330.247 119.081 330.085C119.661 329.922 120.273 329.911 120.859 330.052C121.138 330.115 121.429 330.104 121.703 330.021C121.977 329.937 122.223 329.784 122.418 329.576L134.821 317.271C135.031 317.078 135.186 316.833 135.27 316.562C135.354 316.29 135.365 316.001 135.301 315.724C135.182 315.253 135.163 314.763 135.244 314.284C135.326 313.805 135.506 313.348 135.775 312.941C136.043 312.535 136.393 312.188 136.802 311.922C137.212 311.656 137.673 311.477 138.156 311.397C138.639 311.316 139.133 311.335 139.608 311.453C140.083 311.571 140.528 311.785 140.916 312.082C141.303 312.379 141.624 312.752 141.86 313.178C142.095 313.605 142.239 314.074 142.282 314.558C143.097 314.631 143.861 314.984 144.441 315.558C145.105 316.218 145.477 317.112 145.477 318.045C145.477 318.977 145.105 319.871 144.441 320.532C144.019 320.96 143.492 321.273 142.912 321.44C142.332 321.607 141.718 321.622 141.13 321.484C140.851 321.427 140.562 321.441 140.29 321.524C140.017 321.608 139.77 321.757 139.571 321.96L127.168 334.264C126.962 334.46 126.81 334.705 126.726 334.976C126.642 335.247 126.629 335.534 126.688 335.811C126.811 336.328 126.815 336.866 126.699 337.385C126.583 337.903 126.35 338.389 126.017 338.806C125.685 339.222 125.262 339.559 124.78 339.791C124.298 340.022 123.769 340.142 123.234 340.143H123.21Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M120.691 339.095C121.358 339.762 122.264 340.138 123.21 340.143H123.234C123.769 340.142 124.298 340.022 124.78 339.791C125.262 339.559 125.685 339.222 126.017 338.806C126.35 338.389 126.583 337.903 126.699 337.385C126.815 336.866 126.811 336.328 126.688 335.811C126.629 335.534 126.642 335.247 126.726 334.976C126.81 334.705 126.962 334.46 127.168 334.264L139.571 321.96C139.77 321.757 140.017 321.608 140.29 321.524C140.562 321.441 140.851 321.427 141.13 321.484C141.718 321.622 142.332 321.607 142.912 321.44C143.492 321.273 144.019 320.96 144.441 320.532C145.105 319.871 145.477 318.977 145.477 318.045C145.477 317.112 145.105 316.218 144.441 315.558C143.861 314.984 143.097 314.631 142.282 314.558C142.239 314.074 142.095 313.605 141.86 313.178C141.624 312.752 141.303 312.379 140.916 312.082C140.528 311.785 140.083 311.571 139.608 311.453C139.133 311.335 138.639 311.316 138.156 311.397C137.673 311.477 137.212 311.656 136.802 311.922C136.393 312.188 136.043 312.535 135.775 312.941C135.506 313.348 135.326 313.805 135.244 314.284C135.163 314.763 135.182 315.253 135.301 315.724C135.365 316.001 135.354 316.29 135.27 316.562C135.186 316.833 135.031 317.078 134.821 317.271L122.418 329.576C122.223 329.784 121.977 329.937 121.703 330.021C121.429 330.104 121.138 330.115 120.859 330.052C120.273 329.911 119.661 329.922 119.081 330.085C118.501 330.247 117.973 330.556 117.548 330.98C117.216 331.307 116.952 331.696 116.773 332.125C116.593 332.554 116.5 333.014 116.5 333.479C116.5 333.943 116.593 334.403 116.773 334.832C116.952 335.261 117.216 335.65 117.548 335.978C118.118 336.551 118.875 336.905 119.683 336.977C119.756 337.779 120.113 338.53 120.691 339.095ZM123.848 330.975C123.418 331.423 122.88 331.753 122.287 331.934C121.68 332.119 121.035 332.142 120.416 332.002L120.403 331.999L120.391 331.996C120.137 331.935 119.872 331.94 119.621 332.01C119.37 332.081 119.143 332.214 118.962 332.395L118.952 332.404L118.952 332.404C118.808 332.546 118.694 332.715 118.617 332.899C118.54 333.083 118.5 333.28 118.5 333.479C118.5 333.677 118.54 333.874 118.617 334.058C118.694 334.243 118.808 334.411 118.952 334.553L118.959 334.56L118.966 334.567C119.203 334.805 119.52 334.955 119.861 334.985L121.525 335.134L121.675 336.797C121.705 337.123 121.85 337.432 122.09 337.666L122.097 337.673L122.104 337.68C122.396 337.972 122.795 338.14 123.216 338.143H123.233C123.234 338.143 123.234 338.143 123.234 338.143C123.47 338.142 123.703 338.089 123.914 337.988C124.126 337.886 124.31 337.739 124.454 337.559C124.597 337.378 124.697 337.169 124.747 336.947C124.797 336.725 124.795 336.495 124.743 336.274L124.737 336.251L124.733 336.229C124.602 335.617 124.631 334.981 124.816 334.383C124.999 333.793 125.328 333.26 125.771 332.833L138.155 320.547C138.587 320.111 139.12 319.79 139.706 319.612C140.296 319.431 140.922 319.401 141.526 319.523L141.557 319.53L141.587 319.537C141.842 319.596 142.108 319.59 142.359 319.518C142.61 319.445 142.836 319.311 143.017 319.128L143.023 319.121L143.03 319.114C143.318 318.827 143.477 318.443 143.477 318.045C143.477 317.648 143.319 317.264 143.033 316.978C142.785 316.734 142.457 316.582 142.104 316.55L140.439 316.402L140.29 314.737C140.271 314.53 140.21 314.328 140.109 314.145C140.007 313.961 139.868 313.799 139.699 313.67C139.53 313.54 139.335 313.446 139.126 313.394C138.916 313.342 138.698 313.334 138.485 313.369C138.272 313.405 138.07 313.484 137.891 313.6C137.712 313.716 137.56 313.867 137.444 314.042C137.328 314.218 137.251 314.414 137.216 314.619C137.181 314.824 137.189 315.034 137.24 315.236L137.245 315.255L137.25 315.274C137.393 315.896 137.369 316.545 137.18 317.154C136.995 317.749 136.66 318.285 136.209 318.712L123.848 330.975Z" fill="url(#paint18_linear_1981_7883)"/>
<path d="M138.324 327.98L136.837 328.789C135.541 329.55 134.028 329.867 132.532 329.691C131.037 329.514 129.641 328.855 128.561 327.813C127.536 326.79 126.87 325.467 126.663 324.04C126.456 322.612 126.717 321.156 127.409 319.888L128.249 318.008C130.446 314.06 131.855 309.729 132.399 305.251C134.174 290.424 140.699 283.094 157.516 283.094C159.619 283.088 161.703 283.494 163.647 284.289C165.591 285.085 167.358 286.254 168.845 287.729C170.332 289.205 171.511 290.957 172.312 292.886C173.114 294.815 173.524 296.882 173.518 298.968C173.518 315.628 166.129 322.125 151.159 323.886C146.656 324.422 142.299 325.812 138.324 327.98Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M136.837 328.789L138.324 327.98C142.299 325.812 146.656 324.422 151.159 323.886C166.129 322.125 173.518 315.628 173.518 298.968C173.524 296.882 173.114 294.815 172.312 292.886C171.511 290.957 170.332 289.205 168.845 287.729C167.358 286.254 165.591 285.085 163.647 284.289C161.703 283.494 159.619 283.088 157.516 283.094C140.699 283.094 134.174 290.424 132.399 305.251C131.855 309.729 130.446 314.06 128.249 318.008L127.409 319.888C126.717 321.156 126.456 322.612 126.663 324.04C126.87 325.467 127.536 326.79 128.561 327.813C129.641 328.855 131.037 329.514 132.532 329.691C134.028 329.867 135.541 329.55 136.837 328.789ZM129.961 326.385C130.724 327.115 131.709 327.58 132.767 327.705C133.83 327.83 134.905 327.604 135.824 327.064L135.853 327.048L137.367 326.224C137.367 326.224 137.367 326.224 137.367 326.224C141.565 323.934 146.167 322.466 150.923 321.9L150.925 321.9C158.212 321.043 163.25 319.071 166.5 315.639C169.728 312.229 171.518 307.03 171.518 298.968V298.962C171.523 297.142 171.166 295.338 170.466 293.654C169.766 291.97 168.736 290.439 167.437 289.149C166.137 287.859 164.592 286.837 162.89 286.14C161.188 285.444 159.364 285.088 157.522 285.094L157.516 285.094C149.368 285.094 144.118 286.872 140.681 290.076C137.226 293.295 135.248 298.279 134.385 305.489L134.384 305.492C133.813 310.198 132.337 314.75 130.04 318.902L129.203 320.776L129.165 320.846C128.68 321.735 128.497 322.754 128.642 323.752C128.786 324.745 129.248 325.668 129.961 326.385Z" fill="url(#paint19_linear_1981_7883)"/>
<path d="M518.375 335.139C516.029 332.793 516.029 328.989 518.375 326.642C520.722 324.296 524.526 324.296 526.872 326.642L527.58 327.35C529.927 329.697 529.927 333.501 527.58 335.847C525.234 338.194 521.43 338.194 519.083 335.847L518.375 335.139Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M526.166 328.764L525.458 328.056C523.893 326.491 521.355 326.491 519.79 328.056C518.224 329.622 518.224 332.16 519.79 333.725L520.498 334.433C522.063 335.998 524.601 335.998 526.166 334.433C527.732 332.868 527.732 330.33 526.166 328.764ZM518.375 326.642C516.029 328.989 516.029 332.793 518.375 335.139L519.083 335.847C521.43 338.194 525.234 338.194 527.58 335.847C529.927 333.501 529.927 329.697 527.58 327.35L526.872 326.642C524.526 324.296 520.722 324.296 518.375 326.642Z" fill="url(#paint20_linear_1981_7883)"/>
<path d="M555.372 298.493C552.537 295.658 552.537 291.061 555.372 288.226C558.207 285.391 562.804 285.391 565.639 288.226L567.239 289.826C568.995 291.582 568.995 294.429 567.239 296.185L560.151 303.272L555.372 298.493Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M565.825 291.24L564.225 289.64C562.171 287.586 558.84 287.586 556.786 289.64C554.732 291.694 554.732 295.025 556.786 297.079L560.151 300.444L565.825 294.771C566.8 293.796 566.8 292.215 565.825 291.24ZM555.372 288.226C552.537 291.061 552.537 295.658 555.372 298.493L560.151 303.272L567.239 296.185C568.995 294.429 568.995 291.582 567.239 289.826L565.639 288.226C562.804 285.391 558.207 285.391 555.372 288.226Z" fill="url(#paint21_linear_1981_7883)"/>
<path d="M545.282 296.901C542.935 294.554 542.935 290.75 545.282 288.404C547.628 286.058 551.432 286.058 553.779 288.404L560.151 294.777C562.498 297.123 562.498 300.927 560.151 303.273C557.805 305.62 554.001 305.62 551.654 303.273L545.282 296.901Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M558.737 296.191L552.364 289.818C550.799 288.253 548.261 288.253 546.696 289.818C545.131 291.383 545.131 293.921 546.696 295.487L553.069 301.859C554.634 303.425 557.172 303.425 558.737 301.859C560.302 300.294 560.302 297.756 558.737 296.191ZM545.282 288.404C542.935 290.75 542.935 294.554 545.282 296.901L551.654 303.273C554.001 305.62 557.805 305.62 560.151 303.273C562.498 300.927 562.498 297.123 560.151 294.777L553.779 288.404C551.432 286.058 547.628 286.058 545.282 288.404Z" fill="url(#paint22_linear_1981_7883)"/>
<path d="M538.911 299.026C536.564 296.679 536.564 292.875 538.911 290.529C541.257 288.183 545.061 288.183 547.407 290.529L555.904 299.026C558.251 301.372 558.251 305.176 555.904 307.523C553.558 309.869 549.754 309.869 547.407 307.523L538.911 299.026Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M554.49 300.44L545.993 291.943C544.428 290.378 541.89 290.378 540.325 291.943C538.759 293.508 538.759 296.046 540.325 297.612L548.822 306.109C550.387 307.674 552.925 307.674 554.49 306.109C556.055 304.543 556.055 302.005 554.49 300.44ZM538.911 290.529C536.564 292.875 536.564 296.679 538.911 299.026L547.407 307.523C549.754 309.869 553.558 309.869 555.904 307.523C558.251 305.176 558.251 301.372 555.904 299.026L547.407 290.529C545.061 288.183 541.257 288.183 538.911 290.529Z" fill="url(#paint23_linear_1981_7883)"/>
<path d="M516.959 326.639C514.613 324.293 514.613 320.489 516.959 318.142C519.306 315.796 523.11 315.796 525.456 318.142L531.121 323.807C533.467 326.153 533.467 329.957 531.121 332.304C528.775 334.65 524.97 334.65 522.624 332.304L516.959 326.639Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M529.707 325.221L524.042 319.556C522.477 317.991 519.939 317.991 518.374 319.556C516.808 321.122 516.808 323.66 518.374 325.225L524.038 330.889C525.604 332.455 528.141 332.455 529.707 330.889C531.272 329.324 531.272 326.786 529.707 325.221ZM516.959 318.142C514.613 320.489 514.613 324.293 516.959 326.639L522.624 332.304C524.97 334.65 528.775 334.65 531.121 332.304C533.467 329.957 533.467 326.153 531.121 323.807L525.456 318.142C523.11 315.796 519.306 315.796 516.959 318.142Z" fill="url(#paint24_linear_1981_7883)"/>
<path d="M519.084 318.85C516.738 316.504 516.738 312.699 519.084 310.353C521.431 308.007 525.235 308.007 527.581 310.353L536.078 318.85C538.425 321.196 538.425 325.001 536.078 327.347C533.732 329.693 529.928 329.693 527.581 327.347L519.084 318.85Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M534.664 320.264L526.167 311.767C524.602 310.202 522.064 310.202 520.499 311.767C518.933 313.333 518.933 315.87 520.499 317.436L528.996 325.933C530.561 327.498 533.099 327.498 534.664 325.933C536.229 324.367 536.229 321.83 534.664 320.264ZM519.084 310.353C516.738 312.699 516.738 316.504 519.084 318.85L527.581 327.347C529.928 329.693 533.732 329.693 536.078 327.347C538.425 325.001 538.425 321.196 536.078 318.85L527.581 310.353C525.235 308.007 521.431 308.007 519.084 310.353Z" fill="url(#paint25_linear_1981_7883)"/>
<path d="M523.332 311.772C520.986 309.426 520.986 305.621 523.332 303.275C525.679 300.929 529.483 300.929 531.829 303.275L541.742 313.188C544.089 315.534 544.089 319.339 541.742 321.685C539.396 324.031 535.592 324.031 533.246 321.685L523.332 311.772Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M540.328 314.602L530.415 304.689C528.85 303.124 526.312 303.124 524.747 304.689C523.181 306.255 523.181 308.792 524.747 310.358L534.66 320.271C536.225 321.836 538.763 321.836 540.328 320.271C541.894 318.705 541.894 316.168 540.328 314.602ZM523.332 303.275C520.986 305.621 520.986 309.426 523.332 311.772L533.246 321.685C535.592 324.031 539.396 324.031 541.742 321.685C544.089 319.339 544.089 315.534 541.742 313.188L531.829 303.275C529.483 300.929 525.679 300.929 523.332 303.275Z" fill="url(#paint26_linear_1981_7883)"/>
<path d="M532.538 302.565C530.191 300.219 530.191 296.414 532.538 294.068C534.884 291.722 538.688 291.722 541.034 294.068L550.948 303.981C553.294 306.327 553.294 310.132 550.948 312.478C548.601 314.824 544.797 314.824 542.451 312.478L532.538 302.565Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M549.533 305.395L539.62 295.482C538.055 293.917 535.517 293.917 533.952 295.482C532.386 297.047 532.386 299.585 533.952 301.151L543.865 311.064C545.43 312.629 547.968 312.629 549.533 311.064C551.099 309.498 551.099 306.961 549.533 305.395ZM532.538 294.068C530.191 296.414 530.191 300.219 532.538 302.565L542.451 312.478C544.797 314.824 548.601 314.824 550.948 312.478C553.294 310.132 553.294 306.327 550.948 303.981L541.034 294.068C538.688 291.722 534.884 291.722 532.538 294.068Z" fill="url(#paint27_linear_1981_7883)"/>
<path d="M527.58 306.108C525.234 303.761 525.234 299.957 527.58 297.611C529.927 295.265 533.731 295.265 536.077 297.611L546.699 308.232C549.045 310.578 549.045 314.383 546.699 316.729C544.352 319.075 540.548 319.075 538.202 316.729L527.58 306.108Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M545.284 309.646L534.663 299.025C533.098 297.46 530.56 297.46 528.995 299.025C527.429 300.59 527.429 303.128 528.995 304.694L539.616 315.315C541.181 316.88 543.719 316.88 545.284 315.315C546.85 313.749 546.85 311.212 545.284 309.646ZM527.58 297.611C525.234 299.957 525.234 303.761 527.58 306.108L538.202 316.729C540.548 319.075 544.352 319.075 546.699 316.729C549.045 314.383 549.045 310.578 546.699 308.232L536.077 297.611C533.731 295.265 529.927 295.265 527.58 297.611Z" fill="url(#paint28_linear_1981_7883)"/>
<path d="M437.108 340.143C436.162 340.138 435.256 339.762 434.589 339.095C434.012 338.53 433.654 337.779 433.582 336.977C432.773 336.905 432.017 336.551 431.447 335.978C431.115 335.65 430.851 335.261 430.671 334.832C430.491 334.403 430.398 333.943 430.398 333.479C430.398 333.014 430.491 332.554 430.671 332.125C430.851 331.696 431.115 331.307 431.447 330.98C431.871 330.556 432.399 330.247 432.979 330.085C433.559 329.922 434.172 329.911 434.757 330.052C435.036 330.115 435.328 330.104 435.601 330.021C435.875 329.937 436.122 329.784 436.317 329.576L448.719 317.271C448.929 317.078 449.084 316.833 449.168 316.562C449.253 316.29 449.263 316.001 449.199 315.724C449.081 315.253 449.061 314.763 449.143 314.284C449.224 313.805 449.405 313.348 449.673 312.941C449.941 312.535 450.291 312.188 450.701 311.922C451.111 311.656 451.571 311.477 452.054 311.397C452.537 311.316 453.031 311.335 453.506 311.453C453.981 311.571 454.427 311.785 454.814 312.082C455.202 312.379 455.523 312.752 455.758 313.178C455.993 313.605 456.137 314.074 456.18 314.558C456.996 314.631 457.76 314.984 458.339 315.558C459.003 316.218 459.376 317.112 459.376 318.045C459.376 318.977 459.003 319.871 458.339 320.532C457.917 320.96 457.39 321.273 456.81 321.44C456.23 321.607 455.617 321.622 455.029 321.484C454.749 321.427 454.46 321.441 454.188 321.524C453.916 321.608 453.668 321.757 453.469 321.96L441.067 334.264C440.861 334.46 440.709 334.705 440.625 334.976C440.541 335.247 440.528 335.534 440.587 335.811C440.71 336.328 440.713 336.866 440.597 337.385C440.481 337.903 440.248 338.389 439.916 338.806C439.583 339.222 439.16 339.559 438.678 339.791C438.196 340.022 437.668 340.142 437.132 340.143H437.108Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M434.589 339.095C435.256 339.762 436.162 340.138 437.108 340.143H437.132C437.668 340.142 438.196 340.022 438.678 339.791C439.16 339.559 439.583 339.222 439.916 338.806C440.248 338.389 440.481 337.903 440.597 337.385C440.713 336.866 440.71 336.328 440.587 335.811C440.528 335.534 440.541 335.247 440.625 334.976C440.709 334.705 440.861 334.46 441.067 334.264L453.469 321.96C453.668 321.757 453.916 321.608 454.188 321.524C454.46 321.441 454.749 321.427 455.029 321.484C455.617 321.622 456.23 321.607 456.81 321.44C457.39 321.273 457.917 320.96 458.339 320.532C459.003 319.871 459.376 318.977 459.376 318.045C459.376 317.112 459.003 316.218 458.339 315.558C457.76 314.984 456.996 314.631 456.18 314.558C456.137 314.074 455.993 313.605 455.758 313.178C455.523 312.752 455.202 312.379 454.814 312.082C454.427 311.785 453.981 311.571 453.506 311.453C453.031 311.335 452.537 311.316 452.054 311.397C451.571 311.477 451.111 311.656 450.701 311.922C450.291 312.188 449.941 312.535 449.673 312.941C449.405 313.348 449.224 313.805 449.143 314.284C449.061 314.763 449.081 315.253 449.199 315.724C449.263 316.001 449.253 316.29 449.168 316.562C449.084 316.833 448.929 317.078 448.719 317.271L436.317 329.576C436.122 329.784 435.875 329.937 435.601 330.021C435.328 330.104 435.036 330.115 434.757 330.052C434.172 329.911 433.559 329.922 432.979 330.085C432.399 330.247 431.871 330.556 431.447 330.98C431.115 331.307 430.851 331.696 430.671 332.125C430.491 332.554 430.398 333.014 430.398 333.479C430.398 333.943 430.491 334.403 430.671 334.832C430.851 335.261 431.115 335.65 431.447 335.978C432.017 336.551 432.773 336.905 433.582 336.977C433.654 337.779 434.012 338.53 434.589 339.095ZM437.746 330.975C437.316 331.423 436.778 331.753 436.185 331.934C435.578 332.119 434.933 332.142 434.314 332.002L434.302 331.999L434.289 331.996C434.036 331.935 433.77 331.94 433.519 332.01C433.268 332.081 433.041 332.214 432.86 332.395L432.851 332.404L432.851 332.404C432.706 332.546 432.593 332.715 432.515 332.899C432.438 333.083 432.398 333.28 432.398 333.479C432.398 333.677 432.438 333.874 432.515 334.058C432.593 334.243 432.706 334.411 432.851 334.553L432.858 334.56L432.865 334.567C433.101 334.805 433.418 334.955 433.759 334.985L435.423 335.134L435.574 336.797C435.603 337.123 435.749 337.432 435.988 337.666L435.996 337.673L436.003 337.68C436.294 337.972 436.694 338.14 437.114 338.143H437.132C437.132 338.143 437.132 338.143 437.132 338.143C437.369 338.142 437.601 338.089 437.813 337.988C438.024 337.886 438.208 337.739 438.352 337.559C438.496 337.378 438.596 337.169 438.646 336.947C438.695 336.725 438.694 336.495 438.641 336.274L438.636 336.251L438.631 336.229C438.5 335.617 438.529 334.981 438.714 334.383C438.897 333.793 439.227 333.26 439.67 332.833L452.054 320.547C452.486 320.111 453.019 319.79 453.604 319.612C454.194 319.431 454.82 319.401 455.425 319.523L455.455 319.53L455.486 319.537C455.74 319.596 456.006 319.59 456.258 319.518C456.509 319.445 456.735 319.311 456.915 319.128L456.922 319.121L456.929 319.114C457.217 318.827 457.376 318.443 457.376 318.045C457.376 317.648 457.218 317.264 456.931 316.978C456.684 316.734 456.356 316.582 456.003 316.55L454.338 316.402L454.188 314.737C454.17 314.53 454.108 314.328 454.007 314.145C453.906 313.961 453.767 313.799 453.598 313.67C453.429 313.54 453.233 313.446 453.024 313.394C452.815 313.342 452.597 313.334 452.384 313.369C452.171 313.405 451.968 313.484 451.789 313.6C451.61 313.716 451.458 313.867 451.342 314.042C451.227 314.218 451.149 314.414 451.114 314.619C451.08 314.824 451.088 315.034 451.139 315.236L451.144 315.255L451.148 315.274C451.292 315.896 451.268 316.545 451.079 317.154C450.894 317.749 450.559 318.285 450.107 318.712L437.746 330.975Z" fill="url(#paint29_linear_1981_7883)"/>
<path d="M452.223 327.98L450.735 328.789C449.439 329.55 447.927 329.867 446.431 329.691C444.935 329.514 443.539 328.855 442.459 327.813C441.434 326.79 440.769 325.467 440.561 324.04C440.354 322.612 440.616 321.156 441.307 319.888L442.147 318.008C444.344 314.06 445.753 309.729 446.297 305.251C448.073 290.424 454.598 283.094 471.415 283.094C473.518 283.088 475.601 283.494 477.546 284.289C479.49 285.085 481.256 286.254 482.744 287.729C484.231 289.205 485.409 290.957 486.211 292.886C487.013 294.815 487.422 296.882 487.416 298.968C487.416 315.628 480.027 322.125 465.057 323.886C460.554 324.422 456.197 325.812 452.223 327.98Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M450.735 328.789L452.223 327.98C456.197 325.812 460.554 324.422 465.057 323.886C480.027 322.125 487.416 315.628 487.416 298.968C487.422 296.882 487.013 294.815 486.211 292.886C485.409 290.957 484.231 289.205 482.744 287.729C481.256 286.254 479.49 285.085 477.546 284.289C475.601 283.494 473.518 283.088 471.415 283.094C454.598 283.094 448.073 290.424 446.297 305.251C445.753 309.729 444.344 314.06 442.147 318.008L441.307 319.888C440.616 321.156 440.354 322.612 440.561 324.04C440.769 325.467 441.434 326.79 442.459 327.813C443.539 328.855 444.935 329.514 446.431 329.691C447.927 329.867 449.439 329.55 450.735 328.789ZM443.86 326.385C444.622 327.115 445.607 327.58 446.665 327.705C447.729 327.83 448.803 327.604 449.723 327.064L449.751 327.048L451.265 326.224C451.265 326.224 451.265 326.224 451.265 326.224C455.463 323.934 460.066 322.466 464.821 321.9L464.824 321.9C472.111 321.043 477.148 319.071 480.398 315.639C483.627 312.229 485.416 307.03 485.416 298.968V298.962C485.422 297.142 485.064 295.338 484.364 293.654C483.664 291.97 482.635 290.439 481.335 289.149C480.035 287.859 478.49 286.837 476.788 286.14C475.087 285.444 473.262 285.088 471.421 285.094L471.415 285.094C463.266 285.094 458.016 286.872 454.579 290.076C451.125 293.295 449.147 298.279 448.283 305.489L448.283 305.492C447.711 310.198 446.236 314.75 443.938 318.902L443.101 320.776L443.063 320.846C442.578 321.735 442.396 322.754 442.541 323.752C442.685 324.745 443.146 325.668 443.86 326.385Z" fill="url(#paint30_linear_1981_7883)"/>
<path d="M725.478 296.378C726.184 298.317 726.37 300.414 726.018 302.458C725.666 304.502 724.787 306.423 723.47 308.029C720.286 312.155 714.789 316.281 707.674 320.594C702.079 324.208 697.4 329.092 694.018 334.848C690.047 340.785 686.57 342.189 681.805 339.939C679.098 338.686 676.51 337.192 674.071 335.474C677.694 334.512 680.042 330.977 682.894 327.018C686.219 321.697 690.681 317.181 695.951 313.802C703.484 309.42 708.732 304.744 711.531 299.895C712.635 298.17 713.348 296.224 713.616 294.197C713.885 292.17 713.703 290.112 713.085 288.173C712.86 287.55 712.596 286.943 712.293 286.356C716.846 289.056 724.519 292.89 725.478 296.378Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M723.571 296.986L723.55 296.908C723.452 296.553 723.1 295.965 722.265 295.16C721.464 294.387 720.385 293.573 719.126 292.737C718.006 291.993 716.818 291.278 715.637 290.591C715.781 291.872 715.77 293.172 715.599 294.46C715.294 296.763 714.488 298.973 713.24 300.935C710.195 306.186 704.635 311.058 696.995 315.509C691.99 318.725 687.751 323.019 684.59 328.078L684.555 328.134L684.517 328.187C684.348 328.421 684.18 328.656 684.011 328.891C682.792 330.591 681.557 332.314 680.235 333.733C679.571 334.446 678.856 335.116 678.07 335.696C679.549 336.587 681.076 337.398 682.645 338.124L682.652 338.128L682.659 338.131C684.708 339.098 686.16 339.148 687.444 338.616C688.846 338.036 690.424 336.613 692.324 333.783C695.861 327.781 700.748 322.687 706.589 318.914L706.613 318.899L706.637 318.884C713.717 314.592 718.942 310.623 721.887 306.807L721.905 306.784L721.924 306.761C723.022 305.422 723.754 303.821 724.047 302.118C724.341 300.416 724.185 298.672 723.599 297.062L723.571 296.986ZM694.018 334.848C690.047 340.785 686.57 342.189 681.805 339.939C679.848 339.033 677.953 338.001 676.132 336.85C675.434 336.409 674.747 335.95 674.071 335.474C674.843 335.269 675.557 334.948 676.231 334.53C678.527 333.105 680.35 330.563 682.383 327.729C682.552 327.494 682.722 327.257 682.894 327.018C686.219 321.697 690.681 317.181 695.951 313.802C703.484 309.42 708.732 304.744 711.531 299.895C712.635 298.17 713.348 296.224 713.616 294.197C713.833 292.559 713.756 290.902 713.393 289.303C713.306 288.922 713.203 288.545 713.085 288.173C712.86 287.55 712.596 286.943 712.293 286.356C712.98 286.763 713.738 287.197 714.534 287.651C714.556 287.663 714.578 287.676 714.601 287.689C714.608 287.693 714.616 287.698 714.624 287.702C714.787 287.795 714.951 287.889 715.117 287.984C719.486 290.481 724.699 293.543 725.478 296.378C726.184 298.317 726.37 300.414 726.018 302.458C725.666 304.502 724.787 306.423 723.47 308.029C720.286 312.155 714.789 316.281 707.674 320.594C702.079 324.208 697.4 329.092 694.018 334.848Z" fill="url(#paint31_linear_1981_7883)"/>
<path d="M667.062 321.745C666.907 315.596 669.25 308.146 673.837 300.202C682.483 285.226 699.686 278.889 712.18 286.102C715.523 287.78 718.159 290.594 719.625 294.05C720.128 295.65 720.267 297.347 720.03 299.015C719.794 300.683 719.19 302.28 718.261 303.688C715.72 308.089 710.748 312.614 703.655 316.725C698.041 320.288 693.282 325.066 689.732 330.706C684.781 337.605 682.327 340.506 676.133 336.93C673.378 335.487 671.076 333.308 669.476 330.631C667.877 327.954 667.042 324.881 667.062 321.745Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M669.062 321.726L669.062 321.757C669.044 324.53 669.783 327.244 671.193 329.606C672.604 331.967 674.633 333.887 677.061 335.158L677.098 335.177L677.133 335.198C678.55 336.016 679.588 336.364 680.383 336.447C681.122 336.524 681.748 336.384 682.41 336.007C683.125 335.601 683.914 334.899 684.875 333.785C685.822 332.687 686.845 331.297 688.072 329.588C691.777 323.72 696.735 318.747 702.583 315.037L702.617 315.015L702.652 314.995C709.587 310.975 714.231 306.668 716.529 302.688L716.559 302.637L716.591 302.587C717.357 301.425 717.856 300.109 718.05 298.734C718.24 297.392 718.135 296.029 717.745 294.741C716.456 291.761 714.17 289.339 711.283 287.89L711.231 287.863L711.18 287.834C699.925 281.336 683.841 286.873 675.569 301.202C671.082 308.973 668.919 316.052 669.061 321.694L669.062 321.726ZM719.625 294.05C720.128 295.65 720.267 297.347 720.03 299.015C719.794 300.683 719.19 302.28 718.261 303.688C715.72 308.089 710.748 312.614 703.655 316.725C698.041 320.288 693.282 325.066 689.732 330.706C684.781 337.605 682.327 340.506 676.133 336.93C673.378 335.487 671.076 333.308 669.476 330.631C667.877 327.954 667.042 324.881 667.062 321.745C666.907 315.596 669.25 308.146 673.837 300.202C682.483 285.226 699.686 278.889 712.18 286.102C715.523 287.78 718.159 290.594 719.625 294.05Z" fill="url(#paint32_linear_1981_7883)"/>
<path d="M677.075 315.48C678.531 312.957 681.198 311.73 683.003 312.772C684.809 313.814 685.097 316.748 683.64 319.271C682.184 321.793 679.481 323 677.694 321.968C675.906 320.936 675.629 317.985 677.075 315.48Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M680.741 314.608C680.083 314.909 679.35 315.539 678.807 316.48C678.273 317.405 678.093 318.357 678.163 319.087C678.234 319.833 678.521 320.137 678.694 320.236C678.875 320.341 679.289 320.436 679.968 320.13C680.635 319.829 681.371 319.202 681.908 318.271C682.449 317.335 682.625 316.385 682.555 315.661C682.483 314.928 682.196 314.615 682.003 314.504C681.814 314.394 681.406 314.303 680.741 314.608ZM683.003 312.772C681.198 311.73 678.531 312.957 677.075 315.48C675.629 317.985 675.906 320.936 677.694 321.968C679.481 323 682.184 321.793 683.64 319.271C685.097 316.748 684.809 313.814 683.003 312.772Z" fill="url(#paint33_linear_1981_7883)"/>
<path d="M835.375 335.139C833.029 332.793 833.029 328.989 835.375 326.642C837.722 324.296 841.526 324.296 843.872 326.642L844.58 327.35C846.927 329.697 846.927 333.501 844.58 335.847C842.234 338.194 838.43 338.194 836.083 335.847L835.375 335.139Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M843.166 328.764L842.458 328.056C840.893 326.491 838.355 326.491 836.79 328.056C835.224 329.622 835.224 332.16 836.79 333.725L837.498 334.433C839.063 335.998 841.601 335.998 843.166 334.433C844.732 332.868 844.732 330.33 843.166 328.764ZM835.375 326.642C833.029 328.989 833.029 332.793 835.375 335.139L836.083 335.847C838.43 338.194 842.234 338.194 844.58 335.847C846.927 333.501 846.927 329.697 844.58 327.35L843.872 326.642C841.526 324.296 837.722 324.296 835.375 326.642Z" fill="url(#paint34_linear_1981_7883)"/>
<path d="M872.372 298.493C869.537 295.658 869.537 291.061 872.372 288.226C875.207 285.391 879.804 285.391 882.639 288.226L884.239 289.826C885.995 291.582 885.995 294.429 884.239 296.185L877.151 303.272L872.372 298.493Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M882.825 291.24L881.225 289.64C879.171 287.586 875.84 287.586 873.786 289.64C871.732 291.694 871.732 295.025 873.786 297.079L877.151 300.444L882.825 294.771C883.8 293.796 883.8 292.215 882.825 291.24ZM872.372 288.226C869.537 291.061 869.537 295.658 872.372 298.493L877.151 303.272L884.239 296.185C885.995 294.429 885.995 291.582 884.239 289.826L882.639 288.226C879.804 285.391 875.207 285.391 872.372 288.226Z" fill="url(#paint35_linear_1981_7883)"/>
<path d="M862.282 296.901C859.935 294.554 859.935 290.75 862.282 288.404C864.628 286.058 868.432 286.058 870.779 288.404L877.151 294.777C879.498 297.123 879.498 300.927 877.151 303.273C874.805 305.62 871.001 305.62 868.654 303.273L862.282 296.901Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M875.737 296.191L869.364 289.818C867.799 288.253 865.261 288.253 863.696 289.818C862.131 291.383 862.131 293.921 863.696 295.487L870.069 301.859C871.634 303.425 874.172 303.425 875.737 301.859C877.302 300.294 877.302 297.756 875.737 296.191ZM862.282 288.404C859.935 290.75 859.935 294.554 862.282 296.901L868.654 303.273C871.001 305.62 874.805 305.62 877.151 303.273C879.498 300.927 879.498 297.123 877.151 294.777L870.779 288.404C868.432 286.058 864.628 286.058 862.282 288.404Z" fill="url(#paint36_linear_1981_7883)"/>
<path d="M855.909 299.026C853.562 296.679 853.562 292.875 855.909 290.529C858.255 288.183 862.059 288.183 864.406 290.529L872.902 299.026C875.249 301.372 875.249 305.176 872.902 307.523C870.556 309.869 866.752 309.869 864.406 307.523L855.909 299.026Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M871.488 300.44L862.991 291.943C861.426 290.378 858.888 290.378 857.323 291.943C855.758 293.508 855.758 296.046 857.323 297.612L865.82 306.109C867.385 307.674 869.923 307.674 871.488 306.109C873.054 304.543 873.054 302.005 871.488 300.44ZM855.909 290.529C853.562 292.875 853.562 296.679 855.909 299.026L864.406 307.523C866.752 309.869 870.556 309.869 872.902 307.523C875.249 305.176 875.249 301.372 872.902 299.026L864.406 290.529C862.059 288.183 858.255 288.183 855.909 290.529Z" fill="url(#paint37_linear_1981_7883)"/>
<path d="M833.959 326.639C831.613 324.293 831.613 320.489 833.959 318.142C836.306 315.796 840.11 315.796 842.456 318.142L848.121 323.807C850.467 326.153 850.467 329.957 848.121 332.304C845.775 334.65 841.97 334.65 839.624 332.304L833.959 326.639Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M846.707 325.221L841.042 319.556C839.477 317.991 836.939 317.991 835.374 319.556C833.808 321.122 833.808 323.66 835.374 325.225L841.038 330.889C842.604 332.455 845.141 332.455 846.707 330.889C848.272 329.324 848.272 326.786 846.707 325.221ZM833.959 318.142C831.613 320.489 831.613 324.293 833.959 326.639L839.624 332.304C841.97 334.65 845.775 334.65 848.121 332.304C850.467 329.957 850.467 326.153 848.121 323.807L842.456 318.142C840.11 315.796 836.306 315.796 833.959 318.142Z" fill="url(#paint38_linear_1981_7883)"/>
<path d="M836.082 318.85C833.736 316.504 833.736 312.699 836.082 310.353C838.429 308.007 842.233 308.007 844.579 310.353L853.076 318.85C855.423 321.196 855.423 325.001 853.076 327.347C850.73 329.693 846.926 329.693 844.579 327.347L836.082 318.85Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M851.662 320.264L843.165 311.767C841.6 310.202 839.062 310.202 837.497 311.767C835.931 313.333 835.931 315.87 837.497 317.436L845.994 325.933C847.559 327.498 850.097 327.498 851.662 325.933C853.227 324.367 853.227 321.83 851.662 320.264ZM836.082 310.353C833.736 312.699 833.736 316.504 836.082 318.85L844.579 327.347C846.926 329.693 850.73 329.693 853.076 327.347C855.423 325.001 855.423 321.196 853.076 318.85L844.579 310.353C842.233 308.007 838.429 308.007 836.082 310.353Z" fill="url(#paint39_linear_1981_7883)"/>
<path d="M840.332 311.772C837.986 309.426 837.986 305.621 840.332 303.275C842.679 300.929 846.483 300.929 848.829 303.275L858.742 313.188C861.089 315.534 861.089 319.339 858.742 321.685C856.396 324.031 852.592 324.031 850.246 321.685L840.332 311.772Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M857.328 314.602L847.415 304.689C845.85 303.124 843.312 303.124 841.747 304.689C840.181 306.255 840.181 308.792 841.747 310.358L851.66 320.271C853.225 321.836 855.763 321.836 857.328 320.271C858.894 318.705 858.894 316.168 857.328 314.602ZM840.332 303.275C837.986 305.621 837.986 309.426 840.332 311.772L850.246 321.685C852.592 324.031 856.396 324.031 858.742 321.685C861.089 319.339 861.089 315.534 858.742 313.188L848.829 303.275C846.483 300.929 842.679 300.929 840.332 303.275Z" fill="url(#paint40_linear_1981_7883)"/>
<path d="M849.538 302.565C847.191 300.219 847.191 296.414 849.538 294.068C851.884 291.722 855.688 291.722 858.034 294.068L867.948 303.981C870.294 306.327 870.294 310.132 867.948 312.478C865.601 314.824 861.797 314.824 859.451 312.478L849.538 302.565Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M866.533 305.395L856.62 295.482C855.055 293.917 852.517 293.917 850.952 295.482C849.386 297.047 849.386 299.585 850.952 301.151L860.865 311.064C862.43 312.629 864.968 312.629 866.533 311.064C868.099 309.498 868.099 306.961 866.533 305.395ZM849.538 294.068C847.191 296.414 847.191 300.219 849.538 302.565L859.451 312.478C861.797 314.824 865.601 314.824 867.948 312.478C870.294 310.132 870.294 306.327 867.948 303.981L858.034 294.068C855.688 291.722 851.884 291.722 849.538 294.068Z" fill="url(#paint41_linear_1981_7883)"/>
<path d="M844.58 306.108C842.234 303.761 842.234 299.957 844.58 297.611C846.927 295.265 850.731 295.265 853.077 297.611L863.699 308.232C866.045 310.578 866.045 314.383 863.699 316.729C861.352 319.075 857.548 319.075 855.202 316.729L844.58 306.108Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M862.284 309.646L851.663 299.025C850.098 297.46 847.56 297.46 845.995 299.025C844.429 300.59 844.429 303.128 845.995 304.694L856.616 315.315C858.181 316.88 860.719 316.88 862.284 315.315C863.85 313.749 863.85 311.212 862.284 309.646ZM844.58 297.611C842.234 299.957 842.234 303.761 844.58 306.108L855.202 316.729C857.548 319.075 861.352 319.075 863.699 316.729C866.045 314.383 866.045 310.578 863.699 308.232L853.077 297.611C850.731 295.265 846.927 295.265 844.58 297.611Z" fill="url(#paint42_linear_1981_7883)"/>
<path d="M754.108 340.143C753.162 340.138 752.256 339.762 751.589 339.095C751.012 338.53 750.654 337.779 750.582 336.977C749.773 336.905 749.017 336.551 748.447 335.978C748.115 335.65 747.851 335.261 747.671 334.832C747.491 334.403 747.398 333.943 747.398 333.479C747.398 333.014 747.491 332.554 747.671 332.125C747.851 331.696 748.115 331.307 748.447 330.98C748.871 330.556 749.399 330.247 749.979 330.085C750.559 329.922 751.172 329.911 751.757 330.052C752.036 330.115 752.328 330.104 752.601 330.021C752.875 329.937 753.122 329.784 753.317 329.576L765.719 317.271C765.929 317.078 766.084 316.833 766.168 316.562C766.253 316.29 766.263 316.001 766.199 315.724C766.081 315.253 766.061 314.763 766.143 314.284C766.224 313.805 766.405 313.348 766.673 312.941C766.941 312.535 767.291 312.188 767.701 311.922C768.111 311.656 768.571 311.477 769.054 311.397C769.537 311.316 770.031 311.335 770.506 311.453C770.981 311.571 771.427 311.785 771.814 312.082C772.202 312.379 772.523 312.752 772.758 313.178C772.993 313.605 773.137 314.074 773.18 314.558C773.996 314.631 774.76 314.984 775.339 315.558C776.003 316.218 776.376 317.112 776.376 318.045C776.376 318.977 776.003 319.871 775.339 320.532C774.917 320.96 774.39 321.273 773.81 321.44C773.23 321.607 772.617 321.622 772.029 321.484C771.749 321.427 771.46 321.441 771.188 321.524C770.916 321.608 770.668 321.757 770.469 321.96L758.067 334.264C757.861 334.46 757.709 334.705 757.625 334.976C757.541 335.247 757.528 335.534 757.587 335.811C757.71 336.328 757.713 336.866 757.597 337.385C757.481 337.903 757.248 338.389 756.916 338.806C756.583 339.222 756.16 339.559 755.678 339.791C755.196 340.022 754.668 340.142 754.132 340.143H754.108Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M751.589 339.095C752.256 339.762 753.162 340.138 754.108 340.143H754.132C754.668 340.142 755.196 340.022 755.678 339.791C756.16 339.559 756.583 339.222 756.916 338.806C757.248 338.389 757.481 337.903 757.597 337.385C757.713 336.866 757.71 336.328 757.587 335.811C757.528 335.534 757.541 335.247 757.625 334.976C757.709 334.705 757.861 334.46 758.067 334.264L770.469 321.96C770.668 321.757 770.916 321.608 771.188 321.524C771.46 321.441 771.749 321.427 772.029 321.484C772.617 321.622 773.23 321.607 773.81 321.44C774.39 321.273 774.917 320.96 775.339 320.532C776.003 319.871 776.376 318.977 776.376 318.045C776.376 317.112 776.003 316.218 775.339 315.558C774.76 314.984 773.996 314.631 773.18 314.558C773.137 314.074 772.993 313.605 772.758 313.178C772.523 312.752 772.202 312.379 771.814 312.082C771.427 311.785 770.981 311.571 770.506 311.453C770.031 311.335 769.537 311.316 769.054 311.397C768.571 311.477 768.111 311.656 767.701 311.922C767.291 312.188 766.941 312.535 766.673 312.941C766.405 313.348 766.224 313.805 766.143 314.284C766.061 314.763 766.081 315.253 766.199 315.724C766.263 316.001 766.253 316.29 766.168 316.562C766.084 316.833 765.929 317.078 765.719 317.271L753.317 329.576C753.122 329.784 752.875 329.937 752.601 330.021C752.328 330.104 752.036 330.115 751.757 330.052C751.172 329.911 750.559 329.922 749.979 330.085C749.399 330.247 748.871 330.556 748.447 330.98C748.115 331.307 747.851 331.696 747.671 332.125C747.491 332.554 747.398 333.014 747.398 333.479C747.398 333.943 747.491 334.403 747.671 334.832C747.851 335.261 748.115 335.65 748.447 335.978C749.017 336.551 749.773 336.905 750.582 336.977C750.654 337.779 751.012 338.53 751.589 339.095ZM754.746 330.975C754.316 331.423 753.778 331.753 753.185 331.934C752.578 332.119 751.933 332.142 751.314 332.002L751.302 331.999L751.289 331.996C751.036 331.935 750.77 331.94 750.519 332.01C750.268 332.081 750.041 332.214 749.86 332.395L749.851 332.404L749.851 332.404C749.706 332.546 749.593 332.715 749.515 332.899C749.438 333.083 749.398 333.28 749.398 333.479C749.398 333.677 749.438 333.874 749.515 334.058C749.593 334.243 749.706 334.411 749.851 334.553L749.858 334.56L749.865 334.567C750.101 334.805 750.418 334.955 750.759 334.985L752.423 335.134L752.574 336.797C752.603 337.123 752.749 337.432 752.988 337.666L752.996 337.673L753.003 337.68C753.294 337.972 753.694 338.14 754.114 338.143H754.132C754.132 338.143 754.132 338.143 754.132 338.143C754.369 338.142 754.601 338.089 754.813 337.988C755.024 337.886 755.208 337.739 755.352 337.559C755.496 337.378 755.596 337.169 755.646 336.947C755.695 336.725 755.694 336.495 755.641 336.274L755.636 336.251L755.631 336.229C755.5 335.617 755.529 334.981 755.714 334.383C755.897 333.793 756.227 333.26 756.67 332.833L769.054 320.547C769.486 320.111 770.019 319.79 770.604 319.612C771.194 319.431 771.82 319.401 772.425 319.523L772.455 319.53L772.486 319.537C772.74 319.596 773.006 319.59 773.258 319.518C773.509 319.445 773.735 319.311 773.915 319.128L773.922 319.121L773.929 319.114C774.217 318.827 774.376 318.443 774.376 318.045C774.376 317.648 774.218 317.264 773.931 316.978C773.684 316.734 773.356 316.582 773.003 316.55L771.338 316.402L771.188 314.737C771.17 314.53 771.108 314.328 771.007 314.145C770.906 313.961 770.767 313.799 770.598 313.67C770.429 313.54 770.233 313.446 770.024 313.394C769.815 313.342 769.597 313.334 769.384 313.369C769.171 313.405 768.968 313.484 768.789 313.6C768.61 313.716 768.458 313.867 768.342 314.042C768.227 314.218 768.149 314.414 768.114 314.619C768.08 314.824 768.088 315.034 768.139 315.236L768.144 315.255L768.148 315.274C768.292 315.896 768.268 316.545 768.079 317.154C767.894 317.749 767.559 318.285 767.107 318.712L754.746 330.975Z" fill="url(#paint43_linear_1981_7883)"/>
<path d="M769.223 327.98L767.735 328.789C766.439 329.55 764.927 329.867 763.431 329.691C761.935 329.514 760.539 328.855 759.459 327.813C758.434 326.79 757.769 325.467 757.561 324.04C757.354 322.612 757.616 321.156 758.307 319.888L759.147 318.008C761.344 314.06 762.753 309.729 763.297 305.251C765.073 290.424 771.598 283.094 788.415 283.094C790.518 283.088 792.601 283.494 794.546 284.289C796.49 285.085 798.256 286.254 799.744 287.729C801.231 289.205 802.409 290.957 803.211 292.886C804.013 294.815 804.422 296.882 804.416 298.968C804.416 315.628 797.027 322.125 782.057 323.886C777.554 324.422 773.197 325.812 769.223 327.98Z" fill="#F4F1F0"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M767.735 328.789L769.223 327.98C773.197 325.812 777.554 324.422 782.057 323.886C797.027 322.125 804.416 315.628 804.416 298.968C804.422 296.882 804.013 294.815 803.211 292.886C802.409 290.957 801.231 289.205 799.744 287.729C798.256 286.254 796.49 285.085 794.546 284.289C792.601 283.494 790.518 283.088 788.415 283.094C771.598 283.094 765.073 290.424 763.297 305.251C762.753 309.729 761.344 314.06 759.147 318.008L758.307 319.888C757.616 321.156 757.354 322.612 757.561 324.04C757.769 325.467 758.434 326.79 759.459 327.813C760.539 328.855 761.935 329.514 763.431 329.691C764.927 329.867 766.439 329.55 767.735 328.789ZM760.86 326.385C761.622 327.115 762.607 327.58 763.665 327.705C764.729 327.83 765.803 327.604 766.723 327.064L766.751 327.048L768.265 326.224C768.265 326.224 768.265 326.224 768.265 326.224C772.463 323.934 777.066 322.466 781.821 321.9L781.824 321.9C789.111 321.043 794.148 319.071 797.398 315.639C800.627 312.229 802.416 307.03 802.416 298.968V298.962C802.422 297.142 802.064 295.338 801.364 293.654C800.664 291.97 799.635 290.439 798.335 289.149C797.035 287.859 795.49 286.837 793.788 286.14C792.087 285.444 790.262 285.088 788.421 285.094L788.415 285.094C780.266 285.094 775.016 286.872 771.579 290.076C768.125 293.295 766.147 298.279 765.283 305.489L765.283 305.492C764.711 310.198 763.236 314.75 760.938 318.902L760.101 320.776L760.063 320.846C759.578 321.735 759.396 322.754 759.541 323.752C759.685 324.745 760.146 325.668 760.86 326.385Z" fill="url(#paint44_linear_1981_7883)"/>
<path d="M8.70711 0.292893C8.31658 -0.0976311 7.68342 -0.0976311 7.29289 0.292893L0.928932 6.65685C0.538408 7.04738 0.538408 7.68054 0.928932 8.07107C1.31946 8.46159 1.95262 8.46159 2.34315 8.07107L8 2.41421L13.6569 8.07107C14.0474 8.46159 14.6805 8.46159 15.0711 8.07107C15.4616 7.68054 15.4616 7.04738 15.0711 6.65685L8.70711 0.292893ZM1003.67 263C1003.67 265.946 1006.05 268.333 1009 268.333C1011.95 268.333 1014.33 265.946 1014.33 263C1014.33 260.054 1011.95 257.667 1009 257.667C1006.05 257.667 1003.67 260.054 1003.67 263ZM7 1V243H9V1H7ZM28 264H1009V262H28V264ZM7 243C7 254.598 16.402 264 28 264V262C17.5066 262 9 253.493 9 243H7Z" fill="url(#paint45_linear_1981_7883)"/>
<defs>
<linearGradient id="paint0_linear_1981_7883" x1="40.06" y1="173.545" x2="89.0876" y2="63.4906" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint1_linear_1981_7883" x1="357.06" y1="173.545" x2="406.088" y2="63.4906" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint2_linear_1981_7883" x1="674.06" y1="173.545" x2="723.088" y2="63.4906" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint3_linear_1981_7883" x1="58.473" y1="343.583" x2="45.4121" y2="332.371" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint4_linear_1981_7883" x1="49.5349" y1="338.461" x2="32.8652" y2="322.104" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint5_linear_1981_7883" x1="45.1163" y1="322.318" x2="42.0717" y2="319.181" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint6_linear_1981_7883" x1="375.473" y1="343.583" x2="362.412" y2="332.371" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint7_linear_1981_7883" x1="366.535" y1="338.461" x2="349.865" y2="322.104" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint8_linear_1981_7883" x1="362.116" y1="322.318" x2="359.072" y2="319.181" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint9_linear_1981_7883" x1="208.541" y1="335.862" x2="205.893" y2="329.203" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint10_linear_1981_7883" x1="245.205" y1="298.747" x2="242.016" y2="291.58" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint11_linear_1981_7883" x1="239.323" y1="301.499" x2="237.499" y2="291.316" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint12_linear_1981_7883" x1="234.405" y1="305.077" x2="233.13" y2="293.877" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint13_linear_1981_7883" x1="210.516" y1="330.753" x2="208.529" y2="320.947" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint14_linear_1981_7883" x1="214.579" y1="324.902" x2="213.304" y2="313.701" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint15_linear_1981_7883" x1="219.796" y1="318.792" x2="218.922" y2="307.004" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint16_linear_1981_7883" x1="229.001" y1="309.585" x2="228.127" y2="297.797" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint17_linear_1981_7883" x1="224.528" y1="313.613" x2="223.861" y2="301.556" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint18_linear_1981_7883" x1="117.615" y1="331.049" x2="123.516" y2="316.121" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint19_linear_1981_7883" x1="128.399" y1="315.007" x2="137.961" y2="290.829" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint20_linear_1981_7883" x1="520.752" y1="336.862" x2="518.104" y2="330.203" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint21_linear_1981_7883" x1="557.416" y1="299.747" x2="554.227" y2="292.58" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint22_linear_1981_7883" x1="551.534" y1="302.499" x2="549.71" y2="292.316" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint23_linear_1981_7883" x1="546.616" y1="306.077" x2="545.341" y2="294.877" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint24_linear_1981_7883" x1="522.727" y1="331.753" x2="520.74" y2="321.947" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint25_linear_1981_7883" x1="526.79" y1="325.902" x2="525.515" y2="314.701" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint26_linear_1981_7883" x1="532.007" y1="319.792" x2="531.133" y2="308.004" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint27_linear_1981_7883" x1="541.212" y1="310.585" x2="540.338" y2="298.797" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint28_linear_1981_7883" x1="536.739" y1="314.613" x2="536.072" y2="302.556" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint29_linear_1981_7883" x1="431.513" y1="331.049" x2="437.415" y2="316.121" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint30_linear_1981_7883" x1="442.298" y1="315.007" x2="451.859" y2="290.829" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint31_linear_1981_7883" x1="692.473" y1="343.583" x2="679.412" y2="332.371" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint32_linear_1981_7883" x1="683.535" y1="338.461" x2="666.865" y2="322.104" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint33_linear_1981_7883" x1="679.116" y1="322.318" x2="676.072" y2="319.181" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint34_linear_1981_7883" x1="837.752" y1="336.862" x2="835.104" y2="330.203" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint35_linear_1981_7883" x1="874.416" y1="299.747" x2="871.227" y2="292.58" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint36_linear_1981_7883" x1="868.534" y1="302.499" x2="866.71" y2="292.316" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint37_linear_1981_7883" x1="863.614" y1="306.077" x2="862.339" y2="294.877" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint38_linear_1981_7883" x1="839.727" y1="331.753" x2="837.74" y2="321.947" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint39_linear_1981_7883" x1="843.788" y1="325.902" x2="842.513" y2="314.701" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint40_linear_1981_7883" x1="849.007" y1="319.792" x2="848.133" y2="308.004" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint41_linear_1981_7883" x1="858.212" y1="310.585" x2="857.338" y2="298.797" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint42_linear_1981_7883" x1="853.739" y1="314.613" x2="853.072" y2="302.556" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint43_linear_1981_7883" x1="748.513" y1="331.049" x2="754.415" y2="316.121" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint44_linear_1981_7883" x1="759.298" y1="315.007" x2="768.859" y2="290.829" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
<linearGradient id="paint45_linear_1981_7883" x1="46.5118" y1="180.257" x2="62.6899" y2="24.891" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

BIN
assets/img/discount-bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -1,9 +0,0 @@
<svg width="119" height="70" viewBox="0 0 119 70" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M71.7665 2.29297V0.292969H69.7665H59.1065H58.2781L57.6923 0.878755L50.2374 8.33366C48.4517 7.77786 46.9259 7.32466 45.9688 7.07279C35.0547 4.20085 25.0891 2.87509 17.2711 3.24005C13.363 3.42249 9.93894 4.02959 7.18564 5.11314C4.42435 6.19983 2.28057 7.79103 1.06605 9.95316C-0.574599 12.8739 -0.23117 16.3058 1.4782 19.8719C3.1922 23.4475 6.34249 27.3046 10.6141 31.2163C19.1648 39.0467 32.3746 47.2463 48.2096 53.9948C51.1922 55.2659 54.1643 56.4413 57.1065 57.5192V67.893V69.893H59.1065H69.7665H71.7665V67.893V62.1641C79.0292 64.0959 85.8646 65.3425 91.9292 65.8706C98.0965 66.4076 103.526 66.2071 107.819 65.1914C112.101 64.1785 115.422 62.3085 117.063 59.3878C118.638 56.5827 118.384 53.3047 116.848 49.8942C115.31 46.4778 112.435 42.7973 108.51 39.054C100.651 31.5611 88.4222 23.6646 73.6304 16.9757C72.935 16.6613 72.3165 16.3857 71.7665 16.144V2.29297ZM71.7665 18.3222V60.1365C79.1849 62.1477 86.1425 63.4342 92.2623 63.9671C98.2999 64.4929 103.463 64.2796 107.427 63.3419C111.402 62.4014 114.001 60.7784 115.223 58.6037C116.396 56.5149 116.329 53.8658 114.914 50.7223C113.501 47.5847 110.798 44.0843 106.962 40.4263C99.2958 33.1165 87.2649 25.3284 72.6109 18.7019C72.3154 18.5683 72.0342 18.4418 71.7665 18.3222ZM69.7665 59.5798V4.29297V2.29297H67.7665H61.35H61.1065H59.1065L57.619 3.78047L57.1065 4.29297L36.7205 24.679L42.0108 31.1595L43.2805 32.715L44.7171 31.3122L57.1065 19.2143L59.1065 17.2613V20.0567V56.1423C62.7266 57.4412 66.2924 58.5881 69.7665 59.5798ZM59.1065 58.2386V65.893V67.893H61.1065H67.7665H69.7665V65.893V61.6178C66.2899 60.6433 62.7244 59.5158 59.1065 58.2386ZM57.1065 55.4112V22.0096L44.6778 34.1459L43.1137 35.6732L41.7312 33.9797L35.1712 25.9437L34.0279 24.5432L35.3063 23.2648L48.6656 9.90543C47.237 9.46636 46.0468 9.11715 45.2728 8.91348C34.4808 6.07367 24.7505 4.79881 17.2383 5.14949C13.4814 5.32487 10.3317 5.90466 7.89733 6.86271C5.47089 7.81763 3.81285 9.12274 2.90593 10.7373C1.68433 12.912 1.8085 15.6957 3.39565 19.0068C4.97818 22.3082 7.95334 25.9896 12.1352 29.8191C20.4913 37.4713 33.5005 45.565 49.1891 52.251C51.8434 53.3822 54.4872 54.436 57.1065 55.4112Z" fill="url(#paint0_linear_1981_8001)"/>
<defs>
<linearGradient id="paint0_linear_1981_8001" x1="4.54481" y1="47.9124" x2="13.8147" y2="8.36494" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -1,9 +0,0 @@
<svg width="119" height="71" viewBox="0 0 119 71" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M34.0446 25.9105L33.8216 28.112H48.2188L48.4336 26.3546C49.0165 21.5858 50.2507 18.6601 51.7986 17.1122C53.3281 15.5827 55.6951 14.664 59.2404 14.664C62.4959 14.664 64.3867 15.5671 65.4563 16.9317L65.4645 16.9422L65.4729 16.9526C66.6642 18.4315 67.4084 20.7574 67.4084 24.226C67.4084 26.8171 66.5601 29.4041 64.7345 32.0191L64.7271 32.0296L64.7199 32.0402C62.916 34.696 59.7595 37.8846 55.1188 41.608L55.1099 41.6152C52.0518 44.0976 47.9906 47.1349 42.9177 50.7304C30.0348 44.6551 19.3504 37.7186 12.1352 31.1112C7.95334 27.2817 4.97818 23.6003 3.39565 20.2989C1.8085 16.9878 1.68433 14.2041 2.90593 12.0294C4.57982 9.04943 8.85931 7.11514 15.5285 6.55277C21.9383 6.01227 30.2106 6.7781 39.5195 8.81674C36.5319 12.9561 34.771 18.7372 34.0446 25.9105ZM40.893 7.12484C31.157 4.9342 22.3695 4.06762 15.4755 4.64894C8.65086 5.22442 3.30418 7.26083 1.06605 11.2452C-0.574599 14.166 -0.23117 17.5979 1.4782 21.1639C3.1922 24.7396 6.34249 28.5967 10.6141 32.5084C17.8397 39.1252 28.3921 46.0058 41.0441 52.0515C39.034 53.4618 36.879 54.9519 34.5788 56.5221L33.7064 57.1177V70.588H83.7904V66.1C86.6254 66.5828 89.3472 66.9379 91.9292 67.1627C98.0965 67.6997 103.526 67.4992 107.819 66.4835C112.101 65.4706 115.422 63.6006 117.063 60.6799C118.49 58.1387 118.415 55.2058 117.248 52.1458C116.081 49.0872 113.792 45.804 110.609 42.4477C104.256 35.749 94.1961 28.6057 81.7792 22.204C81.507 15.9641 79.9426 10.7898 76.9029 6.85932C73.3946 2.19274 67.2562 0.167969 59.2404 0.167969C52.0935 0.167969 46.2016 2.10736 41.8059 6.1978L41.7957 6.20738C41.4852 6.50037 41.1844 6.80625 40.893 7.12484ZM81.8208 24.4859C81.7744 28.3799 80.6852 32.1314 78.6061 35.7157C76.5381 39.3748 73.214 43.1254 68.7466 46.9785L68.7451 46.9798C65.4925 49.7795 61.3885 52.8445 56.4467 56.174H83.7904V64.1312C86.7534 64.6495 89.5878 65.0263 92.2623 65.2592C98.2999 65.7849 103.463 65.5717 107.427 64.634C111.402 63.6935 114.001 62.0705 115.223 59.8958C116.287 58.0022 116.331 55.6517 115.275 52.8822C114.218 50.1114 112.092 47.019 108.997 43.7561C103.024 37.4574 93.5806 30.6666 81.8208 24.4859ZM81.7904 63.7635V58.174H61.2093C68.4171 60.6578 75.3779 62.5287 81.7904 63.7635ZM51.8689 56.8008C51.1704 57.2536 50.4569 57.7114 49.7284 58.174H55.3936C64.6475 61.67 73.6451 64.2119 81.7904 65.7418V68.588H35.7064V58.174C38.3713 56.3548 40.8452 54.6405 43.1282 53.0309C44.789 53.7986 46.4837 54.5513 48.2096 55.2868C49.4315 55.8076 50.6518 56.3123 51.8689 56.8008ZM53.8956 55.473C59.442 51.7987 63.9569 48.4624 67.4404 45.464C71.8137 41.692 74.957 38.1113 76.8704 34.722C78.8384 31.3326 79.8224 27.834 79.8224 24.226C79.8224 17.338 78.319 11.9533 75.3124 8.07197C72.3604 4.13597 67.003 2.16797 59.2404 2.16797C52.4617 2.16797 47.1044 3.9993 43.1684 7.66197C39.5936 11.0354 37.2941 16.5187 36.2698 24.112C36.1819 24.7631 36.1035 25.4298 36.0344 26.112H46.4484C47.0497 21.192 48.3617 17.7206 50.3844 15.698C52.407 13.6753 55.359 12.664 59.2404 12.664C62.8484 12.664 65.445 13.6753 67.0304 15.698C68.6157 17.666 69.4084 20.5086 69.4084 24.226C69.4084 27.2873 68.397 30.2666 66.3744 33.164C64.4064 36.0613 61.0717 39.396 56.3704 43.168C53.4612 45.5296 49.6734 48.3733 45.007 51.6992C46.3782 52.3244 47.7727 52.9395 49.1891 53.5431C50.7626 54.2137 52.3324 54.8571 53.8956 55.473Z" fill="url(#paint0_linear_1981_8009)"/>
<defs>
<linearGradient id="paint0_linear_1981_8009" x1="4.5448" y1="48.3484" x2="14.0227" y2="8.38438" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -1,9 +0,0 @@
<svg width="119" height="71" viewBox="0 0 119 71" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M44.7618 45.2996L43.8517 43.0097L36.4535 47.915C26.4518 42.6712 18.1058 36.9782 12.1352 31.5106C7.95334 27.6811 4.97818 23.9997 3.39565 20.6983C1.8085 17.3872 1.68433 14.6035 2.90593 12.4288C4.47616 9.63339 8.3372 7.7543 14.3494 7.06877C20.1076 6.41219 27.5411 6.89349 35.9832 8.49322V14.4183H59.3722L42.8233 25.5166L48.4272 39.5263L50.2783 38.7971C53.6781 37.4578 56.9833 36.8043 60.2052 36.8043C63.4559 36.8043 65.8661 37.5524 67.6152 38.8643L67.6282 38.874L67.6413 38.8835C69.1862 40.0036 70.0952 41.782 70.0952 44.6443C70.0952 48.5784 68.9109 51.3331 66.7669 53.2192C64.5096 55.1503 61.6088 56.1743 57.9092 56.1743C54.357 56.1743 51.8103 55.3038 50.0329 53.791C48.1875 52.1723 46.3976 49.4153 44.7618 45.2996ZM35.9832 6.51665C27.6391 4.97486 20.1635 4.49496 14.229 5.17164C8.01991 5.87962 3.16923 7.90049 1.06605 11.6447C-0.574599 14.5654 -0.23117 17.9973 1.4782 21.5634C3.1922 25.139 6.34249 28.9961 10.6141 32.9078C16.5645 38.3569 24.7711 43.9848 34.5486 49.1781L32.9813 50.2173L33.4601 51.6674C35.4658 57.7417 38.5307 62.4908 42.7476 65.7438C46.9696 69.0008 52.0614 70.5883 57.9092 70.5883C65.3242 70.5883 71.4673 68.7702 76.1268 64.9454C81.7682 66.2632 87.0937 67.141 91.9292 67.5621C98.0965 68.0991 103.526 67.8986 107.819 66.8829C112.101 65.87 115.422 64 117.063 61.0793C118.638 58.2742 118.384 54.9962 116.848 51.5857C115.31 48.1693 112.435 44.4888 108.51 40.7455C100.756 33.352 88.746 25.5655 74.2179 18.9341L83.1152 13.5452V0.988281H35.9832V6.51665ZM72.1509 20.186L63.3522 25.5152C69.5524 25.6464 74.6692 27.2284 78.4701 30.4886C82.5576 33.891 84.5092 38.7101 84.5092 44.6443C84.5092 52.3838 82.3674 58.7035 77.8706 63.3439C83.0087 64.4995 87.8529 65.2747 92.2623 65.6586C98.2999 66.1843 103.463 65.9711 107.427 65.0334C111.402 64.0929 114.001 62.4699 115.223 60.2952C116.396 58.2064 116.329 55.5573 114.914 52.4138C113.501 49.2762 110.798 45.7758 106.962 42.1178C99.2958 34.808 87.2649 27.0199 72.6109 20.3934C72.4536 20.3222 72.3003 20.2531 72.1509 20.186ZM75.5529 62.8016C75.7146 62.6559 75.8741 62.5075 76.0312 62.3563C80.3499 58.1469 82.5092 52.2429 82.5092 44.6443C82.5092 39.1776 80.7326 34.9683 77.1792 32.0163C73.6806 29.0096 68.7879 27.5063 62.5012 27.5063C61.6843 27.5063 60.8191 27.5384 59.9058 27.6026C58.4357 27.706 56.8409 27.8925 55.1212 28.1623L81.1152 12.4183V2.98828H37.9832V12.4183H65.9452L45.2812 26.2763L49.5452 36.9361C53.1532 35.5148 56.7066 34.8043 60.2052 34.8043C63.7586 34.8043 66.6286 35.6243 68.8152 37.2643C71.0019 38.8496 72.0952 41.3096 72.0952 44.6443C72.0952 49.0176 70.7559 52.3796 68.0772 54.7303C65.8257 56.6602 63.072 57.779 59.8162 58.0867C65.2312 60.0038 70.5188 61.5786 75.5529 62.8016ZM46.4294 52.7398C45.4616 51.4036 44.551 49.794 43.6976 47.9113C43.4271 47.3144 43.1623 46.6901 42.9032 46.0383L38.4896 48.9647C41.0399 50.2573 43.6902 51.5192 46.4294 52.7398ZM36.573 50.2355L35.3592 51.0403C37.2726 56.8349 40.1426 61.2083 43.9692 64.1603C47.7959 67.1123 52.4426 68.5883 57.9092 68.5883C64.3213 68.5883 69.5584 67.1709 73.6206 64.3363C65.5628 62.3021 56.931 59.4031 48.2096 55.6863C44.1464 53.9546 40.2561 52.1275 36.573 50.2355Z" fill="url(#paint0_linear_1981_8014)"/>
<defs>
<linearGradient id="paint0_linear_1981_8014" x1="4.54481" y1="48.6078" x2="13.8147" y2="9.06027" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 14 KiB

BIN
assets/img/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 KiB

View File

@@ -0,0 +1,3 @@
<svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.25023 2.99272C0 5.24325 0 8.86108 0 16.101V17.3791C0 24.619 0 28.2411 2.25023 30.4917C4.50046 32.7422 8.11782 32.7422 15.361 32.7422H16.639C23.8779 32.7422 27.4995 32.7422 29.7498 30.4917C32 28.2411 32 24.6233 32 17.3791V16.101C32 8.86108 32 5.239 29.7498 2.98847C27.4995 0.742188 23.8779 0.742188 16.639 0.742188H15.361C8.11782 0.742188 4.50046 0.742188 2.25023 2.99272ZM5.40056 10.4789C5.57463 18.7974 9.73544 23.7995 17.0253 23.7995H17.4372V19.0394C20.1162 19.3069 22.1414 21.2645 22.9566 23.7995H26.7438C25.7036 20.0118 22.9694 17.9184 21.2626 17.1201C22.9694 16.135 25.3682 13.7316 25.9414 10.4789H22.5023C21.7551 13.1201 19.5431 15.5193 17.4372 15.7443V10.4789H13.9981V19.7061C11.8668 19.1711 9.17076 16.5851 9.05188 10.4789H5.40056Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 911 B

View File

@@ -0,0 +1,3 @@
<svg width="32" height="33" viewBox="0 0 32 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16 0.742188C7.16387 0.742188 0 7.90606 0 16.7422C0 25.5783 7.16387 32.7422 16 32.7422C24.8361 32.7422 32 25.5783 32 16.7422C32 7.90606 24.8361 0.742188 16 0.742188ZM23.8555 11.7048L21.2335 24.0815C21.0374 24.959 20.5213 25.1757 19.7884 24.7628L15.7832 21.8106L13.8529 23.6686C13.6361 23.8854 13.4606 24.0609 13.0477 24.0609L13.3265 19.9938L20.7381 13.2944C21.0581 13.0157 20.6658 12.8506 20.2426 13.1293L11.0761 18.8996L7.1329 17.6712C6.27613 17.4028 6.25548 16.8144 7.31871 16.4015L22.751 10.4454C23.4632 10.1873 24.0929 10.6209 23.8555 11.7048Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 676 B

View File

@@ -0,0 +1,6 @@
<svg width="33" height="33" viewBox="0 0 33 33" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.568 0.742188C15.3825 3.24847 15.3939 5.78891 14.9687 8.25368C14.1605 12.9294 11.5304 15.3105 6.79636 15.8649C4.54453 16.1288 2.2659 16.1683 0 16.3095C0 15.8187 0.160702 14.5311 0.188825 14.3684C1.18518 8.62865 4.32691 4.50931 9.62271 2.11485C11.0322 1.47874 15.0772 0.742188 15.568 0.742188Z" fill="white"/>
<path d="M0 17.1484C1.98668 17.287 3.98207 17.3527 5.9567 17.5897C7.26575 17.7464 8.59221 18.0209 9.82962 18.4669C12.4651 19.417 14.1652 21.387 14.6935 24.0901C15.2399 26.887 15.4375 29.7528 15.8051 32.7325C13.2814 32.8082 11.2063 32.2571 9.25913 31.3016C4.19768 28.8188 1.14634 24.7905 0.190834 19.2074C0.156685 19.0072 0 17.6399 0 17.1484Z" fill="white"/>
<path d="M19.7047 1.16135C26.3892 2.64115 31.7125 8.86167 32.0111 15.5469C32.0205 15.7538 32.0124 15.9614 32.0124 16.3069C28.4489 16.181 24.8913 16.3457 21.5842 14.8097C18.8215 13.526 17.5138 11.1249 17.0839 8.25502C16.7739 6.18397 16.7257 4.07408 16.5542 1.9816C16.5201 1.56713 16.4585 1.15533 16.4089 0.742189C16.8997 0.741519 19.096 1.0261 19.7047 1.16135Z" fill="white"/>
<path d="M16.3945 32.6792C16.6202 30.1595 16.7032 27.7075 17.0862 25.303C17.7719 20.9968 20.1751 18.5528 24.4544 17.843C26.8897 17.4393 29.3799 17.3643 31.844 17.1406C32.5009 24.1633 25.5157 32.8807 16.3945 32.6792Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -1,9 +0,0 @@
<svg width="137" height="34" viewBox="0 0 137 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M62.1832 0.5C61.9071 0.5 61.6832 0.723858 61.6832 1C61.6832 1.27614 61.9071 1.5 62.1832 1.5V0.5ZM0.556603 29.6464C0.361341 29.8417 0.361341 30.1583 0.556603 30.3536L3.73858 33.5355C3.93385 33.7308 4.25043 33.7308 4.44569 33.5355C4.64095 33.3403 4.64095 33.0237 4.44569 32.8284L1.61726 30L4.44569 27.1716C4.64095 26.9763 4.64095 26.6597 4.44569 26.4645C4.25043 26.2692 3.93385 26.2692 3.73858 26.4645L0.556603 29.6464ZM62.1832 1.5H135.91V0.5H62.1832V1.5ZM106.91 29.5H0.910156V30.5H106.91V29.5ZM135.41 1C135.41 16.7401 122.65 29.5 106.91 29.5V30.5C123.203 30.5 136.41 17.2924 136.41 1H135.41Z" fill="url(#paint0_linear_4973_4353)"/>
<defs>
<linearGradient id="paint0_linear_4973_4353" x1="6.10406" y1="20.8414" x2="7.57889" y2="3.58401" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 976 B

View File

@@ -1,9 +0,0 @@
<svg width="95" height="34" viewBox="0 0 95 34" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.41016 0.5C2.13401 0.5 1.91016 0.723858 1.91016 1C1.91016 1.27614 2.13401 1.5 2.41016 1.5V0.5ZM0.556603 29.6464C0.361341 29.8417 0.361341 30.1583 0.556603 30.3536L3.73858 33.5355C3.93385 33.7308 4.25043 33.7308 4.44569 33.5355C4.64095 33.3403 4.64095 33.0237 4.44569 32.8284L1.61726 30L4.44569 27.1716C4.64095 26.9763 4.64095 26.6597 4.44569 26.4645C4.25043 26.2692 3.93385 26.2692 3.73858 26.4645L0.556603 29.6464ZM2.41016 1.5H93.9102V0.5H2.41016V1.5ZM64.9102 29.5L0.910156 29.5L0.910156 30.5L64.9102 30.5V29.5ZM93.4102 1C93.4102 16.7401 80.6503 29.5 64.9102 29.5V30.5C81.2026 30.5 94.4102 17.2924 94.4102 1H93.4102Z" fill="url(#paint0_linear_4973_4357)"/>
<defs>
<linearGradient id="paint0_linear_4973_4357" x1="4.48818" y1="20.8414" x2="6.61202" y2="3.72144" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 1003 B

View File

@@ -1,9 +0,0 @@
<svg width="224" height="23" viewBox="0 0 224 23" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M213.16 1L221.922 11.5M221.922 11.5L213.16 22M221.922 11.5L0.92188 11.5" stroke="url(#paint0_linear_4922_1089)" stroke-width="2"/>
<defs>
<linearGradient id="paint0_linear_4922_1089" x1="70.7166" y1="1.80793" x2="77.8662" y2="31.7416" gradientUnits="userSpaceOnUse">
<stop stop-color="#F44242"/>
<stop offset="1" stop-color="#569EF0"/>
</linearGradient>
</defs>
</svg>

Before

Width:  |  Height:  |  Size: 476 B

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.3 KiB

Some files were not shown because too many files have changed in this diff Show More