from server 06.12.22
|
|
@ -0,0 +1,46 @@
|
||||||
|
<?php namespace AhmadFatoni\ApiGenerator\Controllers\API;
|
||||||
|
|
||||||
|
use Cms\Classes\Controller;
|
||||||
|
use BackendMenu;
|
||||||
|
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use AhmadFatoni\ApiGenerator\Helpers\Helpers;
|
||||||
|
use Illuminate\Support\Facades\Validator;
|
||||||
|
use RainLab\Blog\Models\Category;
|
||||||
|
class CategoriesV2Controller extends Controller
|
||||||
|
{
|
||||||
|
protected $Category;
|
||||||
|
|
||||||
|
protected $helpers;
|
||||||
|
|
||||||
|
public function __construct(Category $Category, Helpers $helpers)
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
$this->Category = $Category;
|
||||||
|
$this->helpers = $helpers;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function index(){
|
||||||
|
|
||||||
|
//categories list
|
||||||
|
$data = $this->Category->select('id','name')
|
||||||
|
->with(['translations:model_id,locale,attribute_data'])
|
||||||
|
->where('status',1)
|
||||||
|
->get()
|
||||||
|
->toArray();
|
||||||
|
|
||||||
|
return $this->helpers->apiArrayResponseBuilder(200, 'success', $data);
|
||||||
|
}
|
||||||
|
|
||||||
|
//categories item
|
||||||
|
public function show($id){
|
||||||
|
|
||||||
|
$data = $this->Category::find($id);
|
||||||
|
|
||||||
|
if ($data){
|
||||||
|
return $this->helpers->apiArrayResponseBuilder(200, 'success', [$data]);
|
||||||
|
} else {
|
||||||
|
$this->helpers->apiArrayResponseBuilder(404, 'not found', ['error' => 'Resource id=' . $id . ' could not be found']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -7,6 +7,10 @@ Route::get('fatoni/delete/api/{id}', array('as' => 'fatoni.delete.api', 'uses' =
|
||||||
Route::resource('api/categories', 'AhmadFatoni\ApiGenerator\Controllers\API\CategoriesController', ['except' => ['destroy', 'create', 'edit']]);
|
Route::resource('api/categories', 'AhmadFatoni\ApiGenerator\Controllers\API\CategoriesController', ['except' => ['destroy', 'create', 'edit']]);
|
||||||
Route::resource('api/advetisements', 'AhmadFatoni\ApiGenerator\Controllers\API\AdvertisementsController', ['except' => ['destroy', 'create', 'edit']]);
|
Route::resource('api/advetisements', 'AhmadFatoni\ApiGenerator\Controllers\API\AdvertisementsController', ['except' => ['destroy', 'create', 'edit']]);
|
||||||
Route::resource('{locale}/api/posts', 'AhmadFatoni\ApiGenerator\Controllers\API\postsController', ['except' => ['destroy', 'create', 'edit']]);
|
Route::resource('{locale}/api/posts', 'AhmadFatoni\ApiGenerator\Controllers\API\postsController', ['except' => ['destroy', 'create', 'edit']]);
|
||||||
|
|
||||||
|
|
||||||
|
Route::resource('api/v2/categories', 'AhmadFatoni\ApiGenerator\Controllers\API\CategoriesV2Controller', ['except' => ['destroy', 'create', 'edit']]);
|
||||||
|
|
||||||
Route::get('api/version',function (){
|
Route::get('api/version',function (){
|
||||||
return '2.0.8';
|
return '2.0.8';
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -82,6 +82,14 @@ class Plugin extends PluginBase
|
||||||
'order' => 'name',
|
'order' => 'name',
|
||||||
'conditions' => 'bedard_blogtags_tags.locale = "en"'
|
'conditions' => 'bedard_blogtags_tags.locale = "en"'
|
||||||
];
|
];
|
||||||
|
$model->belongsToMany['tags_tm'] = [
|
||||||
|
'Bedard\BlogTags\Models\Tag',
|
||||||
|
'table' => 'bedard_blogtags_post_tag',
|
||||||
|
'key' => 'post_id',
|
||||||
|
'other_key' =>'tag_id',
|
||||||
|
'order' => 'name',
|
||||||
|
'conditions' => 'bedard_blogtags_tags.locale = "tm"'
|
||||||
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -105,6 +113,13 @@ class Plugin extends PluginBase
|
||||||
'dependsOn' => 'locale',
|
'dependsOn' => 'locale',
|
||||||
'tab' => 'rainlab.blog::lang.post.tab_categories',
|
'tab' => 'rainlab.blog::lang.post.tab_categories',
|
||||||
'type' => 'taglist'
|
'type' => 'taglist'
|
||||||
|
],
|
||||||
|
'tags_tm' => [
|
||||||
|
'label' => 'Tags tm',
|
||||||
|
'mode' => 'relation',
|
||||||
|
'dependsOn' => 'locale',
|
||||||
|
'tab' => 'rainlab.blog::lang.post.tab_categories',
|
||||||
|
'type' => 'taglist'
|
||||||
]
|
]
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ use Flash;
|
||||||
use Lang;
|
use Lang;
|
||||||
use Backend\Classes\Controller;
|
use Backend\Classes\Controller;
|
||||||
use RainLab\Blog\Models\Post;
|
use RainLab\Blog\Models\Post;
|
||||||
|
use October\Rain\Network\Http;
|
||||||
|
|
||||||
class Posts extends Controller
|
class Posts extends Controller
|
||||||
{
|
{
|
||||||
|
|
@ -28,7 +29,39 @@ class Posts extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
public function onNotify($id) {
|
public function onNotify($id) {
|
||||||
return $id;
|
$result = Http::post('https://fcm.googleapis.com/fcm/send', function($http) use ($id){
|
||||||
|
$http->header('Content-Type', 'application/json');
|
||||||
|
$http->header('Authorization', 'key=AAAAxAUM6JY:APA91bFhUTph1MyI8BiDdgICwvR4YVim7rgW5cohk7j8Y5AGj3NLkQlw9gGc9vj9TtCzL8asMYijmbN47cQA0sAwW2L7CuhDI_Is3iqUuN7YQk4QjSGxjGbcGqgF-Lzy97A8eIKAPhDG');
|
||||||
|
|
||||||
|
$post = Post::find($id);
|
||||||
|
$data = [
|
||||||
|
"data"=>[
|
||||||
|
"click_action" => "FLUTTER_NOTIFICATION_CLICK",
|
||||||
|
"type" => "news",
|
||||||
|
"post" => [
|
||||||
|
"id" => $post->id,
|
||||||
|
"title" => $post->title,
|
||||||
|
"content" => $post->excerpt
|
||||||
|
],
|
||||||
|
],
|
||||||
|
"priority" => "high",
|
||||||
|
"notification" => [
|
||||||
|
"title" => $post->title,
|
||||||
|
"body" => $post->excerpt
|
||||||
|
],
|
||||||
|
"to" => "/topics/notifications_".$post->locale
|
||||||
|
];
|
||||||
|
|
||||||
|
$http->setOption(CURLOPT_POSTFIELDS, json_encode($data));
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
if($result->message_id){
|
||||||
|
return Flash::success('Notification ugradyldy.');
|
||||||
|
}elseif($result->error){
|
||||||
|
return Flash::error('Ýalňyşlyk Ýüze Çykdy!!!');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function index()
|
public function index()
|
||||||
|
|
|
||||||
|
|
@ -60,3 +60,4 @@ scopes:
|
||||||
options:
|
options:
|
||||||
ru: RU
|
ru: RU
|
||||||
en: EN
|
en: EN
|
||||||
|
tm: TM
|
||||||
|
|
@ -1,9 +1,7 @@
|
||||||
<?php
|
<?php return [
|
||||||
|
|
||||||
return [
|
|
||||||
'plugin' => [
|
'plugin' => [
|
||||||
'name' => 'Blog',
|
'name' => 'Blog',
|
||||||
'description' => 'A robust blogging platform.'
|
'description' => 'A robust blogging platform.',
|
||||||
],
|
],
|
||||||
'blog' => [
|
'blog' => [
|
||||||
'menu_label' => 'Blog',
|
'menu_label' => 'Blog',
|
||||||
|
|
@ -26,7 +24,7 @@ return [
|
||||||
'settings_description' => 'Manage blog settings',
|
'settings_description' => 'Manage blog settings',
|
||||||
'show_all_posts_label' => 'Show all posts to backend users',
|
'show_all_posts_label' => 'Show all posts to backend users',
|
||||||
'show_all_posts_comment' => 'Display both published and unpublished posts on the frontend to backend users',
|
'show_all_posts_comment' => 'Display both published and unpublished posts on the frontend to backend users',
|
||||||
'tab_general' => 'General'
|
'tab_general' => 'General',
|
||||||
],
|
],
|
||||||
'posts' => [
|
'posts' => [
|
||||||
'list_title' => 'Manage the blog posts',
|
'list_title' => 'Manage the blog posts',
|
||||||
|
|
@ -35,7 +33,7 @@ return [
|
||||||
'filter_date' => 'Date',
|
'filter_date' => 'Date',
|
||||||
'new_post' => 'New post',
|
'new_post' => 'New post',
|
||||||
'export_post' => 'Export posts',
|
'export_post' => 'Export posts',
|
||||||
'import_post' => 'Import posts'
|
'import_post' => 'Import posts',
|
||||||
],
|
],
|
||||||
'post' => [
|
'post' => [
|
||||||
'title' => 'Title',
|
'title' => 'Title',
|
||||||
|
|
@ -75,7 +73,7 @@ return [
|
||||||
'categories' => [
|
'categories' => [
|
||||||
'list_title' => 'Manage the blog categories',
|
'list_title' => 'Manage the blog categories',
|
||||||
'new_category' => 'New category',
|
'new_category' => 'New category',
|
||||||
'uncategorized' => 'Uncategorized'
|
'uncategorized' => 'Uncategorized',
|
||||||
],
|
],
|
||||||
'category' => [
|
'category' => [
|
||||||
'name' => 'Name',
|
'name' => 'Name',
|
||||||
|
|
@ -87,20 +85,20 @@ return [
|
||||||
'delete_confirm' => 'Delete this category?',
|
'delete_confirm' => 'Delete this category?',
|
||||||
'delete_success' => 'Successfully deleted those categories.',
|
'delete_success' => 'Successfully deleted those categories.',
|
||||||
'return_to_categories' => 'Return to the blog category list',
|
'return_to_categories' => 'Return to the blog category list',
|
||||||
'reorder' => 'Reorder Categories'
|
'reorder' => 'Reorder Categories',
|
||||||
],
|
],
|
||||||
'menuitem' => [
|
'menuitem' => [
|
||||||
'blog_category' => 'Blog category',
|
'blog_category' => 'Blog category',
|
||||||
'all_blog_categories' => 'All blog categories',
|
'all_blog_categories' => 'All blog categories',
|
||||||
'blog_post' => 'Blog post',
|
'blog_post' => 'Blog post',
|
||||||
'all_blog_posts' => 'All blog posts',
|
'all_blog_posts' => 'All blog posts',
|
||||||
'category_blog_posts' => 'Blog category posts'
|
'category_blog_posts' => 'Blog category posts',
|
||||||
],
|
],
|
||||||
'settings' => [
|
'settings' => [
|
||||||
'category_title' => 'Category List',
|
'category_title' => 'Category List',
|
||||||
'category_description' => 'Displays a list of blog categories on the page.',
|
'category_description' => 'Displays a list of blog categories on the page.',
|
||||||
'category_slug' => 'Category slug',
|
'category_slug' => 'Category slug',
|
||||||
'category_slug_description' => "Look up the blog category using the supplied slug value. This property is used by the default component partial for marking the currently active category.",
|
'category_slug_description' => 'Look up the blog category using the supplied slug value. This property is used by the default component partial for marking the currently active category.',
|
||||||
'category_display_empty' => 'Display empty categories',
|
'category_display_empty' => 'Display empty categories',
|
||||||
'category_display_empty_description' => 'Show categories that do not have any posts.',
|
'category_display_empty_description' => 'Show categories that do not have any posts.',
|
||||||
'category_page' => 'Category page',
|
'category_page' => 'Category page',
|
||||||
|
|
@ -108,7 +106,7 @@ return [
|
||||||
'post_title' => 'Post',
|
'post_title' => 'Post',
|
||||||
'post_description' => 'Displays a blog post on the page.',
|
'post_description' => 'Displays a blog post on the page.',
|
||||||
'post_slug' => 'Post slug',
|
'post_slug' => 'Post slug',
|
||||||
'post_slug_description' => "Look up the blog post using the supplied slug value.",
|
'post_slug_description' => 'Look up the blog post using the supplied slug value.',
|
||||||
'post_category' => 'Category page',
|
'post_category' => 'Category page',
|
||||||
'post_category_description' => 'Name of the category page file for the category links. This property is used by the default component partial.',
|
'post_category_description' => 'Name of the category page file for the category links. This property is used by the default component partial.',
|
||||||
'posts_title' => 'Post List',
|
'posts_title' => 'Post List',
|
||||||
|
|
@ -139,7 +137,7 @@ return [
|
||||||
'rssfeed_title' => 'RSS Feed',
|
'rssfeed_title' => 'RSS Feed',
|
||||||
'rssfeed_description' => 'Generates an RSS feed containing posts from the blog.',
|
'rssfeed_description' => 'Generates an RSS feed containing posts from the blog.',
|
||||||
'group_links' => 'Links',
|
'group_links' => 'Links',
|
||||||
'group_exceptions' => 'Exceptions'
|
'group_exceptions' => 'Exceptions',
|
||||||
],
|
],
|
||||||
'sorting' => [
|
'sorting' => [
|
||||||
'title_asc' => 'Title (ascending)',
|
'title_asc' => 'Title (ascending)',
|
||||||
|
|
@ -150,7 +148,7 @@ return [
|
||||||
'updated_desc' => 'Updated (descending)',
|
'updated_desc' => 'Updated (descending)',
|
||||||
'published_asc' => 'Published (ascending)',
|
'published_asc' => 'Published (ascending)',
|
||||||
'published_desc' => 'Published (descending)',
|
'published_desc' => 'Published (descending)',
|
||||||
'random' => 'Random'
|
'random' => 'Random',
|
||||||
],
|
],
|
||||||
'import' => [
|
'import' => [
|
||||||
'update_existing_label' => 'Update existing posts',
|
'update_existing_label' => 'Update existing posts',
|
||||||
|
|
@ -161,6 +159,7 @@ return [
|
||||||
'categories_comment' => 'Select the categories that imported posts will belong to (optional).',
|
'categories_comment' => 'Select the categories that imported posts will belong to (optional).',
|
||||||
'default_author_label' => 'Default post author (optional)',
|
'default_author_label' => 'Default post author (optional)',
|
||||||
'default_author_comment' => 'The import will try to use an existing author if you match the Author Email column, otherwise the author specified above is used.',
|
'default_author_comment' => 'The import will try to use an existing author if you match the Author Email column, otherwise the author specified above is used.',
|
||||||
'default_author_placeholder' => '-- select author --'
|
'default_author_placeholder' => '-- select author --',
|
||||||
]
|
],
|
||||||
|
'ru' => 'Russian',
|
||||||
];
|
];
|
||||||
|
|
@ -97,7 +97,7 @@ class Post extends Model
|
||||||
'active_categories' => [
|
'active_categories' => [
|
||||||
'RainLab\Blog\Models\Category',
|
'RainLab\Blog\Models\Category',
|
||||||
'table' => 'rainlab_blog_posts_categories',
|
'table' => 'rainlab_blog_posts_categories',
|
||||||
'conditions' => 'status = 1',
|
//'conditions' => 'status = 1',
|
||||||
'order' => 'name'
|
'order' => 'name'
|
||||||
],
|
],
|
||||||
// 'tags_ru' =>[
|
// 'tags_ru' =>[
|
||||||
|
|
@ -140,9 +140,27 @@ class Post extends Model
|
||||||
{
|
{
|
||||||
$fields->tags_en->hidden = false;
|
$fields->tags_en->hidden = false;
|
||||||
$fields->tags_ru->hidden = true;
|
$fields->tags_ru->hidden = true;
|
||||||
}else{
|
$fields->tags_tm->hidden = true;
|
||||||
|
|
||||||
|
$fields->id_en->disabled = true;
|
||||||
|
$fields->id_ru->disabled = false;
|
||||||
|
$fields->id_tm->disabled = false;
|
||||||
|
}else if ($this->locale == 'ru'){
|
||||||
$fields->tags_en->hidden = true;
|
$fields->tags_en->hidden = true;
|
||||||
$fields->tags_ru->hidden = false;
|
$fields->tags_ru->hidden = false;
|
||||||
|
$fields->tags_tm->hidden = true;
|
||||||
|
|
||||||
|
$fields->id_en->disabled = false;
|
||||||
|
$fields->id_ru->disabled = true;
|
||||||
|
$fields->id_tm->disabled = false;
|
||||||
|
}else if ($this->locale == 'tm'){
|
||||||
|
$fields->tags_en->hidden = true;
|
||||||
|
$fields->tags_ru->hidden = true;
|
||||||
|
$fields->tags_tm->hidden = false;
|
||||||
|
|
||||||
|
$fields->id_en->disabled = false;
|
||||||
|
$fields->id_ru->disabled = false;
|
||||||
|
$fields->id_tm->disabled = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!isset($fields->published, $fields->published_at)) {
|
if (!isset($fields->published, $fields->published_at)) {
|
||||||
|
|
@ -187,6 +205,7 @@ class Post extends Model
|
||||||
{
|
{
|
||||||
$this->tags_ru()->attach($this->tags_ru);
|
$this->tags_ru()->attach($this->tags_ru);
|
||||||
$this->tags_en()->attach($this->tags_en);
|
$this->tags_en()->attach($this->tags_en);
|
||||||
|
$this->tags_tm()->attach($this->tags_tm);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -431,6 +450,9 @@ class Post extends Model
|
||||||
case 'ru':
|
case 'ru':
|
||||||
return $query->where('locale', 'ru');
|
return $query->where('locale', 'ru');
|
||||||
break;
|
break;
|
||||||
|
case 'tm':
|
||||||
|
return $query->where('locale', 'tm');
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -484,19 +506,19 @@ class Post extends Model
|
||||||
public function getFullTextAttribute(){
|
public function getFullTextAttribute(){
|
||||||
return preg_replace("/<img[^>]+\>/i", " ", $this->content_html);
|
return preg_replace("/<img[^>]+\>/i", " ", $this->content_html);
|
||||||
}
|
}
|
||||||
public function getTranslatedPostAttribute(){
|
//public function getTranslatedPostAttribute(){
|
||||||
if($this->locale === 'en')
|
// if($this->locale === 'en')
|
||||||
return $this->id_ru;
|
// return $this->id_ru;
|
||||||
return $this->id_en;
|
//return $this->id_en;
|
||||||
}
|
//}
|
||||||
|
|
||||||
public function setTranslatedPostAttribute($value){
|
//public function setTranslatedPostAttribute($value){
|
||||||
|
|
||||||
if($this->attributes['locale'] === 'en')
|
// if($this->attributes['locale'] === 'en')
|
||||||
$this->attributes['id_ru'] = $value;
|
// $this->attributes['id_ru'] = $value;
|
||||||
else
|
//else
|
||||||
$this->attributes['id_en'] = $value;
|
// $this->attributes['id_en'] = $value;
|
||||||
}
|
//}
|
||||||
|
|
||||||
public function getRssDateAttribute(){
|
public function getRssDateAttribute(){
|
||||||
setlocale(LC_TIME, 'en');
|
setlocale(LC_TIME, 'en');
|
||||||
|
|
|
||||||
|
|
@ -32,3 +32,10 @@ columns:
|
||||||
featured:
|
featured:
|
||||||
label: Featured
|
label: Featured
|
||||||
type: switch
|
type: switch
|
||||||
|
user_id:
|
||||||
|
label: Author
|
||||||
|
type: text
|
||||||
|
searchable: true
|
||||||
|
sortable: true
|
||||||
|
select: login
|
||||||
|
relation: user
|
||||||
|
|
|
||||||
|
|
@ -23,24 +23,43 @@ secondaryTabs:
|
||||||
stretch: true
|
stretch: true
|
||||||
mode: split
|
mode: split
|
||||||
locale:
|
locale:
|
||||||
tab: 'rainlab.blog::lang.post.tab_categories'
|
|
||||||
label: 'Language of Post'
|
label: 'Language of Post'
|
||||||
span: left
|
|
||||||
type: dropdown
|
|
||||||
default: ru
|
|
||||||
options:
|
options:
|
||||||
ru: Russian
|
ru: Russian
|
||||||
en: English
|
en: English
|
||||||
translated_post:
|
tm: Turkmen
|
||||||
label: 'Translated Post id'
|
showSearch: true
|
||||||
|
span: left
|
||||||
|
default: 'rainlab.blog::lang.ru'
|
||||||
|
type: dropdown
|
||||||
|
tab: 'rainlab.blog::lang.post.tab_categories'
|
||||||
|
id_en:
|
||||||
|
label: 'Translated Post ID En'
|
||||||
|
span: right
|
||||||
|
dependsOn:
|
||||||
|
- locale
|
||||||
type: number
|
type: number
|
||||||
tab: 'rainlab.blog::lang.post.tab_categories'
|
tab: 'rainlab.blog::lang.post.tab_categories'
|
||||||
|
id_tm:
|
||||||
|
label: 'Translated Post ID Tm'
|
||||||
span: right
|
span: right
|
||||||
|
dependsOn:
|
||||||
|
- locale
|
||||||
|
type: number
|
||||||
|
tab: 'rainlab.blog::lang.post.tab_categories'
|
||||||
|
id_ru:
|
||||||
|
label: 'Translated Post ID Ru'
|
||||||
|
span: right
|
||||||
|
dependsOn:
|
||||||
|
- locale
|
||||||
|
type: number
|
||||||
|
tab: 'rainlab.blog::lang.post.tab_categories'
|
||||||
active_categories:
|
active_categories:
|
||||||
tab: 'rainlab.blog::lang.post.tab_categories'
|
tab: 'rainlab.blog::lang.post.tab_categories'
|
||||||
type: relation
|
type: relation
|
||||||
commentAbove: 'rainlab.blog::lang.post.categories_comment'
|
commentAbove: 'rainlab.blog::lang.post.categories_comment'
|
||||||
placeholder: 'rainlab.blog::lang.post.categories_placeholder'
|
placeholder: 'rainlab.blog::lang.post.categories_placeholder'
|
||||||
|
span: auto
|
||||||
author:
|
author:
|
||||||
label: 'Post author'
|
label: 'Post author'
|
||||||
span: auto
|
span: auto
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,23 @@
|
||||||
|
<?php namespace RainLab\Blog\Updates;
|
||||||
|
|
||||||
|
use Schema;
|
||||||
|
use October\Rain\Database\Updates\Migration;
|
||||||
|
|
||||||
|
class BuilderTableUpdateRainlabBlogPosts2 extends Migration
|
||||||
|
{
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::table('rainlab_blog_posts', function($table)
|
||||||
|
{
|
||||||
|
$table->integer('id_tm')->nullable();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::table('rainlab_blog_posts', function($table)
|
||||||
|
{
|
||||||
|
$table->dropColumn('id_tm');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,23 @@
|
||||||
|
<?php namespace RainLab\Blog\Updates;
|
||||||
|
|
||||||
|
use Schema;
|
||||||
|
use October\Rain\Database\Updates\Migration;
|
||||||
|
|
||||||
|
class BuilderTableUpdateRainlabBlogPosts3 extends Migration
|
||||||
|
{
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::table('rainlab_blog_posts', function($table)
|
||||||
|
{
|
||||||
|
$table->string('locale', 191)->default('ru')->change();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::table('rainlab_blog_posts', function($table)
|
||||||
|
{
|
||||||
|
$table->string('locale', 191)->default(null)->change();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,23 @@
|
||||||
|
<?php namespace RainLab\Blog\Updates;
|
||||||
|
|
||||||
|
use Schema;
|
||||||
|
use October\Rain\Database\Updates\Migration;
|
||||||
|
|
||||||
|
class BuilderTableUpdateRainlabBlogPosts4 extends Migration
|
||||||
|
{
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::table('rainlab_blog_posts', function($table)
|
||||||
|
{
|
||||||
|
$table->string('locale', 191)->default(null)->change();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::table('rainlab_blog_posts', function($table)
|
||||||
|
{
|
||||||
|
$table->string('locale', 191)->default('ru')->change();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -72,3 +72,12 @@
|
||||||
1.5.4:
|
1.5.4:
|
||||||
- 'Updated table rainlab_blog_posts'
|
- 'Updated table rainlab_blog_posts'
|
||||||
- builder_table_update_rainlab_blog_posts.php
|
- builder_table_update_rainlab_blog_posts.php
|
||||||
|
1.5.5:
|
||||||
|
- 'Updated table rainlab_blog_posts'
|
||||||
|
- builder_table_update_rainlab_blog_posts_2.php
|
||||||
|
1.5.6:
|
||||||
|
- 'Updated table rainlab_blog_posts'
|
||||||
|
- builder_table_update_rainlab_blog_posts_3.php
|
||||||
|
1.5.7:
|
||||||
|
- 'Updated table rainlab_blog_posts'
|
||||||
|
- builder_table_update_rainlab_blog_posts_4.php
|
||||||
|
|
|
||||||
|
|
@ -14,10 +14,11 @@
|
||||||
<div class="partnerSlider__inner">
|
<div class="partnerSlider__inner">
|
||||||
{% for reklama in __SELF__.group.adds %}
|
{% for reklama in __SELF__.group.adds %}
|
||||||
<a class="partnerSlider__item" {% if reklama.enable_stats and reklama.url %}
|
<a class="partnerSlider__item" {% if reklama.enable_stats and reklama.url %}
|
||||||
data-request="{{__SELF__}}::onRedirect" data-request-data='[{id:{{reklama.id}}},{url:"{{reklama.url}}"}]'
|
data-request="{{__SELF__}}::onRedirect" data-request-data = '[{id:{{reklama.id}}},{url:"{{reklama.url}}"}]'
|
||||||
{% else %}
|
{% else %}
|
||||||
href="{{reklama.url|default('#')}}" target="_blank"
|
href="{{reklama.url|default('#')}}" target="_blank"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
onclick='window.open("{{reklama.url}}", "_blank");'
|
||||||
>
|
>
|
||||||
<picture>
|
<picture>
|
||||||
<source media="(min-width:700px)" srcset="{{reklama.media|media_cdn}}">
|
<source media="(min-width:700px)" srcset="{{reklama.media|media_cdn}}">
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ use Model;
|
||||||
class Reklama extends Model
|
class Reklama extends Model
|
||||||
{
|
{
|
||||||
use \October\Rain\Database\Traits\Validation;
|
use \October\Rain\Database\Traits\Validation;
|
||||||
|
public $implement = ['@RainLab.Translate.Behaviors.TranslatableModel'];
|
||||||
/*
|
/*
|
||||||
* Disable timestamps by default.
|
* Disable timestamps by default.
|
||||||
* Remove this line if timestamps are defined in the database table.
|
* Remove this line if timestamps are defined in the database table.
|
||||||
|
|
@ -22,6 +22,12 @@ class Reklama extends Model
|
||||||
*/
|
*/
|
||||||
public $table = 'tps_reklama_item';
|
public $table = 'tps_reklama_item';
|
||||||
|
|
||||||
|
public $translatable = [
|
||||||
|
'media',
|
||||||
|
'media_mobile',
|
||||||
|
'web_media_mobile',
|
||||||
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var array Validation rules
|
* @var array Validation rules
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -463,4 +463,7 @@
|
||||||
'ToughDeveloper\\ImageResizer\\Models\\Settings' => 'plugins/toughdeveloper/imageresizer/models/Settings.php',
|
'ToughDeveloper\\ImageResizer\\Models\\Settings' => 'plugins/toughdeveloper/imageresizer/models/Settings.php',
|
||||||
'Rainlab\\Blog\\Models\\Category' => 'plugins/rainlab/blog/models/Category.php',
|
'Rainlab\\Blog\\Models\\Category' => 'plugins/rainlab/blog/models/Category.php',
|
||||||
'AhmadFatoni\\ApiGenerator\\Controllers\\API\\AdvertisementsController' => 'plugins/ahmadfatoni/apigenerator/controllers/api/AdvertisementsController.php',
|
'AhmadFatoni\\ApiGenerator\\Controllers\\API\\AdvertisementsController' => 'plugins/ahmadfatoni/apigenerator/controllers/api/AdvertisementsController.php',
|
||||||
|
'RainLab\\Builder\\Classes\\LanguageMixer' => 'plugins/rainlab/builder/classes/LanguageMixer.php',
|
||||||
|
'RainLab\\Translate\\FormWidgets\\MLMediaFinder' => 'plugins/rainlab/translate/formwidgets/MLMediaFinder.php',
|
||||||
|
'AhmadFatoni\\ApiGenerator\\Controllers\\API\\CategoriesV2Controller' => 'plugins/ahmadfatoni/apigenerator/controllers/api/CategoriesV2Controller.php',
|
||||||
);
|
);
|
||||||
|
|
@ -12,6 +12,10 @@ body {
|
||||||
font-family: 'Roboto', sans-serif;
|
font-family: 'Roboto', sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form__input {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
.right_top-up {
|
.right_top-up {
|
||||||
max-width: 42.3rem;
|
max-width: 42.3rem;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
@ -111,6 +115,17 @@ body {
|
||||||
max-width: 47%;
|
max-width: 47%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px){
|
||||||
|
|
||||||
|
.form__input input,
|
||||||
|
.form__input-bg input,
|
||||||
|
.form__textarea textarea {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ========================================== */
|
/* ========================================== */
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_0_753)">
|
||||||
|
<path d="M20 24.9999C19.8684 25.0007 19.7379 24.9755 19.6161 24.9257C19.4943 24.8759 19.3834 24.8026 19.29 24.7099L11.29 16.7099C11.1963 16.617 11.1219 16.5064 11.0711 16.3845C11.0203 16.2627 10.9942 16.132 10.9942 15.9999C10.9942 15.8679 11.0203 15.7372 11.0711 15.6154C11.1219 15.4935 11.1963 15.3829 11.29 15.2899L19.29 7.28994C19.4783 7.10164 19.7337 6.99585 20 6.99585C20.2663 6.99585 20.5217 7.10164 20.71 7.28994C20.8983 7.47825 21.0041 7.73364 21.0041 7.99994C21.0041 8.26624 20.8983 8.52164 20.71 8.70994L13.41 15.9999L20.71 23.2899C20.8037 23.3829 20.8781 23.4935 20.9289 23.6154C20.9797 23.7372 21.0058 23.8679 21.0058 23.9999C21.0058 24.132 20.9797 24.2627 20.9289 24.3845C20.8781 24.5064 20.8037 24.617 20.71 24.7099C20.6166 24.8026 20.5057 24.8759 20.3839 24.9257C20.2621 24.9755 20.1316 25.0007 20 24.9999Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_0_753">
|
||||||
|
<rect width="32" height="32" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="18" height="6" viewBox="0 0 18 6" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M18 3L13 0.113247L13 5.88675L18 3ZM4.37114e-08 3.5L13.5 3.5L13.5 2.5L-4.37114e-08 2.5L4.37114e-08 3.5Z" fill="black"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 229 B |
|
|
@ -0,0 +1,10 @@
|
||||||
|
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_0_763)">
|
||||||
|
<path d="M12.0001 24.9999C12.1317 25.0007 12.2621 24.9755 12.384 24.9257C12.5058 24.8759 12.6166 24.8026 12.7101 24.7099L20.7101 16.7099C20.8038 16.617 20.8782 16.5064 20.929 16.3845C20.9797 16.2627 21.0059 16.132 21.0059 15.9999C21.0059 15.8679 20.9797 15.7372 20.929 15.6154C20.8782 15.4935 20.8038 15.3829 20.7101 15.2899L12.7101 7.28994C12.5218 7.10164 12.2664 6.99585 12.0001 6.99585C11.7338 6.99585 11.4784 7.10164 11.2901 7.28994C11.1018 7.47825 10.996 7.73364 10.996 7.99994C10.996 8.26624 11.1018 8.52164 11.2901 8.70994L18.5901 15.9999L11.2901 23.2899C11.1963 23.3829 11.1219 23.4935 11.0712 23.6154C11.0204 23.7372 10.9943 23.8679 10.9943 23.9999C10.9943 24.132 11.0204 24.2627 11.0712 24.3845C11.1219 24.5064 11.1963 24.617 11.2901 24.7099C11.3835 24.8026 11.4943 24.8759 11.6162 24.9257C11.738 24.9755 11.8685 25.0007 12.0001 24.9999Z" fill="white"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_0_763">
|
||||||
|
<rect width="32" height="32" fill="white" transform="matrix(-1 0 0 1 32 0)"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
|
|
@ -0,0 +1,13 @@
|
||||||
|
<svg width="39" height="39" viewBox="0 0 39 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_205_175)">
|
||||||
|
<path d="M39 0H0V39H39V0Z" fill="white" fill-opacity="0.01"/>
|
||||||
|
<path d="M6.45898 9.70898H32.459" stroke="black" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M6.45898 19.459H32.459" stroke="black" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
<path d="M6.45898 29.209H32.459" stroke="black" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_205_175">
|
||||||
|
<rect width="39" height="39" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 650 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="39" height="39" viewBox="0 0 39 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M22.4347 19.4982L31.3843 10.5681C31.7763 10.1761 31.9964 9.64447 31.9964 9.09014C31.9964 8.5358 31.7763 8.00416 31.3843 7.61219C30.9924 7.22021 30.4609 7 29.9066 7C29.3524 7 28.8208 7.22021 28.4289 7.61219L19.5 16.5631L10.5711 7.61219C10.1792 7.22021 9.64765 7 9.09339 7C8.53913 7 8.00757 7.22021 7.61565 7.61219C7.22373 8.00416 7.00355 8.5358 7.00355 9.09014C7.00355 9.64447 7.22373 10.1761 7.61565 10.5681L16.5653 19.4982L7.61565 28.4284C7.42057 28.6219 7.26573 28.8521 7.16007 29.1058C7.0544 29.3594 7 29.6315 7 29.9063C7 30.1811 7.0544 30.4532 7.16007 30.7069C7.26573 30.9605 7.42057 31.1907 7.61565 31.3843C7.80914 31.5794 8.03933 31.7342 8.29296 31.8399C8.54659 31.9456 8.81863 32 9.09339 32C9.36815 32 9.64019 31.9456 9.89382 31.8399C10.1474 31.7342 10.3776 31.5794 10.5711 31.3843L19.5 22.4333L28.4289 31.3843C28.6224 31.5794 28.8526 31.7342 29.1062 31.8399C29.3598 31.9456 29.6319 32 29.9066 32C30.1814 32 30.4534 31.9456 30.707 31.8399C30.9607 31.7342 31.1909 31.5794 31.3843 31.3843C31.5794 31.1907 31.7343 30.9605 31.8399 30.7069C31.9456 30.4532 32 30.1811 32 29.9063C32 29.6315 31.9456 29.3594 31.8399 29.1058C31.7343 28.8521 31.5794 28.6219 31.3843 28.4284L22.4347 19.4982Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.3 KiB |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M6.5 2.60001C3.54545 2.60001 1.02227 4.21721 0 6.50001C1.02227 8.78281 3.54545 10.4 6.5 10.4C9.45455 10.4 11.9777 8.78281 13 6.50001C11.9777 4.21721 9.45455 2.60001 6.5 2.60001ZM6.5 9.10001C4.86909 9.10001 3.54545 7.93521 3.54545 6.50001C3.54545 5.06481 4.86909 3.90001 6.5 3.90001C8.13091 3.90001 9.45455 5.06481 9.45455 6.50001C9.45455 7.93521 8.13091 9.10001 6.5 9.10001ZM6.5 4.94001C5.51909 4.94001 4.72727 5.63681 4.72727 6.50001C4.72727 7.36321 5.51909 8.06001 6.5 8.06001C7.48091 8.06001 8.27273 7.36321 8.27273 6.50001C8.27273 5.63681 7.48091 4.94001 6.5 4.94001Z" fill="#00822C"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 702 B |
|
|
@ -0,0 +1,10 @@
|
||||||
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_0_777)">
|
||||||
|
<path d="M18.8998 1.10016C18.1666 0.366766 17.2832 0 16.2503 0H3.75022C2.71733 0 1.83394 0.366766 1.1004 1.10016C0.36701 1.83369 0.000244141 2.71704 0.000244141 3.74998V16.2499C0.000244141 17.2828 0.36701 18.1662 1.1004 18.8997C1.83394 19.6333 2.71733 20 3.75022 20H16.2502C17.2831 20 18.1665 19.6333 18.8997 18.8997C19.6332 18.1662 20 17.2828 20 16.2499V3.74998C19.9999 2.71704 19.6332 1.83355 18.8998 1.10016ZM17.0183 10.2864H14.7397V18.5545H11.3283V10.2864H9.62258V7.43474H11.3283V5.72897C11.3283 4.50499 11.6148 3.58059 12.1877 2.95552C12.7604 2.33044 13.7065 2.01808 15.0263 2.01808H17.3049V4.86966H15.8728C15.3865 4.86966 15.0762 4.95416 14.9417 5.12359C14.8072 5.29284 14.7397 5.59014 14.7397 6.01556V7.43478H17.318L17.0183 10.2864Z" fill="#00822C"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_0_777">
|
||||||
|
<rect width="20" height="20" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 999 B |
|
|
@ -0,0 +1,4 @@
|
||||||
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.90578 0.00304955C9.23056 0.002573 9.59298 0.00304955 10.0001 0.00304955C13.257 0.00304955 13.6431 0.0147736 14.9292 0.0731993C16.1186 0.127622 16.7641 0.326345 17.1941 0.493331C17.7633 0.714453 18.1692 0.978751 18.5959 1.40574C19.0228 1.83274 19.2872 2.23943 19.5087 2.80882C19.6757 3.23829 19.8747 3.88393 19.9288 5.07341C19.9872 6.35945 20 6.74584 20 10.0017C20 13.2575 19.9872 13.6439 19.9288 14.9299C19.8744 16.1194 19.6757 16.765 19.5087 17.1945C19.2876 17.7639 19.0228 18.1693 18.5959 18.5961C18.1689 19.0231 17.7636 19.2874 17.1941 19.5085C16.7646 19.6762 16.1186 19.8745 14.9292 19.9289C13.6434 19.9873 13.257 20 10.0001 20C6.74287 20 6.35682 19.9873 5.07095 19.9289C3.88162 19.874 3.23607 19.6752 2.80589 19.5082C2.23657 19.2871 1.82993 19.0228 1.40299 18.5958C0.976051 18.1688 0.711787 17.7631 0.490217 17.1936C0.323253 16.764 0.12427 16.1185 0.0701398 14.929C0.0116263 13.6428 0 13.2565 0 9.99862C0 6.74069 0.0116263 6.3564 0.0701398 5.07036C0.12446 3.88088 0.323253 3.23524 0.490217 2.8052C0.711311 2.2359 0.976051 1.82921 1.40299 1.40222C1.82993 0.975224 2.23657 0.710926 2.80589 0.489232C3.23588 0.321485 3.88162 0.123237 5.07095 0.0686236C6.19624 0.0178228 6.63233 0.0025734 8.90578 0V0.00304955ZM16.5115 2.0287C15.7034 2.0287 15.0477 2.68377 15.0477 3.4922C15.0477 4.30044 15.7034 4.95618 16.5115 4.95618C17.3196 4.95618 17.9753 4.30044 17.9753 3.4922C17.9753 2.68396 17.3196 2.0287 16.5115 2.0287ZM10.0001 3.73925C6.54055 3.73925 3.73572 6.54454 3.73572 10.0044C3.73572 13.4644 6.54055 16.2684 10.0001 16.2684C13.4596 16.2684 16.2634 13.4644 16.2634 10.0044C16.2634 6.54454 13.4596 3.73925 10.0001 3.73925Z" fill="#00822C"/>
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.78389 5.71867C12.0294 5.71867 13.85 7.5393 13.85 9.78531C13.85 12.0311 12.0294 13.852 9.78389 13.852C7.53808 13.852 5.71777 12.0311 5.71777 9.78531C5.71777 7.5393 7.53808 5.71867 9.78389 5.71867Z" fill="#00822C"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M6.50016 0C3.50863 0 1.0835 2.42514 1.0835 5.41667C1.0835 8.4082 3.79183 10.8333 6.50016 13C9.2085 10.8333 11.9168 8.4082 11.9168 5.41667C11.9168 2.42514 9.49169 0 6.50016 0ZM6.50016 7.58333C5.30356 7.58333 4.3335 6.61327 4.3335 5.41667C4.3335 4.22007 5.30356 3.25 6.50016 3.25C7.69676 3.25 8.66683 4.22007 8.66683 5.41667C8.66683 6.61327 7.69676 7.58333 6.50016 7.58333Z" fill="#00822C"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 502 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M21.6145 19.4375L17.6687 15.4743C18.484 14.2401 18.9612 12.7624 18.9612 11.1738C18.9612 6.86948 15.4746 3.36761 11.1891 3.36761C6.90364 3.36761 3.41711 6.86948 3.41711 11.1738C3.41711 15.4782 6.90364 18.9801 11.1891 18.9801C12.7707 18.9801 14.242 18.5008 15.4707 17.6819L19.4166 21.6451C20.0228 22.2548 21.0083 22.2548 21.6145 21.6451C22.2215 21.0354 22.2215 20.0472 21.6145 19.4375ZM5.74872 11.1738C5.74872 8.16063 8.18913 5.70947 11.1891 5.70947C14.1891 5.70947 16.6295 8.16063 16.6295 11.1738C16.6295 14.187 14.1891 16.6382 11.1891 16.6382C8.18913 16.6382 5.74872 14.187 5.74872 11.1738Z" fill="black" fill-opacity="0.6"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 738 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="120" height="40" viewBox="0 0 120 40" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M0 0H101.423L120 20.5L101.423 40H0V0Z" fill="#FF0C00"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 170 B |
|
|
@ -0,0 +1,15 @@
|
||||||
|
<svg width="99" height="43" viewBox="0 0 99 43" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_0_15)">
|
||||||
|
<path d="M28.85 22.3643L31.837 42.8674H30.422C28.8835 42.8509 27.4031 42.3718 26.2492 41.5172C25.0953 40.6625 24.3445 39.4888 24.133 38.2091L22.0898 24.6304H19.7317V18.7695H22.0898C22.4432 18.7709 22.7933 18.7131 23.1198 18.5996C23.4463 18.4861 23.7426 18.3192 23.9914 18.1085C24.2402 17.8978 24.4366 17.6476 24.569 17.3725C24.7015 17.0975 24.7673 16.803 24.7628 16.5063V8.5183C24.7673 8.2216 24.7015 7.92712 24.569 7.65203C24.4366 7.37694 24.2402 7.12676 23.9914 6.91608C23.7426 6.7054 23.4463 6.53844 23.1198 6.42495C22.7933 6.31146 22.4432 6.25371 22.0898 6.25507H19.5747C19.2571 4.20824 18.0875 2.32175 16.2727 0.929517L15.4867 0.263733H22.0898C24.6818 0.283936 27.1596 1.16229 28.9847 2.70794C30.8099 4.25358 31.8349 6.34161 31.837 8.5183V16.5063C31.8454 17.6027 31.5845 18.6888 31.0705 19.6967C30.5566 20.7046 29.8007 21.6127 28.85 22.3643Z" fill="#00822C"/>
|
||||||
|
<path d="M33.9587 0.263733V42.8674H41.1908V6.38908C41.1775 4.77703 40.4132 3.23341 39.0615 2.08861C37.7099 0.943815 35.8783 0.288789 33.9587 0.263733Z" fill="#00822C"/>
|
||||||
|
<path d="M15.5643 2.39367C13.9966 0.929516 11.7912 0.263733 8.96121 0.263733C6.13117 0.263733 3.93013 0.929516 2.35808 2.39367C0.786028 3.72523 1.1865e-06 5.72187 1.1865e-06 8.2517V35.0113C-0.14584 37.1466 0.699358 39.2463 2.35808 40.8693C3.93013 42.3335 6.13117 42.9993 8.96121 42.9993C11.7912 42.9993 13.9923 42.3335 15.5643 40.8693C17.1372 39.5371 17.9224 37.5411 17.9224 35.0113V8.2517C17.9224 5.72187 17.1364 3.72523 15.5643 2.39367ZM11.0095 35.1446C11.0095 37.0079 10.0664 37.2745 8.96547 37.2745C8.02241 37.2745 6.92147 37.0079 6.92147 35.1446V7.98295C6.92147 6.11962 7.86452 5.85302 8.96547 5.85302C9.90853 5.85302 11.0095 6.11962 11.0095 7.98295V35.1446Z" fill="#00822C"/>
|
||||||
|
<path d="M99 0.263733V6.38837H93.654V42.8667C92.7411 42.8754 91.8344 42.74 90.981 42.4675C90.0593 42.1484 89.2228 41.6778 88.5208 41.0834C87.8188 40.4889 87.2653 39.7826 86.893 39.006C86.7681 38.8494 86.7125 38.661 86.7359 38.4735C86.5789 38.0744 86.5789 37.6745 86.4219 37.2753V6.38693H77.6177C77.8229 4.89197 78.5945 3.49189 79.8188 2.39295C81.3908 0.928084 83.5918 0.263017 86.4219 0.263017L99 0.263733Z" fill="#00822C"/>
|
||||||
|
<path d="M77.6177 7.98797V24.6297L69.7566 0H60.1664V35.2808H67.0845V11.3162L75.2596 36.7449C75.7809 38.4728 76.9792 40.0033 78.6617 41.09C80.3442 42.1767 82.4132 42.7566 84.5358 42.7363V7.98797H77.6177Z" fill="#00822C"/>
|
||||||
|
<path d="M50.3961 37.1434V24.4957H55.4272V18.6369H50.3961V5.85373H58.0994V0.263733H43.164V36.6109C43.1264 38.1683 43.8102 39.6772 45.0712 40.8196C46.3322 41.9621 48.072 42.649 49.9242 42.7355H66.9078V37.0108H50.3961V37.1441V37.1434Z" fill="#EE4037"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_0_15">
|
||||||
|
<rect width="99" height="43" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.8 KiB |
|
|
@ -0,0 +1,10 @@
|
||||||
|
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_59_591)">
|
||||||
|
<path d="M12.9415 10.3616L12.8768 10.1666C12.7236 9.71114 12.2212 9.23607 11.7598 9.11091L10.0519 8.64434C9.58869 8.51834 8.92801 8.68777 8.58914 9.02662L7.97101 9.64474C5.7246 9.03773 3.96306 7.27614 3.35686 5.03016L3.97502 4.41201C4.31389 4.07314 4.4833 3.41332 4.35729 2.95016L3.89157 1.2414C3.76556 0.779081 3.28962 0.27677 2.83499 0.125207L2.64003 0.0596564C2.18452 -0.0919062 1.5349 0.0613728 1.19605 0.400216L0.271422 1.32569C0.106237 1.49001 0.000663465 1.95998 0.000663465 1.96169C-0.0316761 4.89732 1.11941 7.72565 3.19596 9.80222C5.2674 11.8737 8.08514 13.0231 11.0122 12.9984C11.0275 12.9984 11.5111 12.8945 11.6763 12.7302L12.601 11.8055C12.9398 11.4667 13.0931 10.8171 12.9415 10.3616Z" fill="#00822C"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_59_591">
|
||||||
|
<rect width="13" height="13" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 961 B |
|
|
@ -0,0 +1,12 @@
|
||||||
|
<svg width="30" height="20" viewBox="0 0 30 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_0_481)">
|
||||||
|
<path d="M30.535 0H-0.536011V10.0005H30.535V0Z" fill="white"/>
|
||||||
|
<path d="M30.535 10.0005H-0.536011V20.001H30.535V10.0005Z" fill="#D52B1E"/>
|
||||||
|
<path d="M30.535 6.66615H-0.536011V13.3325H30.535V6.66615Z" fill="#0039A6"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_0_481">
|
||||||
|
<rect width="30" height="20" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 457 B |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="39" height="39" viewBox="0 0 39 39" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M29.25 16.2499C29.2551 13.3117 28.2646 10.4584 26.4401 8.1553C24.6157 5.85216 22.0648 4.235 19.2034 3.56748C16.342 2.89996 13.3389 3.22146 10.6836 4.47955C8.0284 5.73764 5.87766 7.85812 4.58206 10.4953C3.28647 13.1324 2.92246 16.1307 3.54937 19.0013C4.17627 21.8718 5.75712 24.4454 8.03418 26.3023C10.3112 28.1592 13.1502 29.19 16.0882 29.2265C19.0262 29.2631 21.8899 28.3033 24.2125 26.5037L34.6125 36.9037L36.9037 34.6124L26.5037 24.2124C28.2774 21.9366 29.2436 19.1353 29.25 16.2499ZM16.25 25.9999C14.3216 25.9999 12.4366 25.4281 10.8332 24.3568C9.22981 23.2854 7.98012 21.7627 7.24217 19.9811C6.50422 18.1995 6.31113 16.2391 6.68734 14.3478C7.06354 12.4565 7.99214 10.7192 9.3557 9.35564C10.7193 7.99208 12.4565 7.06348 14.3479 6.68728C16.2392 6.31107 18.1996 6.50415 19.9812 7.24211C21.7627 7.98006 23.2855 9.22975 24.3568 10.8331C25.4282 12.4365 26 14.3216 26 16.2499C26 18.8358 24.9728 21.3157 23.1443 23.1442C21.3158 24.9727 18.8359 25.9999 16.25 25.9999Z" fill="black"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
|
|
@ -0,0 +1,3 @@
|
||||||
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M19.9423 3.83596L16.9245 16.2891C16.6968 17.168 16.103 17.3867 15.2593 16.9727L10.6611 14.0078L8.44233 15.875C8.1968 16.0899 7.99144 16.2696 7.51823 16.2696L7.84858 12.1719L16.3709 5.43362C16.7414 5.14455 16.2905 4.9844 15.795 5.27346L5.2593 11.0781L0.723584 9.83596C-0.263023 9.56643 -0.28088 8.97268 0.928941 8.55862L18.67 2.57815C19.4914 2.30862 20.2102 2.7383 19.9423 3.83596Z" fill="#00822C"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 511 B |
|
|
@ -0,0 +1,375 @@
|
||||||
|
<svg width="30" height="20" viewBox="0 0 30 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_0_41)">
|
||||||
|
<path d="M31.63 -0.0199928H-0.463989V19.95H31.63V-0.0199928Z" fill="#00843D"/>
|
||||||
|
<path d="M15.47 2.19501C15.9368 2.37027 16.3401 2.68172 16.6277 3.08898C16.9153 3.49624 17.074 3.98051 17.083 4.47901C17.0588 5.16127 16.7649 5.80606 16.2659 6.27193C15.7668 6.73779 15.1033 6.98668 14.421 6.96401C13.7948 6.96753 13.186 6.75847 12.694 6.37101C12.9914 6.4903 13.3069 6.55794 13.627 6.57101C14.3094 6.61998 14.9836 6.39802 15.5034 5.95325C16.0233 5.50848 16.3468 4.87675 16.404 4.19501C16.4189 3.81134 16.3419 3.42968 16.1795 3.08179C16.017 2.7339 15.7738 2.42987 15.47 2.19501Z" fill="white"/>
|
||||||
|
<path d="M12.931 4.02001L13.231 3.15401L12.441 3.68901H13.417L12.627 3.15401L12.931 4.02001Z" fill="white"/>
|
||||||
|
<path d="M12.931 2.74201L13.231 1.87601L12.441 2.41101H13.417L12.627 1.87601L12.931 2.74201Z" fill="white"/>
|
||||||
|
<path d="M14.284 3.39701L14.584 2.53101L13.794 3.06601H14.77L13.98 2.53101L14.284 3.39701Z" fill="white"/>
|
||||||
|
<path d="M11.578 4.64301L11.878 3.77701L11.088 4.31201H12.064L11.274 3.77701L11.578 4.64301Z" fill="white"/>
|
||||||
|
<path d="M12.931 5.29801L13.231 4.43201L12.441 4.96701H13.417L12.627 4.43201L12.931 5.29801Z" fill="white"/>
|
||||||
|
<path d="M9.16402 -0.0199928H3.38702V19.95H9.16402V-0.0199928Z" fill="#D22630"/>
|
||||||
|
<path d="M3.38701 -1.33899V-1.13899L3.71201 -0.854994L3.60201 -0.754994L3.83401 -0.554994L3.73401 -0.468994V-0.593994H3.53401V-0.443994L3.98201 -0.0529941H4.20901L4.23401 -0.190994H4.10401L4.24601 -0.313994L4.60101 -0.0139942L4.24601 0.286006L4.10401 0.163006H4.23401L4.20901 0.0240058H3.98201L3.53401 0.415006V0.565006H3.73401V0.440006L3.83401 0.526006L3.60201 0.726006L3.71201 0.826006L3.38701 1.10201V1.30201L3.93701 0.824006L3.82701 0.724006L4.05701 0.524006L3.85701 0.351006L3.98701 0.237006L4.24001 0.456006L4.79501 -0.0199941L4.24001 -0.495994L3.98701 -0.275994L3.85501 -0.390994L4.05501 -0.563994L3.82501 -0.763994L3.93501 -0.863994L3.38501 -1.34399L3.38701 -1.33899ZM3.38701 -0.388994V0.348006L3.51501 0.226006V0.0830058H3.65101L3.76101 -0.0169941L3.65101 -0.116994H3.51501V-0.267994L3.38701 -0.388994ZM4.32401 -0.127994L4.30501 -0.0279942L4.32401 0.0720059L4.44101 -0.0279942L4.32401 -0.127994Z" fill="#242424"/>
|
||||||
|
<path d="M3.38702 -1.31799V-1.16299L3.73502 -0.862993L3.62502 -0.762993L3.85702 -0.562993L3.71702 -0.440993V-0.585993H3.54902V-0.455993L3.98702 -0.0749931H4.18702L4.21402 -0.185993H4.06302L4.24402 -0.344993L4.62202 -0.021993L4.24402 0.301007L4.06302 0.144007H4.21402L4.19302 0.034007H3.98702L3.54702 0.417007V0.547007H3.71702V0.401007L3.85702 0.523007L3.62502 0.723007L3.73502 0.823007L3.38702 1.12301V1.27801L3.91402 0.821007L3.80402 0.721007L4.03402 0.521007L3.83402 0.348007L3.98702 0.214007L4.24002 0.434007L4.77102 -0.0229931L4.24002 -0.479993L3.98702 -0.256993L3.83602 -0.385993L4.03602 -0.558993L3.80602 -0.758993L3.91602 -0.858993L3.38702 -1.31799ZM3.38702 -0.367993V0.327007L3.50002 0.221007V0.0680069H3.64502L3.73902 -0.0199931L3.64502 -0.107993H3.50002V-0.260993L3.38702 -0.367993ZM4.33502 -0.0999931L4.32202 -0.0279931L4.33502 0.0440069L4.41802 -0.0279931L4.33502 -0.0999931Z" fill="#FFC72C"/>
|
||||||
|
<path d="M3.38701 2.296V2.496L3.71201 2.78L3.60201 2.88L3.83401 3.08L3.73401 3.166V3.041H3.53401V3.191L3.98201 3.582H4.20901L4.23401 3.444H4.10401L4.24601 3.321L4.60101 3.621L4.24601 3.921L4.10401 3.798H4.23401L4.20901 3.659H3.98201L3.53401 4.05V4.2H3.73401V4.075L3.83401 4.161L3.60201 4.361L3.71201 4.461L3.38701 4.737V4.937L3.93701 4.459L3.82701 4.359L4.05701 4.159L3.85701 3.986L3.98701 3.872L4.24001 4.091L4.79501 3.615L4.24001 3.139L3.98701 3.359L3.85501 3.244L4.05501 3.071L3.82501 2.871L3.93501 2.771L3.38501 2.291L3.38701 2.296ZM3.38701 3.246V3.983L3.51501 3.861V3.718H3.65101L3.76101 3.618L3.65101 3.518H3.51501V3.367L3.38701 3.246ZM4.32401 3.507L4.30501 3.607L4.32401 3.707L4.44101 3.607L4.32401 3.507Z" fill="#242424"/>
|
||||||
|
<path d="M3.38702 2.31701V2.47201L3.73502 2.77201L3.62502 2.87201L3.85702 3.07201L3.71702 3.19401V3.04901H3.54902V3.17901L3.98702 3.56001H4.18702L4.21402 3.44901H4.06302L4.24402 3.29001L4.62202 3.61301L4.24402 3.93601L4.06302 3.77901H4.21402L4.19302 3.66901H3.98702L3.54702 4.05201V4.18201H3.71702V4.03601L3.85702 4.15801L3.62502 4.35801L3.73502 4.45801L3.38702 4.75801V4.91301L3.91402 4.45601L3.80402 4.35601L4.03402 4.15601L3.83402 3.98301L3.98702 3.84901L4.24002 4.06901L4.77102 3.61201L4.24002 3.15501L3.98702 3.37801L3.83602 3.24901L4.03602 3.07601L3.80602 2.87601L3.91602 2.77601L3.38702 2.31701ZM3.38702 3.26701V3.96201L3.50002 3.85601V3.70301H3.64502L3.73902 3.61501L3.64502 3.52701H3.50002V3.37401L3.38702 3.26701ZM4.33502 3.53501L4.32202 3.60701L4.33502 3.67901L4.41802 3.60701L4.33502 3.53501Z" fill="#FFC72C"/>
|
||||||
|
<path d="M3.38701 6.05001V6.25001L3.71201 6.53401L3.60201 6.63401L3.83401 6.83401L3.73401 6.92001V6.79501H3.53401V6.94501L3.98201 7.33601H4.20901L4.23401 7.19801H4.10401L4.24601 7.07501L4.60101 7.37501L4.24601 7.67501L4.10401 7.55201H4.23401L4.20901 7.41301H3.98201L3.53401 7.80401V7.95401H3.73401V7.82901L3.83401 7.91501L3.60201 8.11501L3.71201 8.21501L3.38701 8.49101V8.69101L3.93701 8.21301L3.82701 8.11301L4.05701 7.91301L3.85701 7.74001L3.98701 7.62601L4.24001 7.84501L4.79501 7.36901L4.24001 6.89301L3.98701 7.11301L3.85501 6.99801L4.05501 6.82501L3.82501 6.62501L3.93501 6.52501L3.38501 6.04501L3.38701 6.05001ZM3.38701 7.00001V7.73701L3.51501 7.61501V7.47201H3.65101L3.76101 7.37201L3.65101 7.27201H3.51501V7.12101L3.38701 7.00001ZM4.32401 7.26101L4.30501 7.36101L4.32401 7.46101L4.44101 7.36101L4.32401 7.26101Z" fill="#242424"/>
|
||||||
|
<path d="M3.38702 6.07101V6.22601L3.73502 6.52601L3.62502 6.62601L3.85702 6.82601L3.71702 6.94801V6.80301H3.54902V6.93301L3.98702 7.31401H4.18702L4.21402 7.20301H4.06302L4.24402 7.04401L4.62202 7.36701L4.24402 7.69001L4.06302 7.53301H4.21402L4.19302 7.42301H3.98702L3.54702 7.80601V7.93601H3.71702V7.79001L3.85702 7.91201L3.62502 8.11201L3.73502 8.21201L3.38702 8.51201V8.66701L3.91402 8.21001L3.80402 8.11001L4.03402 7.91001L3.83402 7.73701L3.98702 7.60301L4.24002 7.82301L4.77102 7.36601L4.24002 6.90901L3.98702 7.13201L3.83602 7.00301L4.03602 6.83001L3.80602 6.63001L3.91602 6.53001L3.38702 6.07101ZM3.38702 7.02101V7.71601L3.50002 7.61001V7.45701H3.64502L3.73902 7.36901L3.64502 7.28101H3.50002V7.12801L3.38702 7.02101ZM4.33502 7.28901L4.32202 7.36101L4.33502 7.43301L4.41802 7.36101L4.33502 7.28901Z" fill="#FFC72C"/>
|
||||||
|
<path d="M3.38701 9.804V10.004L3.71201 10.288L3.60201 10.388L3.83401 10.588L3.73401 10.674V10.549H3.53401V10.699L3.98201 11.09H4.20901L4.23401 10.952H4.10401L4.24601 10.829L4.60101 11.129L4.24601 11.429L4.10401 11.306H4.23401L4.20901 11.167H3.98201L3.53401 11.558V11.708H3.73401V11.583L3.83401 11.669L3.60201 11.869L3.71201 11.969L3.38701 12.245V12.445L3.93701 11.967L3.82701 11.867L4.05701 11.667L3.85701 11.494L3.98701 11.38L4.24001 11.599L4.79501 11.123L4.24001 10.647L3.98701 10.867L3.85501 10.752L4.05501 10.579L3.82501 10.379L3.93501 10.279L3.38501 9.799L3.38701 9.804ZM3.38701 10.754V11.491L3.51501 11.369V11.226H3.65101L3.76101 11.126L3.65101 11.026H3.51501V10.875L3.38701 10.754ZM4.32401 11.015L4.30501 11.115L4.32401 11.215L4.44101 11.115L4.32401 11.015Z" fill="#242424"/>
|
||||||
|
<path d="M3.38702 9.825V9.98L3.73502 10.28L3.62502 10.38L3.85702 10.58L3.71702 10.702V10.557H3.54902V10.687L3.98702 11.068H4.18702L4.21402 10.957H4.06302L4.24402 10.798L4.62202 11.121L4.24402 11.444L4.06302 11.287H4.21402L4.19302 11.177H3.98702L3.54702 11.56V11.69H3.71702V11.544L3.85702 11.666L3.62502 11.866L3.73502 11.966L3.38702 12.266V12.421L3.91402 11.964L3.80402 11.864L4.03402 11.664L3.83402 11.491L3.98702 11.357L4.24002 11.577L4.77102 11.12L4.24002 10.663L3.98702 10.886L3.83602 10.757L4.03602 10.584L3.80602 10.384L3.91602 10.284L3.38702 9.825ZM3.38702 10.775V11.47L3.50002 11.364V11.211H3.64502L3.73902 11.123L3.64502 11.035H3.50002V10.882L3.38702 10.775ZM4.33502 11.043L4.32202 11.115L4.33502 11.187L4.41802 11.115L4.33502 11.043Z" fill="#FFC72C"/>
|
||||||
|
<path d="M3.38701 13.558V13.758L3.71201 14.042L3.60201 14.142L3.83401 14.342L3.73401 14.428V14.303H3.53401V14.453L3.98201 14.844H4.20901L4.23401 14.706H4.10401L4.24601 14.583L4.60101 14.883L4.24601 15.183L4.10401 15.06H4.23401L4.20901 14.921H3.98201L3.53401 15.312V15.462H3.73401V15.337L3.83401 15.423L3.60201 15.623L3.71201 15.723L3.38701 15.999V16.199L3.93701 15.721L3.82701 15.621L4.05701 15.421L3.85701 15.248L3.98701 15.134L4.24001 15.353L4.79501 14.877L4.24001 14.401L3.98701 14.621L3.85501 14.506L4.05501 14.333L3.82501 14.133L3.93501 14.033L3.38501 13.553L3.38701 13.558ZM3.38701 14.508V15.245L3.51501 15.123V14.98H3.65101L3.76101 14.88L3.65101 14.78H3.51501V14.629L3.38701 14.508ZM4.32401 14.769L4.30501 14.869L4.32401 14.969L4.44101 14.869L4.32401 14.769Z" fill="#242424"/>
|
||||||
|
<path d="M3.38702 13.579V13.734L3.73502 14.034L3.62502 14.134L3.85702 14.334L3.71702 14.456V14.311H3.54902V14.441L3.98702 14.822H4.18702L4.21402 14.711H4.06302L4.24402 14.552L4.62202 14.875L4.24402 15.198L4.06302 15.041H4.21402L4.19302 14.931H3.98702L3.54702 15.314V15.444H3.71702V15.298L3.85702 15.42L3.62502 15.62L3.73502 15.72L3.38702 16.02V16.175L3.91402 15.718L3.80402 15.618L4.03402 15.418L3.83402 15.245L3.98702 15.111L4.24002 15.331L4.77102 14.874L4.24002 14.417L3.98702 14.64L3.83602 14.511L4.03602 14.338L3.80602 14.138L3.91602 14.038L3.38702 13.579ZM3.38702 14.529V15.224L3.50002 15.118V14.965H3.64502L3.73902 14.877L3.64502 14.789H3.50002V14.636L3.38702 14.529ZM4.33502 14.797L4.32202 14.869L4.33502 14.941L4.41802 14.869L4.33502 14.797Z" fill="#FFC72C"/>
|
||||||
|
<path d="M9.164 -1.33799V-1.13799L8.839 -0.853993L8.949 -0.753993L8.717 -0.553993L8.817 -0.467993V-0.600993H9.017V-0.450993L8.569 -0.0599926H8.342L8.318 -0.200993H8.448L8.306 -0.323993L7.951 -0.0239925L8.306 0.276007L8.448 0.153007H8.318L8.343 0.0140074H8.569L9.017 0.412007V0.562007H8.817V0.437007L8.717 0.523007L8.949 0.724007L8.839 0.824007L9.164 1.09901V1.29901L8.614 0.821007L8.724 0.721007L8.494 0.521007L8.694 0.348007L8.564 0.238007L8.306 0.456007L7.751 -0.0199926L8.306 -0.495993L8.564 -0.274993L8.696 -0.389993L8.496 -0.562993L8.726 -0.762993L8.616 -0.862993L9.164 -1.33799ZM9.164 -0.387993V0.349007L9.036 0.227007V0.0840074H8.9L8.79 -0.0159926L8.9 -0.115993H9.036V-0.260993L9.164 -0.387993ZM8.227 -0.126993L8.246 -0.0269926L8.227 0.0730075L8.11 -0.0269926L8.227 -0.126993Z" fill="#242424"/>
|
||||||
|
<path d="M9.164 -1.31699V-1.16199L8.816 -0.861993L8.926 -0.761992L8.694 -0.561993L8.834 -0.439993V-0.585992H9.002V-0.455992L8.564 -0.0739925H8.364L8.343 -0.182992H8.488L8.307 -0.341992L7.929 -0.0219924L8.306 0.303007L8.487 0.146008H8.337L8.358 0.0350075H8.564L9.002 0.418007V0.548007H8.833V0.402008L8.694 0.523008L8.926 0.724007L8.816 0.824008L9.164 1.12301V1.27801L8.637 0.821008L8.747 0.721008L8.517 0.521007L8.714 0.351008L8.564 0.217008L8.306 0.437007L7.775 -0.0199925L8.306 -0.476992L8.564 -0.255993L8.714 -0.389992L8.514 -0.562992L8.744 -0.762992L8.634 -0.862993L9.164 -1.31699ZM9.164 -0.366992V0.328008L9.051 0.222008V0.0690075H8.905L8.811 -0.0219924L8.905 -0.109993H9.051V-0.262993L9.164 -0.366992ZM8.216 -0.0989925L8.229 -0.0219924L8.216 0.0500075L8.133 -0.0219924L8.216 -0.0989925Z" fill="#FFC72C"/>
|
||||||
|
<path d="M9.164 2.29601V2.49601L8.839 2.78001L8.949 2.88001L8.717 3.08001L8.817 3.16601V3.03301H9.017V3.18301L8.569 3.57401H8.342L8.318 3.43301H8.448L8.306 3.31001L7.951 3.61001L8.306 3.91001L8.448 3.78701H8.318L8.343 3.64801H8.569L9.017 4.04601V4.19601H8.817V4.07101L8.717 4.15701L8.949 4.35801L8.839 4.45801L9.164 4.73301V4.93301L8.614 4.45501L8.724 4.35501L8.494 4.15501L8.694 3.98201L8.564 3.87201L8.306 4.09001L7.751 3.61401L8.306 3.13801L8.564 3.35901L8.696 3.24401L8.496 3.07101L8.726 2.87101L8.616 2.77101L9.164 2.29601ZM9.164 3.24601V3.98301L9.036 3.86101V3.71801H8.9L8.79 3.61801L8.9 3.51801H9.036V3.37301L9.164 3.24601ZM8.227 3.50701L8.246 3.60701L8.227 3.70701L8.11 3.60701L8.227 3.50701Z" fill="#242424"/>
|
||||||
|
<path d="M9.164 2.31701V2.47201L8.816 2.77201L8.926 2.87201L8.694 3.07201L8.834 3.19401V3.04801H9.002V3.17801L8.564 3.56001H8.364L8.343 3.45101H8.488L8.307 3.29201L7.929 3.61201L8.306 3.93701L8.487 3.78001H8.337L8.358 3.66901H8.564L9.002 4.05201V4.18201H8.833V4.03601L8.694 4.15701L8.926 4.35801L8.816 4.45801L9.164 4.75701V4.91201L8.637 4.45501L8.747 4.35501L8.517 4.15501L8.714 3.98501L8.564 3.85101L8.306 4.07101L7.775 3.61401L8.306 3.15701L8.564 3.37801L8.714 3.24401L8.514 3.07101L8.744 2.87101L8.634 2.77101L9.164 2.31701ZM9.164 3.26701V3.96201L9.051 3.85601V3.70301H8.905L8.811 3.61201L8.905 3.52401H9.051V3.37101L9.164 3.26701ZM8.216 3.53501L8.229 3.61201L8.216 3.68401L8.133 3.61201L8.216 3.53501Z" fill="#FFC72C"/>
|
||||||
|
<path d="M9.164 6.051V6.251L8.839 6.535L8.949 6.635L8.717 6.835L8.817 6.921V6.788H9.017V6.938L8.569 7.329H8.342L8.318 7.188H8.448L8.306 7.065L7.951 7.365L8.306 7.665L8.448 7.542H8.318L8.343 7.403H8.569L9.017 7.801V7.951H8.817V7.826L8.717 7.912L8.949 8.113L8.839 8.213L9.164 8.488V8.688L8.614 8.21L8.724 8.11L8.494 7.91L8.694 7.737L8.564 7.627L8.306 7.845L7.751 7.369L8.306 6.893L8.564 7.114L8.696 6.999L8.496 6.826L8.726 6.626L8.616 6.526L9.164 6.051ZM9.164 7.001V7.738L9.036 7.616V7.473H8.9L8.79 7.373L8.9 7.273H9.036V7.128L9.164 7.001ZM8.227 7.262L8.246 7.362L8.227 7.462L8.11 7.362L8.227 7.262Z" fill="#242424"/>
|
||||||
|
<path d="M9.164 6.072V6.227L8.816 6.527L8.926 6.627L8.694 6.827L8.834 6.949V6.803H9.002V6.933L8.564 7.315H8.364L8.343 7.206H8.488L8.307 7.047L7.929 7.367L8.306 7.692L8.487 7.535H8.337L8.358 7.424H8.564L9.002 7.807V7.937H8.833V7.791L8.694 7.912L8.926 8.113L8.816 8.213L9.164 8.512V8.667L8.637 8.21L8.747 8.11L8.517 7.91L8.714 7.74L8.564 7.606L8.306 7.826L7.775 7.369L8.306 6.912L8.564 7.133L8.714 6.999L8.514 6.826L8.744 6.626L8.634 6.526L9.164 6.072ZM9.164 7.022V7.717L9.051 7.611V7.458H8.905L8.811 7.367L8.905 7.279H9.051V7.126L9.164 7.022ZM8.216 7.29L8.229 7.367L8.216 7.439L8.133 7.367L8.216 7.29Z" fill="#FFC72C"/>
|
||||||
|
<path d="M9.164 9.80501V10.005L8.839 10.289L8.949 10.389L8.717 10.589L8.817 10.675V10.542H9.017V10.692L8.569 11.083H8.342L8.318 10.942H8.448L8.306 10.819L7.951 11.119L8.306 11.419L8.448 11.296H8.318L8.343 11.157H8.569L9.017 11.555V11.705H8.817V11.58L8.717 11.666L8.949 11.867L8.839 11.967L9.164 12.242V12.442L8.614 11.964L8.724 11.864L8.494 11.664L8.694 11.491L8.564 11.381L8.306 11.599L7.751 11.123L8.306 10.647L8.564 10.868L8.696 10.753L8.496 10.58L8.726 10.38L8.616 10.28L9.164 9.80501ZM9.164 10.755V11.492L9.036 11.37V11.227H8.9L8.79 11.127L8.9 11.027H9.036V10.882L9.164 10.755ZM8.227 11.016L8.246 11.116L8.227 11.216L8.11 11.116L8.227 11.016Z" fill="#242424"/>
|
||||||
|
<path d="M9.164 9.82601V9.98101L8.816 10.281L8.926 10.381L8.694 10.581L8.834 10.703V10.557H9.002V10.687L8.564 11.069H8.364L8.343 10.96H8.488L8.307 10.801L7.929 11.121L8.306 11.446L8.487 11.289H8.337L8.358 11.178H8.564L9.002 11.561V11.691H8.833V11.545L8.694 11.666L8.926 11.867L8.816 11.967L9.164 12.266V12.421L8.637 11.964L8.747 11.864L8.517 11.664L8.714 11.494L8.564 11.36L8.306 11.58L7.775 11.123L8.306 10.666L8.564 10.887L8.714 10.753L8.514 10.58L8.744 10.38L8.634 10.28L9.164 9.82601ZM9.164 10.776V11.471L9.051 11.365V11.212H8.905L8.811 11.121L8.905 11.033H9.051V10.88L9.164 10.776ZM8.216 11.044L8.229 11.121L8.216 11.193L8.133 11.121L8.216 11.044Z" fill="#FFC72C"/>
|
||||||
|
<path d="M9.164 13.559V13.759L8.839 14.043L8.949 14.143L8.717 14.343L8.817 14.429V14.296H9.017V14.446L8.569 14.837H8.342L8.318 14.696H8.448L8.306 14.573L7.951 14.873L8.306 15.173L8.448 15.05H8.318L8.343 14.911H8.569L9.017 15.309V15.459H8.817V15.334L8.717 15.42L8.949 15.621L8.839 15.721L9.164 15.996V16.196L8.614 15.718L8.724 15.618L8.494 15.418L8.694 15.245L8.564 15.135L8.306 15.353L7.751 14.877L8.306 14.401L8.564 14.622L8.696 14.507L8.496 14.334L8.726 14.134L8.616 14.034L9.164 13.559ZM9.164 14.509V15.246L9.036 15.124V14.981H8.9L8.79 14.881L8.9 14.781H9.036V14.636L9.164 14.509ZM8.227 14.77L8.246 14.87L8.227 14.97L8.11 14.87L8.227 14.77Z" fill="#242424"/>
|
||||||
|
<path d="M9.164 13.58V13.735L8.816 14.035L8.926 14.135L8.694 14.335L8.834 14.457V14.311H9.002V14.441L8.564 14.823H8.364L8.343 14.714H8.488L8.307 14.555L7.929 14.875L8.306 15.2L8.487 15.043H8.337L8.358 14.932H8.564L9.002 15.315V15.445H8.833V15.299L8.694 15.42L8.926 15.621L8.816 15.721L9.164 16.02V16.175L8.637 15.718L8.747 15.618L8.517 15.418L8.714 15.248L8.564 15.114L8.306 15.334L7.775 14.877L8.306 14.42L8.564 14.641L8.714 14.507L8.514 14.334L8.744 14.134L8.634 14.034L9.164 13.58ZM9.164 14.53V15.225L9.051 15.119V14.966H8.905L8.811 14.875L8.905 14.787H9.051V14.634L9.164 14.53ZM8.216 14.798L8.229 14.875L8.216 14.947L8.133 14.875L8.216 14.798Z" fill="#FFC72C"/>
|
||||||
|
<path d="M3.85499 17.647C3.88299 17.76 3.97999 17.847 4.00299 17.964C4.06046 17.8533 4.08046 17.727 4.05999 17.604C4.03699 17.504 3.95099 17.44 3.94099 17.341C3.89811 17.3779 3.86707 17.4266 3.85176 17.481C3.83646 17.5355 3.83759 17.5932 3.85499 17.647ZM3.83099 18.122C3.91445 18.2248 4.02244 18.3049 4.14499 18.355C4.13813 18.314 4.14107 18.272 4.15359 18.2323C4.1661 18.1927 4.18783 18.1566 4.21699 18.127C4.24968 18.0915 4.27104 18.047 4.27834 17.9993C4.28565 17.9515 4.27856 17.9027 4.25799 17.859C4.23448 17.9089 4.2042 17.9554 4.16799 17.997C4.11284 18.0571 4.07787 18.133 4.06799 18.214C4.01363 18.1687 3.97136 18.1107 3.94499 18.045C3.89136 17.9543 3.81296 17.8807 3.71899 17.833C3.73476 17.9364 3.77225 18.0352 3.82899 18.123L3.83099 18.122ZM4.27999 18.427C4.26021 18.4825 4.25039 18.5411 4.25099 18.6C4.1933 18.5491 4.13103 18.5035 4.06499 18.464C3.97378 18.4088 3.88894 18.3438 3.81199 18.27C3.81615 18.3285 3.83374 18.3853 3.8634 18.436C3.89305 18.4866 3.93398 18.5297 3.98299 18.562C4.09399 18.64 4.22799 18.681 4.33699 18.762C4.33131 18.6581 4.3534 18.5545 4.40099 18.462C4.41519 18.4153 4.41626 18.3656 4.40409 18.3183C4.39192 18.2711 4.36698 18.228 4.33199 18.194C4.32777 18.2723 4.31054 18.3494 4.28099 18.422L4.27999 18.427ZM4.52899 18.798C4.56281 18.8783 4.60684 18.9539 4.65999 19.023C4.5458 18.9844 4.43589 18.9341 4.33199 18.873C4.20055 18.8204 4.07377 18.7569 3.95299 18.683C3.98043 18.7757 4.03264 18.8592 4.10401 18.9244C4.17539 18.9896 4.2632 19.034 4.35799 19.053C4.50365 19.0722 4.64794 19.1006 4.78999 19.138C4.77131 19.0252 4.7345 18.9161 4.68099 18.815C4.63463 18.7467 4.59574 18.6736 4.56499 18.597C4.54513 18.6261 4.53165 18.659 4.52544 18.6936C4.51924 18.7283 4.52045 18.7639 4.52899 18.798ZM4.96199 19.098C5.00273 19.1631 5.05737 19.2185 5.12199 19.26C4.95499 19.27 4.82199 19.171 4.65799 19.167C4.55799 19.167 4.45799 19.194 4.35799 19.185C4.47746 19.2682 4.61422 19.3232 4.75799 19.346C4.95099 19.369 5.12799 19.324 5.34099 19.346C5.25359 19.2799 5.1816 19.1957 5.12999 19.099C5.09923 19.04 5.05475 18.9892 5.00029 18.9509C4.94582 18.9126 4.88296 18.888 4.81699 18.879C4.87352 18.9481 4.92278 19.0228 4.96399 19.102L4.96199 19.098ZM5.55499 19.357C5.26584 19.4156 4.97267 19.4524 4.67799 19.467C4.99577 19.5835 5.34361 19.5892 5.66499 19.483C5.8095 19.4247 5.96418 19.3958 6.11999 19.398C6.39164 19.4214 6.64446 19.5464 6.82799 19.748L6.93299 19.669C6.73918 19.5211 6.51582 19.4165 6.27806 19.3625C6.04029 19.3085 5.7937 19.3063 5.55499 19.356V19.357Z" fill="#FFC72C"/>
|
||||||
|
<path d="M4.11101 2.32101L3.64801 2.05601V1.41901L4.11101 1.15601V0.817007L4.54801 0.572007H4.89701L5.56201 0.223007H6.99001L7.65501 0.572007H8.00401L8.44101 0.818007V1.15601L8.90401 1.42101V2.05601L8.44101 2.32101V2.65601L8.00401 2.90201H7.65501L6.99001 3.25101H5.56201L4.89701 2.90201H4.54801L4.11101 2.65601V2.32101Z" fill="#242424"/>
|
||||||
|
<path d="M5.56199 0.236008L4.89999 0.586008H4.55299L4.12599 0.826008V1.16301L3.66199 1.42701V2.04801L4.12499 2.31201V2.65001L4.54999 2.89001H4.89899L5.56199 3.23601H6.98199L7.64699 2.88701H7.99599L8.42299 2.64701V2.31201L8.88599 2.04801V1.42701L8.42299 1.16301V0.826008L7.99999 0.586008H7.65099L6.98599 0.236008H5.56199ZM5.60199 0.365008H6.94499L7.60999 0.714008H7.96199L8.28499 0.896008V1.23601L8.74999 1.50001V1.98001L8.28499 2.24401V2.58101L7.96199 2.76301H7.61399L6.94899 3.11201H5.60499L4.93999 2.76301H4.59299L4.26799 2.58101V2.24201L3.80499 1.97801V1.49801L4.26799 1.23601V0.897008L4.59299 0.715008H4.94099L5.60199 0.365008Z" fill="#00843D"/>
|
||||||
|
<path d="M6.26803 1.745V0.380005H5.60803L4.94303 0.729005H4.59603L4.28203 0.905005V1.245L3.81903 1.51V1.734H6.28203V3.09501H6.94203L7.60703 2.74601H7.95403L8.26803 2.57V2.234L8.73103 1.969V1.745H6.26803Z" fill="#FFC72C"/>
|
||||||
|
<path d="M3.81903 1.745V1.969L4.28203 2.234V2.57L4.59603 2.74601H4.94303L5.60803 3.09501H6.26803V1.73001H8.73103V1.50601L8.26803 1.245V0.905005L7.95403 0.729005H7.60703L6.94303 0.380005H6.28303V1.745H3.81903Z" fill="white"/>
|
||||||
|
<path d="M4.83001 0.854005L4.71601 0.754005L4.60301 0.819005L4.71701 0.919005L4.57001 1.00401H4.89001L5.16601 1.24701L5.25401 1.16001L4.99001 0.923005V0.763005L4.83001 0.854005Z" fill="#242424"/>
|
||||||
|
<path d="M5.36901 0.811006L5.25501 0.711006L5.14201 0.776006L5.25601 0.876006L5.10901 0.961006H5.42901L5.70501 1.20401L5.79301 1.11701L5.52501 0.881006V0.721006L5.36901 0.811006Z" fill="#242424"/>
|
||||||
|
<path d="M4.79003 1.13901L4.67603 1.03901L4.56303 1.10401L4.67703 1.20401L4.53003 1.28901H4.85003L5.12603 1.53201L5.21403 1.44501L4.94603 1.20901V1.04901L4.79003 1.13901Z" fill="#242424"/>
|
||||||
|
<path d="M6.27604 0.364006H5.98704L5.83604 0.500006H5.54204L5.32404 0.605006L5.37504 0.720006L5.56904 0.620006H5.65404L5.95404 0.941006L6.27804 0.757006L6.27604 0.364006Z" fill="#242424"/>
|
||||||
|
<path d="M4.71401 0.773006L4.81401 0.862006L4.72801 0.912006L4.62701 0.819006L4.71401 0.773006ZM4.97101 0.789006V0.930006L5.23301 1.16001L5.16601 1.22601L4.89701 0.989006H4.62701L4.97401 0.789006H4.97101Z" fill="#D22630"/>
|
||||||
|
<path d="M5.25404 0.729008L5.35404 0.818008L5.26804 0.868008L5.16804 0.779008L5.25404 0.729008ZM5.51104 0.745008V0.886008L5.77304 1.11601L5.70604 1.18201L5.43704 0.945008H5.16504L5.51204 0.745008H5.51104Z" fill="#D22630"/>
|
||||||
|
<path d="M4.67305 1.05701L4.77305 1.14601L4.68705 1.19601L4.58705 1.10701L4.67305 1.05701ZM4.93005 1.07301V1.21401L5.19205 1.44401L5.12505 1.51001L4.85605 1.27301H4.58405L4.93105 1.07301H4.93005Z" fill="#D22630"/>
|
||||||
|
<path d="M6.26804 0.380005H5.99304L5.84204 0.516005H5.54204L5.34204 0.616005L5.38104 0.705005L5.56304 0.616005H5.66304L5.95704 0.933005L6.27104 0.755005L6.26804 0.380005Z" fill="#D22630"/>
|
||||||
|
<path d="M4.83001 2.62L4.71601 2.72L4.60301 2.655L4.71701 2.555L4.57001 2.47H4.89001L5.16601 2.22701L5.25401 2.314L4.98601 2.55V2.71L4.83001 2.62Z" fill="#242424"/>
|
||||||
|
<path d="M5.36901 2.664L5.25501 2.764L5.14201 2.699L5.25601 2.599L5.10901 2.514H5.42901L5.70501 2.271L5.79301 2.358L5.52501 2.594V2.754L5.36901 2.664Z" fill="#242424"/>
|
||||||
|
<path d="M4.79001 2.33601L4.67601 2.43601L4.56401 2.37001L4.67801 2.27001L4.53101 2.18501H4.85101L5.12701 1.94201L5.21501 2.02901L4.94701 2.27001V2.43001L4.79001 2.33601Z" fill="#242424"/>
|
||||||
|
<path d="M6.27604 3.10901H5.98704L5.83604 2.97301H5.54204L5.32404 2.86801L5.37504 2.75301L5.56904 2.85301H5.65404L5.95404 2.53201L6.27804 2.71601L6.27604 3.10901Z" fill="#242424"/>
|
||||||
|
<path d="M4.71401 2.701L4.81401 2.612L4.72701 2.56201L4.62701 2.65101L4.71401 2.701ZM4.97101 2.685V2.544L5.23301 2.314L5.16601 2.248L4.89701 2.485H4.62701L4.97401 2.685H4.97101Z" fill="#D22630"/>
|
||||||
|
<path d="M5.25398 2.745L5.35398 2.656L5.26998 2.604L5.16998 2.693L5.25398 2.745ZM5.51098 2.729V2.588L5.77298 2.358L5.70598 2.292L5.43698 2.529H5.16498L5.51198 2.729H5.51098Z" fill="#D22630"/>
|
||||||
|
<path d="M4.67299 2.417L4.77298 2.328L4.68699 2.278L4.58698 2.367L4.67299 2.417ZM4.92999 2.401V2.26L5.19199 2.03L5.12498 1.964L4.85598 2.201H4.58398L4.93098 2.401H4.92999Z" fill="#D22630"/>
|
||||||
|
<path d="M6.26798 3.095H5.99298L5.84198 2.959H5.54198L5.34198 2.859L5.38098 2.77L5.56298 2.859H5.66298L5.95698 2.542L6.27098 2.72L6.26798 3.095Z" fill="#D22630"/>
|
||||||
|
<path d="M4.63701 1.30101L4.49901 1.25301L4.32101 1.36801V1.39901L4.03601 1.73501L4.32301 2.07701V2.10801L4.50401 2.22501L4.64201 2.17701L4.55801 2.12501V2.02501L4.59101 1.98801H4.74001V1.48801H4.59101L4.55801 1.45101V1.35101L4.63701 1.30101Z" fill="#242424"/>
|
||||||
|
<path d="M4.33402 1.37701L4.50202 1.26801L4.60202 1.30401L4.53602 1.34501V1.45501L4.57802 1.50101H4.71902V1.96901H4.57802L4.53602 2.01501V2.12701L4.60202 2.16801L4.50202 2.20401L4.33402 2.09501V2.06801L4.05402 1.73701L4.33402 1.40601V1.37701Z" fill="#D22630"/>
|
||||||
|
<path d="M7.72104 0.853006L7.83504 0.753006L7.94804 0.819006L7.83404 0.919006L7.98004 1.00301H7.66004L7.38004 1.24601L7.29604 1.15901L7.56404 0.923006V0.763006L7.72104 0.853006Z" fill="#242424"/>
|
||||||
|
<path d="M7.18204 0.810007L7.29604 0.710007L7.40904 0.776007L7.29504 0.876007L7.44104 0.960007H7.12104L6.84104 1.20301L6.75704 1.11601L7.02504 0.880007V0.720007L7.18204 0.810007Z" fill="#242424"/>
|
||||||
|
<path d="M7.76102 1.13801L7.87502 1.03801L7.98802 1.10401L7.87402 1.20401L8.02002 1.28801H7.70002L7.42002 1.53101L7.33602 1.44401L7.60402 1.20801V1.04801L7.76102 1.13801Z" fill="#242424"/>
|
||||||
|
<path d="M6.27499 0.364006H6.56399L6.71499 0.500006H7.00899L7.22699 0.606006L7.17599 0.721006L6.98199 0.621006H6.89699L6.59999 0.947006L6.27499 0.763006V0.364006Z" fill="#242424"/>
|
||||||
|
<path d="M7.837 0.772006L7.737 0.861006L7.821 0.911006L7.927 0.826006L7.837 0.772006ZM7.58 0.789006V0.926006L7.319 1.16001L7.386 1.22601L7.655 0.989006H7.927L7.58 0.789006Z" fill="#D22630"/>
|
||||||
|
<path d="M7.29702 0.729006L7.19702 0.818006L7.28102 0.868006L7.38702 0.783006L7.29702 0.729006ZM7.04002 0.746006V0.883006L6.77902 1.11701L6.84602 1.18301L7.11502 0.946006H7.38702L7.04002 0.746006Z" fill="#D22630"/>
|
||||||
|
<path d="M7.876 1.05701L7.776 1.14601L7.86 1.19601L7.966 1.11101L7.876 1.05701ZM7.619 1.07401V1.21101L7.358 1.44501L7.425 1.51101L7.694 1.27401H7.966L7.619 1.07401Z" fill="#D22630"/>
|
||||||
|
<path d="M6.28203 0.379005H6.55703L6.70703 0.515005H7.00703L7.20703 0.613005L7.16803 0.702005L6.98503 0.612005H6.88503L6.59603 0.929005L6.28203 0.751005V0.379005Z" fill="#D22630"/>
|
||||||
|
<path d="M7.72104 2.61901L7.83504 2.71901L7.94804 2.65401L7.83404 2.55401L7.98004 2.47001H7.66004L7.38004 2.22701L7.29604 2.31901L7.56404 2.55001V2.71001L7.72104 2.61901Z" fill="#242424"/>
|
||||||
|
<path d="M7.18204 2.663L7.29604 2.763L7.40904 2.698L7.29504 2.598L7.44104 2.514H7.12104L6.84104 2.271L6.75704 2.363L7.02504 2.594V2.754L7.18204 2.663Z" fill="#242424"/>
|
||||||
|
<path d="M7.76102 2.33401L7.87502 2.43401L7.98802 2.36901L7.87402 2.26901L8.02002 2.18501H7.70002L7.42002 1.94201L7.33602 2.03401L7.60402 2.26501V2.42501L7.76102 2.33401Z" fill="#242424"/>
|
||||||
|
<path d="M6.27499 3.109H6.56399L6.71499 2.973H7.00899L7.22699 2.868L7.17599 2.752L6.98199 2.852H6.89699L6.59699 2.531L6.27499 2.709V3.109Z" fill="#242424"/>
|
||||||
|
<path d="M7.837 2.701L7.737 2.612L7.821 2.562L7.927 2.652L7.837 2.701ZM7.58 2.685V2.544L7.318 2.314L7.386 2.247L7.655 2.484H7.927L7.58 2.684V2.685Z" fill="#D22630"/>
|
||||||
|
<path d="M7.29702 2.74501L7.19702 2.65601L7.28102 2.60601L7.38702 2.69601L7.29702 2.74501ZM7.04002 2.72901V2.58801L6.77802 2.35801L6.84602 2.29101L7.11502 2.52801H7.38702L7.04002 2.72801V2.72901Z" fill="#D22630"/>
|
||||||
|
<path d="M7.876 2.417L7.776 2.328L7.86 2.278L7.966 2.368L7.876 2.417ZM7.619 2.401V2.26L7.357 2.03L7.425 1.963L7.694 2.2H7.966L7.619 2.4V2.401Z" fill="#D22630"/>
|
||||||
|
<path d="M6.28203 3.09501H6.55703L6.70703 2.95901H7.00703L7.20703 2.85901L7.16803 2.77301L6.98503 2.86201H6.88503L6.59603 2.54501L6.28203 2.72301V3.09501Z" fill="#D22630"/>
|
||||||
|
<path d="M7.91703 1.301L8.05103 1.253L8.23203 1.37V1.401L8.51703 1.737L8.23203 2.073V2.104L8.05103 2.221L7.91703 2.173L7.99803 2.121V2.021L7.96403 1.985H7.81703V1.485H7.96403L7.99803 1.452V1.352L7.91703 1.301Z" fill="#242424"/>
|
||||||
|
<path d="M8.21805 1.37801L8.05005 1.26901L7.94805 1.30501L8.01405 1.34501V1.45701L7.97205 1.50501H7.83105V1.97101H7.97205L8.01405 2.01701V2.12901L7.94805 2.16901L8.05005 2.20501L8.21805 2.09601V2.06801L8.49805 1.73701L8.21805 1.40501V1.37801Z" fill="#D22630"/>
|
||||||
|
<path d="M4.39302 2.01901L4.31602 1.95601V1.92601L4.15002 1.73701L4.31602 1.54801V1.51801L4.39302 1.45501L4.53202 1.56101H4.45202L4.57102 1.67301H4.84202L5.05503 1.51701V1.10701H5.58702L6.20702 0.752006V0.659006L6.11202 0.600006H6.08702L5.98702 0.664006L5.97102 0.712006L5.89003 0.612006L6.04702 0.489006H6.07202L6.24202 0.364006H6.30902L6.48602 0.485006H6.51102L6.66803 0.608006L6.58702 0.708006L6.57102 0.664006L6.47102 0.600006H6.44102L6.34602 0.659006V0.752006L6.96602 1.10701H7.49902V1.51801L7.71202 1.67401H7.98302L8.10203 1.56201H8.02203L8.16103 1.45601L8.23802 1.51901V1.54901L8.40403 1.73801L8.23802 1.92701V1.95701L8.16103 2.02001L8.02203 1.91401H8.10203L7.98302 1.80201H7.71202L7.49902 1.95801V2.36401H6.96602L6.34602 2.71901V2.81201L6.44102 2.87101H6.47102L6.57102 2.80701L6.58702 2.76401L6.66803 2.86401L6.51102 2.98701H6.48702L6.31002 3.10801H6.24302L6.06602 2.98701H6.04103L5.88702 2.86401L5.96802 2.76401L5.98403 2.81201L6.08402 2.87601H6.11403L6.20902 2.81701V2.72301L5.58702 2.36401H5.05402V1.95801L4.84102 1.80201H4.57002L4.45103 1.91401H4.53102L4.39302 2.01901Z" fill="#242424"/>
|
||||||
|
<path d="M6.28399 2.886L6.35199 2.93401L6.28399 2.982V2.882V2.886ZM6.06799 2.974L6.24499 3.09501H6.26599V3.001L6.17299 2.935L6.26599 2.869V2.69L5.60299 2.31H5.11299V1.929L4.86199 1.745H4.47999L4.37999 1.84501L4.27999 1.745H4.16699L4.32199 1.922V1.951L4.38399 2.001L4.48399 1.929H4.42599V1.91101L4.55499 1.788H4.83899L5.06199 1.951V2.351H5.58399L6.21399 2.712V2.821L6.10899 2.887H6.06999L5.95899 2.817L5.95699 2.794L5.90299 2.863L6.04499 2.974H6.06699H6.06799ZM4.38499 1.65101L4.46099 1.731H4.30999L4.38499 1.65101ZM6.26799 0.493005L6.19999 0.541005L6.26799 0.589005V0.493005ZM8.09199 1.745L8.16799 1.82501L8.24399 1.745H8.09199ZM6.48199 0.501005L6.30399 0.380005H6.28299V0.475005L6.37599 0.541005L6.28299 0.607005V0.785005L6.94599 1.165H7.43599V1.545L7.68899 1.73001H8.07099L8.17099 1.63L8.27099 1.73001H8.38399L8.22899 1.553V1.525L8.15699 1.475L8.05699 1.545H8.11499V1.563L7.98599 1.686H7.70199L7.47899 1.52301V1.123H6.95699L6.32699 0.762005V0.651005L6.43199 0.585005H6.47099L6.58199 0.655005L6.59099 0.681005L6.64499 0.612005L6.50299 0.501005H6.47799H6.48199Z" fill="#FFC72C"/>
|
||||||
|
<path d="M6.269 2.98301L6.201 2.935L6.269 2.887V2.98301ZM4.457 1.745L4.381 1.82501L4.305 1.745H4.457ZM6.48 2.974L6.303 3.09501H6.282V3.001L6.375 2.935L6.282 2.869V2.69L6.945 2.31H7.435V1.929L7.688 1.744H8.07L8.17 1.844L8.27 1.744H8.383L8.228 1.92101V1.95001L8.166 2.00001L8.057 1.928H8.115V1.91101L7.986 1.788H7.702L7.479 1.951V2.351H6.957L6.327 2.712V2.821L6.432 2.887H6.471L6.582 2.817L6.591 2.791L6.645 2.86L6.503 2.971H6.481L6.48 2.974ZM8.167 1.65101L8.091 1.731H8.242L8.167 1.65101ZM6.067 0.501005L6.244 0.380005H6.265V0.475005L6.172 0.541005L6.265 0.607005V0.785005L5.602 1.165H5.112V1.545L4.859 1.73001H4.477L4.377 1.63L4.277 1.73001H4.164L4.319 1.553V1.525L4.381 1.475L4.481 1.547H4.423V1.565L4.552 1.688H4.836L5.059 1.525V1.125H5.581L6.211 0.764005V0.651005L6.106 0.585005H6.067L5.956 0.655005L5.947 0.681005L5.893 0.612005L6.035 0.501005H6.067ZM6.28 0.589005L6.348 0.541005L6.28 0.493005V0.589005Z" fill="white"/>
|
||||||
|
<path d="M6.26802 1.74501V0.802006L5.60902 1.17901H5.13002V1.55301L4.88702 1.73101H6.28702V2.67401L6.94602 2.29701H7.41602V1.92301L7.65902 1.74501H6.26802Z" fill="#00843D"/>
|
||||||
|
<path d="M4.88702 1.744L5.13102 1.922V2.296H5.61002L6.26902 2.673V1.73H7.66902L7.41602 1.552V1.181H6.93702L6.27802 0.804005V1.747L4.88702 1.744Z" fill="#D22630"/>
|
||||||
|
<path d="M5.56603 1.28L5.45203 1.18L5.33903 1.245L5.45303 1.345L5.30603 1.43H5.62603L5.90203 1.673L5.99003 1.586L5.71903 1.349V1.189L5.56603 1.28Z" fill="#242424"/>
|
||||||
|
<path d="M6.98403 2.19501L7.09803 2.29501L7.21103 2.23001L7.09703 2.13001L7.24003 2.04301H6.92003L6.64403 1.80001L6.55603 1.88701L6.82403 2.12301V2.28301L6.98403 2.19501Z" fill="#242424"/>
|
||||||
|
<path d="M5.56601 2.19501L5.45201 2.29501L5.33901 2.23001L5.45301 2.13001L5.30701 2.04301H5.62701L5.90301 1.80001L5.99101 1.88701L5.71901 2.12501V2.28501L5.56601 2.19501Z" fill="#242424"/>
|
||||||
|
<path d="M6.98403 1.28L7.09803 1.18L7.21103 1.245L7.09703 1.345L7.24003 1.43H6.92003L6.64403 1.673L6.55603 1.586L6.82403 1.35V1.19L6.98403 1.28Z" fill="#242424"/>
|
||||||
|
<path d="M7.1 2.27601L7 2.18701L7.086 2.13701L7.186 2.22601L7.1 2.27601ZM6.843 2.26001V2.11901L6.581 1.88901L6.648 1.82301L6.917 2.06001H7.189L6.842 2.26001H6.843ZM5.451 1.19801L5.551 1.28701L5.465 1.33701L5.365 1.24801L5.451 1.19801ZM5.708 1.21401V1.35501L5.97 1.58501L5.903 1.65101L5.634 1.41401H5.362L5.709 1.21401H5.708Z" fill="#D22630"/>
|
||||||
|
<path d="M7.1 1.19801L7 1.28701L7.086 1.33701L7.186 1.24801L7.1 1.19801ZM6.843 1.21401V1.35501L6.581 1.58501L6.648 1.65101L6.917 1.41401H7.189L6.842 1.21401H6.843ZM5.451 2.27601L5.551 2.18701L5.465 2.13701L5.365 2.22601L5.451 2.27601ZM5.708 2.26001V2.11901L5.97 1.88901L5.903 1.82301L5.634 2.06001H5.362L5.709 2.26001H5.708Z" fill="#00843D"/>
|
||||||
|
<path d="M6.98399 1.738L6.27599 2.179L5.56799 1.738L6.27599 1.297L6.98399 1.738Z" fill="#242424"/>
|
||||||
|
<path d="M6.266 1.319L5.604 1.731H6.942L6.28 1.319V2.156L6.942 1.744H5.606L6.268 2.156L6.266 1.319Z" fill="white"/>
|
||||||
|
<path d="M6.46499 1.889V2.01H6.08899V1.889H5.84399V1.589H6.08899V1.465H6.46799V1.586H6.71299V1.886L6.46499 1.889Z" fill="#242424"/>
|
||||||
|
<path d="M6.10199 1.47501V1.59601H5.85699V1.72601H6.27099V1.47501H6.10499H6.10199ZM6.28399 1.72601H6.69599V1.59601H6.45099V1.47501H6.28499V1.72601H6.28399ZM5.85699 1.74001V1.87501H6.10199V1.99601H6.27099V1.74401H5.85899L5.85699 1.74001ZM6.28399 1.99101H6.44999V1.87501H6.69499V1.74501H6.28299V1.99601L6.28399 1.99101Z" fill="#D22630"/>
|
||||||
|
<path d="M7.48404 6.761V6.561H8.05404V6.367H8.62404V4.615H8.05004V4.421H7.48004V4.22701H6.91004V4.033H5.63804V4.22701H5.06804V4.421H4.49804V4.615H3.92804V6.368H4.49804V6.561H5.06804V6.761H5.63804V6.955H6.91404V6.761H7.48404Z" fill="#242424"/>
|
||||||
|
<path d="M5.65403 4.04301V4.24301H5.08403V4.43701H4.51403V4.63101H3.94403V6.35701H4.51403V6.55101H5.08403V6.74301H5.65403V6.93701H6.89903V6.74301H7.46903V6.54901H8.03903V6.35501H8.60903V4.62901H8.03903V4.43501H7.46903V4.24301H6.89903V4.04301H5.65403ZM5.80503 4.18401H6.74703V4.37801H7.31703V4.57201H7.88703V4.76601H8.45703V6.21301H7.88703V6.40701H7.31703V6.60101H6.74703V6.79501H5.80503V6.60101H5.23203V6.40701H4.66203V6.21301H4.09203V4.77001H4.66203V4.57601H5.23203V4.38201H5.80203L5.80503 4.18401Z" fill="#FFC72C"/>
|
||||||
|
<path d="M5.24901 6.58701V6.39301H4.67901V6.19901H4.10901V4.78501H4.67901V4.59101H5.24901V4.39701H5.81901V4.20301H6.73501V4.39701H7.30501V4.59101H7.87501V4.78501H8.44501V6.20001H7.87501V6.39401H7.30501V6.58801H6.73501V6.78201H5.82201V6.58801L5.24901 6.58701Z" fill="#D22630"/>
|
||||||
|
<path d="M5.38204 4.54L5.23404 4.44V4.64L5.09304 4.724V4.599L4.95704 4.713L4.82104 4.599V4.724L4.66404 4.631V4.816L4.53704 4.902V4.788L4.38704 4.888L4.23704 4.788V4.902L4.09504 4.802V5.364H3.92804V5.62H4.09404V6.182L4.23604 6.082V6.196L4.38604 6.096L4.53604 6.196V6.082L4.66304 6.168V6.353L4.82004 6.26V6.385L4.95604 6.271L5.09204 6.385V6.26L5.23304 6.344V6.544L5.38104 6.444V6.584L5.52604 6.463L5.67104 6.584V6.444L5.80304 6.537V6.75L6.00304 6.582V6.782L6.27704 6.618L6.55104 6.782V6.582L6.75104 6.75V6.533L6.88304 6.44V6.58L7.02804 6.459L7.17304 6.58V6.44L7.32104 6.54V6.34L7.46204 6.256V6.381L7.59804 6.267L7.73404 6.381V6.256L7.89104 6.349V6.164L8.01804 6.078V6.192L8.16804 6.092L8.31804 6.192V6.078L8.46004 6.178V5.616H8.62604V5.36H8.46004V4.798L8.31804 4.898V4.784L8.16804 4.884L8.01804 4.784V4.898L7.89104 4.812V4.627L7.73404 4.72V4.595L7.59804 4.709L7.46204 4.595V4.72L7.32104 4.636V4.436L7.17304 4.536V4.396L7.02804 4.517L6.88304 4.396V4.536L6.75104 4.443V4.233L6.55104 4.401V4.201L6.27704 4.365L6.00304 4.201V4.401L5.80304 4.233V4.446L5.67104 4.539V4.399L5.52604 4.52L5.38104 4.399L5.38204 4.54Z" fill="#242424"/>
|
||||||
|
<path d="M4.25099 4.926V4.812L4.38599 4.903L4.51699 4.815V4.929L4.65899 4.829V6.153L4.51699 6.053V6.167L4.38199 6.076L4.24699 6.167V6.053L4.10499 6.153V5.605H3.94299V5.378H4.10899V4.83L4.25099 4.926Z" fill="#00843D"/>
|
||||||
|
<path d="M5.398 4.42801L5.528 4.53601L5.658 4.42801V4.56501L5.806 4.46501V6.51901L5.658 6.41901V6.55601L5.528 6.44801L5.398 6.55601V6.41901L5.25 6.51901V4.46501L5.398 4.56501V4.42801Z" fill="#00843D"/>
|
||||||
|
<path d="M7.15501 4.42801L7.02501 4.53601L6.89501 4.42801V4.56501L6.74701 4.46501V6.51901L6.89501 6.41901V6.55601L7.02501 6.44801L7.15501 6.55601V6.41901L7.30301 6.51901V4.46501L7.15501 4.56501V4.42801Z" fill="#00843D"/>
|
||||||
|
<path d="M8.301 4.926V4.812L8.166 4.903L8.03501 4.815V4.929L7.89301 4.829V6.153L8.03501 6.053V6.167L8.17 6.076L8.305 6.167V6.053L8.447 6.153V5.605H8.613V5.378H8.447V4.83L8.301 4.926Z" fill="#00843D"/>
|
||||||
|
<path d="M4.83602 4.62701L4.95602 4.72701L5.07602 4.62701V4.74601L5.23302 4.65301V6.33101L5.07602 6.23801V6.35701L4.95602 6.25701L4.83602 6.35701V6.23801L4.67902 6.33101V4.65301L4.83602 4.74601V4.62701Z" fill="#FFC72C"/>
|
||||||
|
<path d="M6.015 4.43401L5.815 4.26601V6.71801L6.015 6.55001V6.75001L6.273 6.59501L6.531 6.75001V6.55001L6.731 6.71801V4.26601L6.531 4.43401V4.23401L6.273 4.38901L6.015 4.23001V4.43401Z" fill="#FFC72C"/>
|
||||||
|
<path d="M7.71499 4.62701L7.59499 4.72701L7.47499 4.62701V4.74601L7.31799 4.65301V6.33101L7.47499 6.23801V6.35701L7.59499 6.25701L7.71499 6.35701V6.23801L7.87199 6.33101V4.65301L7.71499 4.74601V4.62701Z" fill="#FFC72C"/>
|
||||||
|
<path d="M4.32403 5.25201C4.34059 5.26784 4.36262 5.27668 4.38553 5.27668C4.40844 5.27668 4.43047 5.26784 4.44703 5.25201C4.49199 5.19222 4.51174 5.11719 4.50203 5.04301L4.42803 5.11601L4.38503 5.04701L4.34503 5.11401L4.27103 5.04101C4.26021 5.11558 4.27926 5.1914 4.32403 5.25201Z" fill="#242424"/>
|
||||||
|
<path d="M4.91901 5.10901L4.87301 5.06601V4.98101L4.77301 5.07201L4.96001 5.24701L5.14701 5.07201L5.04701 4.98101V5.06601L5.00101 5.10901V4.95901L5.08201 4.89401L4.96401 4.80001L4.84601 4.89401L4.92701 4.95901L4.91901 5.10901Z" fill="#242424"/>
|
||||||
|
<path d="M5.49006 4.94001L5.44406 4.89701V4.81301L5.34406 4.90401L5.53106 5.07901L5.71806 4.90401L5.61806 4.81301V4.89801L5.57206 4.94101V4.79101L5.65306 4.72601L5.53506 4.63201L5.41706 4.72601L5.49806 4.79101L5.49006 4.94001Z" fill="#242424"/>
|
||||||
|
<path d="M4.38701 5.07101L4.42701 5.13601L4.48801 5.07601C4.49195 5.13464 4.47415 5.19267 4.43801 5.23901C4.42448 5.25173 4.40659 5.25882 4.38801 5.25882C4.36943 5.25882 4.35155 5.25173 4.33801 5.23901C4.30187 5.19267 4.28407 5.13464 4.28801 5.07601L4.34901 5.13601L4.38901 5.07101H4.38701Z" fill="white"/>
|
||||||
|
<path d="M5.54802 4.78401V4.97501L5.62402 4.90401V4.84601L5.69102 4.90401L5.52602 5.05801L5.36102 4.90401L5.42802 4.84601V4.90401L5.50402 4.97501V4.78401L5.43102 4.72601L5.52502 4.65001L5.61902 4.72601L5.54802 4.78401Z" fill="white"/>
|
||||||
|
<path d="M4.97802 4.95201V5.14301L5.05402 5.07201V5.01301L5.12102 5.07101L4.95602 5.22501L4.79102 5.07101L4.85802 5.01301V5.07101L4.93402 5.14201V4.95101L4.86102 4.89301L4.95502 4.81701L5.04902 4.89301L4.97802 4.95201Z" fill="#D22630"/>
|
||||||
|
<path d="M8.22603 5.25101C8.20976 5.26702 8.18785 5.276 8.16503 5.27601C8.15356 5.27613 8.14217 5.27399 8.13153 5.2697C8.12089 5.26541 8.1112 5.25906 8.10303 5.25101C8.05807 5.19122 8.03832 5.11619 8.04803 5.04201L8.12203 5.11501L8.16503 5.04601L8.20803 5.11501L8.28203 5.04201C8.29145 5.11632 8.27134 5.19136 8.22603 5.25101Z" fill="#242424"/>
|
||||||
|
<path d="M7.63204 5.10901L7.68204 5.06601V4.98201L7.78204 5.07201L7.59504 5.24701L7.40704 5.07201L7.51204 4.98201V5.06601L7.55804 5.10901V4.95901L7.48204 4.89401L7.59504 4.80001L7.71204 4.89401L7.63204 4.95901V5.10901Z" fill="#242424"/>
|
||||||
|
<path d="M7.06204 4.94001L7.11204 4.89701V4.81301L7.21204 4.90301L7.02504 5.07801L6.83704 4.90301L6.94204 4.81301V4.89701L6.98804 4.94001V4.79001L6.91204 4.72501L7.02504 4.63101L7.14204 4.72501L7.06204 4.79001V4.94001Z" fill="#242424"/>
|
||||||
|
<path d="M8.166 5.07401L8.125 5.13901L8.066 5.07901C8.0615 5.13739 8.07858 5.19539 8.114 5.24201C8.12091 5.24863 8.12906 5.25381 8.13799 5.25724C8.14692 5.26067 8.15644 5.26229 8.166 5.26201C8.18463 5.26206 8.20255 5.25489 8.216 5.24201C8.25214 5.19567 8.26994 5.13764 8.266 5.07901L8.205 5.13901L8.166 5.07401Z" fill="white"/>
|
||||||
|
<path d="M7.003 4.78301V4.97501L6.927 4.90301V4.84501L6.86 4.90401L7.025 5.05801L7.19 4.90401L7.123 4.84501V4.90301L7.046 4.97501V4.78301L7.119 4.72501L7.025 4.65001L6.931 4.72501L7.003 4.78301Z" fill="white"/>
|
||||||
|
<path d="M7.57301 4.95201V5.14401L7.49701 5.07201V5.01401L7.43001 5.07301L7.59501 5.22701L7.76001 5.07301L7.69301 5.01401V5.07201L7.61601 5.14401V4.95201L7.68901 4.89401L7.59501 4.81901L7.50101 4.89401L7.57301 4.95201Z" fill="#D22630"/>
|
||||||
|
<path d="M6.50004 5.00401L6.43904 4.92501L6.59604 4.78901L6.45404 4.68101V4.76101L6.39304 4.81001V4.66101L6.53204 4.56101L6.28104 4.38901L6.03004 4.56101L6.16904 4.66101V4.80601L6.10804 4.75701V4.68101L5.95404 4.78901L6.11104 4.92501L6.05004 5.00401H6.50004Z" fill="#242424"/>
|
||||||
|
<path d="M6.081 4.99001L6.133 4.92301L5.979 4.79001L6.087 4.70701V4.76301L6.179 4.83601V4.65701L6.051 4.56901L6.276 4.41401L6.501 4.56901L6.373 4.65701V4.84001L6.465 4.76701V4.70701L6.573 4.79001L6.419 4.92301L6.471 4.99001H6.081Z" fill="#D22630"/>
|
||||||
|
<path d="M6.16101 4.56501L6.27601 4.64401L6.39101 4.56501L6.27601 4.48601L6.16101 4.56501Z" fill="#242424"/>
|
||||||
|
<path d="M6.27601 4.50501L6.36501 4.56601L6.27601 4.62701L6.18701 4.56601L6.27601 4.50501Z" fill="#00843D"/>
|
||||||
|
<path d="M4.32403 5.733C4.34029 5.71699 4.3622 5.70801 4.38503 5.708C4.40785 5.70801 4.42976 5.71699 4.44603 5.733C4.49099 5.7928 4.51073 5.86783 4.50103 5.942L4.42703 5.869L4.38403 5.938L4.34103 5.869L4.26703 5.942C4.25788 5.86756 4.27835 5.7925 4.32403 5.733Z" fill="#242424"/>
|
||||||
|
<path d="M4.91901 5.875L4.87301 5.918V6.003L4.77301 5.912L4.96001 5.737L5.14701 5.912L5.04701 6.003V5.918L5.00101 5.875V6.025L5.08201 6.09L4.96401 6.184L4.84601 6.09L4.92701 6.025L4.91901 5.875Z" fill="#242424"/>
|
||||||
|
<path d="M5.49006 6.044L5.44406 6.087V6.172L5.34406 6.081L5.53106 5.906L5.71806 6.081L5.61806 6.172V6.087L5.57206 6.044V6.194L5.65306 6.259L5.53506 6.353L5.41706 6.259L5.49806 6.194L5.49006 6.044Z" fill="#242424"/>
|
||||||
|
<path d="M4.387 5.91001L4.427 5.84501L4.488 5.90501C4.49194 5.84637 4.47414 5.78835 4.438 5.74201C4.4243 5.72888 4.40597 5.72169 4.387 5.72201C4.36803 5.72169 4.3497 5.72888 4.336 5.74201C4.29986 5.78835 4.28206 5.84637 4.286 5.90501L4.347 5.84501L4.387 5.91001Z" fill="white"/>
|
||||||
|
<path d="M5.54802 6.20101V6.01001L5.62402 6.08101V6.13901L5.69102 6.08101L5.52602 5.92701L5.36102 6.08101L5.42802 6.13901V6.08101L5.50402 6.01001V6.20101L5.43102 6.25901L5.52502 6.33501L5.61902 6.25901L5.54802 6.20101Z" fill="white"/>
|
||||||
|
<path d="M4.97802 6.032V5.841L5.05402 5.912V5.97L5.12102 5.912L4.95602 5.758L4.79102 5.912L4.85802 5.97V5.912L4.93402 5.841V6.032L4.86102 6.09L4.95502 6.166L5.04902 6.09L4.97802 6.032Z" fill="#D22630"/>
|
||||||
|
<path d="M8.22603 5.73301C8.20976 5.71699 8.18785 5.70801 8.16503 5.70801C8.15356 5.70788 8.14217 5.71002 8.13153 5.71431C8.12089 5.7186 8.1112 5.72496 8.10303 5.73301C8.05807 5.7928 8.03832 5.86783 8.04803 5.94201L8.12203 5.86901L8.16503 5.94201L8.20803 5.86901L8.28203 5.94201C8.29145 5.86769 8.27134 5.79265 8.22603 5.73301Z" fill="#242424"/>
|
||||||
|
<path d="M7.63204 5.87601L7.68204 5.91801V6.00301L7.78204 5.91201L7.59504 5.73801L7.40704 5.91201L7.51204 6.00301V5.91801L7.55804 5.87601V6.02601L7.48204 6.09101L7.59504 6.18501L7.71204 6.09101L7.63204 6.02601V5.87601Z" fill="#242424"/>
|
||||||
|
<path d="M7.06204 6.044L7.11204 6.086V6.171L7.21204 6.08L7.02504 5.906L6.83704 6.08L6.94204 6.171V6.086L6.98804 6.044V6.194L6.91204 6.259L7.02504 6.353L7.14204 6.259L7.06204 6.194V6.044Z" fill="#242424"/>
|
||||||
|
<path d="M8.16603 5.91L8.12603 5.845L8.06603 5.91C8.0621 5.85137 8.0799 5.79334 8.11603 5.747C8.12228 5.73971 8.12992 5.73375 8.13851 5.72945C8.1471 5.72516 8.15645 5.72263 8.16603 5.722C8.1848 5.72222 8.20274 5.72975 8.21603 5.743C8.25313 5.79039 8.27099 5.85003 8.26603 5.91L8.20503 5.85L8.16603 5.91Z" fill="white"/>
|
||||||
|
<path d="M7.003 6.2V6.009L6.927 6.08V6.134L6.86 6.08L7.025 5.926L7.19 6.08L7.123 6.134V6.08L7.046 6.009V6.2L7.119 6.258L7.025 6.334L6.931 6.258L7.003 6.2Z" fill="white"/>
|
||||||
|
<path d="M7.57301 6.032V5.841L7.49701 5.912V5.966L7.43001 5.912L7.59501 5.758L7.76001 5.912L7.69301 5.966V5.912L7.61601 5.841V6.032L7.68901 6.09L7.59501 6.166L7.50101 6.09L7.57301 6.032Z" fill="#D22630"/>
|
||||||
|
<path d="M6.50004 5.979L6.43904 6.058L6.59604 6.194L6.44904 6.306V6.226L6.38804 6.177V6.322L6.52704 6.422L6.27604 6.594L6.02504 6.422L6.16404 6.322V6.177L6.10304 6.226V6.306L5.95404 6.194L6.11104 6.058L6.05404 5.979H6.50004Z" fill="#242424"/>
|
||||||
|
<path d="M6.081 5.99401L6.133 6.06101L5.979 6.19401L6.087 6.27701V6.22101L6.179 6.14801V6.33101L6.051 6.41901L6.276 6.57401L6.501 6.41901L6.373 6.33101V6.14801L6.465 6.22101V6.27701L6.573 6.19401L6.419 6.06101L6.471 5.99401H6.081Z" fill="#D22630"/>
|
||||||
|
<path d="M6.16101 6.418L6.27601 6.339L6.39101 6.418L6.27601 6.497L6.16101 6.418Z" fill="#242424"/>
|
||||||
|
<path d="M6.27601 6.47901L6.36501 6.41801L6.27601 6.35701L6.18701 6.41801L6.27601 6.47901Z" fill="#00843D"/>
|
||||||
|
<path d="M8.30501 5.41001H8.05401V5.31701H7.28701L6.75301 4.99001H5.79901L5.26501 5.31701H4.49801V5.41001H4.24701V5.57401H4.49801V5.66701H5.26501L5.79901 5.99401H6.75301L7.28701 5.66701H8.05401V5.57401H8.30501V5.41001Z" fill="#242424"/>
|
||||||
|
<path d="M5.80402 5.00401L5.26902 5.33001H4.51302V5.42301H4.26202V5.56301H4.51302V5.656H5.26902L5.80402 5.984H6.75002L7.28302 5.656H8.04002V5.56301H8.29102V5.42301H8.04002V5.33001H7.28302L6.75002 5.00401H5.80402ZM5.81502 5.052H6.73702L7.22602 5.35201V5.39801H7.77202V5.58801H7.22602V5.63401L6.73702 5.934H5.81502L5.32802 5.63401V5.58801H4.78002V5.39801H5.32802V5.35201L5.81502 5.052Z" fill="#D22630"/>
|
||||||
|
<path d="M6.73198 5.06601L7.20898 5.35801V5.41001H7.75598V5.57201H7.20898V5.62401L6.73198 5.91601H5.81898L5.34198 5.62401V5.57201H4.79498V5.41001H5.34198V5.35801L5.81898 5.06601H6.73198Z" fill="#D22630"/>
|
||||||
|
<path d="M5.58203 5.658L5.78903 5.80301L5.92503 5.703L5.84603 5.648L5.78903 5.688L5.74003 5.65401L6.51803 5.109H6.36003L5.58203 5.658ZM6.03303 5.87101H6.19503L6.97303 5.326L6.76603 5.181L6.63003 5.281L6.70903 5.33601L6.76603 5.29601L6.81503 5.33L6.03303 5.87101ZM6.36003 5.87101H6.51803L5.74003 5.326L5.78903 5.292L5.84603 5.332L5.92503 5.27701L5.78903 5.177L5.58203 5.32201L6.36003 5.87101ZM6.81103 5.658L6.76203 5.69201L6.70503 5.65201L6.62603 5.707L6.76203 5.807L6.96903 5.662L6.19103 5.117H6.03303L6.81103 5.658Z" fill="#242424"/>
|
||||||
|
<path d="M5.42603 5.49201L5.56503 5.57801L5.70403 5.49201L5.56503 5.40601L5.42603 5.49201Z" fill="#242424"/>
|
||||||
|
<path d="M6.14001 5.49201L6.27901 5.57801L6.41802 5.49201L6.27901 5.40601L6.14001 5.49201Z" fill="#242424"/>
|
||||||
|
<path d="M7.12602 5.49201L6.98702 5.57801L6.84802 5.49201L6.98702 5.40601L7.12602 5.49201Z" fill="#242424"/>
|
||||||
|
<path d="M6.94406 5.65801L6.76306 5.78501L6.65306 5.70801L6.70706 5.67001L6.76406 5.71001L6.83806 5.65801L6.08006 5.12701H6.18706L6.94406 5.65801ZM6.47306 5.85801H6.36506L5.60706 5.32701L5.78806 5.20001L5.89806 5.27701L5.84406 5.31501L5.78706 5.27501L5.71306 5.32701L6.47306 5.85801ZM6.18706 5.85801H6.08006L6.83806 5.32701L6.76406 5.27501L6.70706 5.31501L6.65306 5.27701L6.76306 5.20001L6.94406 5.32701L6.18706 5.85801ZM6.36606 5.12801H6.47306L5.71506 5.65901L5.78906 5.71101L5.84606 5.67101L5.90006 5.70901L5.79006 5.78601L5.60906 5.65901L6.36606 5.12801Z" fill="#FFC72C"/>
|
||||||
|
<path d="M5.56504 5.424L5.67604 5.493L5.56504 5.562L5.45404 5.493L5.56504 5.424Z" fill="#00843D"/>
|
||||||
|
<path d="M6.27604 5.424L6.38704 5.493L6.27604 5.562L6.16504 5.493L6.27604 5.424Z" fill="#00843D"/>
|
||||||
|
<path d="M6.98704 5.424L6.87604 5.493L6.98704 5.562L7.09804 5.493L6.98704 5.424Z" fill="#00843D"/>
|
||||||
|
<path d="M3.83397 9.109L3.77997 9.181L3.87997 9.251L3.77997 9.321L3.83397 9.393L3.94697 9.405L4.05697 9.326L4.33097 9.488V9.353L4.15897 9.253L4.33097 9.153V9.009L4.05697 9.171L3.94697 9.092L3.83397 9.109Z" fill="#242424"/>
|
||||||
|
<path d="M3.83397 8.636L3.77997 8.708L3.87997 8.778L3.77997 8.848L3.83397 8.92L3.94697 8.932L4.05697 8.853L4.33097 9.015V8.88L4.15897 8.78L4.33097 8.68V8.536L4.05697 8.698L3.94697 8.619L3.83397 8.636Z" fill="#242424"/>
|
||||||
|
<path d="M3.83399 9.856L3.77899 9.783L3.87899 9.71301L3.77899 9.64301L3.83299 9.571L3.94599 9.559L4.05599 9.638L4.32999 9.47601V9.611L4.15799 9.711L4.32999 9.811V9.946L4.05599 9.784L3.94599 9.863L3.83399 9.856Z" fill="#242424"/>
|
||||||
|
<path d="M8.71801 9.109L8.77201 9.181L8.67201 9.251L8.77201 9.321L8.71801 9.393L8.60501 9.405L8.49501 9.326L8.22101 9.488V9.353L8.39301 9.253L8.22101 9.153V9.009L8.49501 9.171L8.60501 9.092L8.71801 9.109Z" fill="#242424"/>
|
||||||
|
<path d="M8.71801 8.636L8.77201 8.708L8.67201 8.778L8.77201 8.848L8.71801 8.92L8.60501 8.932L8.49501 8.853L8.22101 9.015V8.88L8.39301 8.78L8.22101 8.68V8.536L8.49501 8.698L8.60501 8.619L8.71801 8.636Z" fill="#242424"/>
|
||||||
|
<path d="M8.71801 9.856L8.77201 9.784L8.67201 9.714L8.77201 9.644L8.71801 9.572L8.60501 9.56001L8.49501 9.63901L8.22101 9.47701V9.61201L8.39301 9.71201L8.22101 9.812V9.947L8.49501 9.78501L8.60501 9.864L8.71801 9.856Z" fill="#242424"/>
|
||||||
|
<path d="M7.62097 7.826V8.02101H7.77297V8.107H7.92197V7.95H7.78697V7.826H7.62097Z" fill="#242424"/>
|
||||||
|
<path d="M8.06897 8.133V8.328H8.22097V8.414H8.36997V8.257H8.23697V8.133H8.06897Z" fill="#242424"/>
|
||||||
|
<path d="M4.92997 7.826V8.02101H4.77797V8.107H4.62897V7.95H4.76197V7.826H4.92997Z" fill="#242424"/>
|
||||||
|
<path d="M7.62097 10.669V10.469H7.77297V10.383H7.92197V10.54H7.78697V10.669H7.62097Z" fill="#242424"/>
|
||||||
|
<path d="M4.92997 10.669V10.469H4.77797V10.383H4.62897V10.54H4.76197V10.669H4.92997Z" fill="#242424"/>
|
||||||
|
<path d="M8.06897 10.359V10.164H8.22097V10.08H8.36997V10.237H8.23697V10.361L8.06897 10.359Z" fill="#242424"/>
|
||||||
|
<path d="M4.48197 8.133V8.328H4.32997V8.414H4.18097V8.257H4.31397V8.133H4.48197Z" fill="#242424"/>
|
||||||
|
<path d="M4.48197 10.359V10.164H4.32997V10.08H4.18097V10.237H4.31397V10.361L4.48197 10.359Z" fill="#242424"/>
|
||||||
|
<path d="M6.83802 7.821L6.72202 7.716L6.60802 7.816L6.70802 7.906L6.58002 8.022H6.77002L6.83802 7.96L6.90602 8.022H7.09602L6.96802 7.906L7.06802 7.816L6.95402 7.716L6.83802 7.821Z" fill="#242424"/>
|
||||||
|
<path d="M6.27497 7.821L6.15897 7.716L6.04497 7.816L6.14497 7.906L6.01697 8.022H6.20697L6.27497 7.96L6.34297 8.022H6.53297L6.40497 7.906L6.50497 7.816L6.39097 7.716L6.27497 7.821Z" fill="#242424"/>
|
||||||
|
<path d="M5.71399 7.821L5.82999 7.716L5.94399 7.816L5.84399 7.906L5.97199 8.022H5.78199L5.71399 7.96L5.64599 8.022H5.45599L5.58399 7.906L5.48399 7.816L5.59799 7.716L5.71399 7.821Z" fill="#242424"/>
|
||||||
|
<path d="M6.83802 10.671L6.72202 10.776L6.60802 10.676L6.70802 10.586L6.58002 10.47H6.77002L6.83802 10.532L6.90602 10.47H7.09602L6.96802 10.586L7.06802 10.676L6.95402 10.776L6.83802 10.671Z" fill="#242424"/>
|
||||||
|
<path d="M6.27497 10.671L6.15897 10.776L6.04497 10.676L6.14497 10.586L6.01697 10.47H6.20697L6.27497 10.532L6.34297 10.47H6.53297L6.40497 10.586L6.50497 10.676L6.39097 10.776L6.27497 10.671Z" fill="#242424"/>
|
||||||
|
<path d="M5.71399 10.671L5.82999 10.776L5.94399 10.676L5.84399 10.586L5.97199 10.47H5.78199L5.71399 10.532L5.64599 10.47H5.45599L5.58399 10.586L5.48399 10.676L5.59799 10.776L5.71399 10.671Z" fill="#242424"/>
|
||||||
|
<path d="M4.31599 9.35701V9.45701L4.05599 9.30301L3.94299 9.38501L3.84299 9.37401L3.79999 9.31901L3.89999 9.24601L3.79999 9.17501L3.84199 9.12001L3.94199 9.10901L4.05499 9.19101L4.31499 9.03701V9.13701L4.12899 9.24701L4.31599 9.35701Z" fill="#00843D"/>
|
||||||
|
<path d="M4.31599 8.88801V8.98801L4.05599 8.83401L3.94299 8.91601L3.84299 8.90501L3.79999 8.85001L3.89999 8.77701L3.79999 8.70101L3.84199 8.64601L3.94199 8.63501L4.05499 8.71701L4.31499 8.56301V8.66301L4.12899 8.77301L4.31599 8.88801Z" fill="#00843D"/>
|
||||||
|
<path d="M4.31596 9.60501V9.505L4.05596 9.659L3.94296 9.57701L3.84297 9.58801L3.80096 9.64301L3.90096 9.71601L3.80096 9.78901L3.84297 9.84401L3.94296 9.85501L4.05596 9.773L4.31596 9.92701V9.82701L4.12996 9.717L4.31596 9.60501Z" fill="#00843D"/>
|
||||||
|
<path d="M8.23596 9.35701V9.45701L8.49596 9.30301L8.60896 9.38501L8.70896 9.37401L8.75096 9.31901L8.65096 9.24601L8.75096 9.17301L8.70896 9.11801L8.60896 9.10701L8.49596 9.18901L8.23596 9.03501V9.13501L8.42196 9.24501L8.23596 9.35701Z" fill="#00843D"/>
|
||||||
|
<path d="M8.23596 8.88801V8.98801L8.49596 8.83401L8.60896 8.91601L8.70896 8.90501L8.75096 8.85001L8.65096 8.77701L8.75096 8.70401L8.70896 8.64901L8.60896 8.63801L8.49596 8.72001L8.23596 8.56601V8.66601L8.42196 8.77601L8.23596 8.88801Z" fill="#00843D"/>
|
||||||
|
<path d="M8.23596 9.60501V9.505L8.49596 9.659L8.60896 9.57701L8.70896 9.58801L8.75096 9.64301L8.65096 9.71601L8.75096 9.78901L8.70896 9.84401L8.60896 9.85501L8.49596 9.773L8.23596 9.92701V9.82701L8.42196 9.717L8.23596 9.60501Z" fill="#00843D"/>
|
||||||
|
<path d="M7.77396 7.84V7.964H7.90696V8.092H7.78896V8.006H7.63696V7.84H7.77396Z" fill="#00843D"/>
|
||||||
|
<path d="M8.22201 8.14701V8.27101H8.35501V8.39901H8.24001V8.31301H8.08801V8.14701H8.22201Z" fill="#00843D"/>
|
||||||
|
<path d="M4.77698 7.84V7.964H4.64398V8.092H4.76298V8.006H4.91498V7.84H4.77698Z" fill="#00843D"/>
|
||||||
|
<path d="M7.77396 10.65V10.526H7.90696V10.4H7.78896V10.486H7.63696V10.65H7.77396Z" fill="#00843D"/>
|
||||||
|
<path d="M4.77796 10.65V10.526H4.64496V10.4H4.76396V10.486H4.91596V10.65H4.77796Z" fill="#00843D"/>
|
||||||
|
<path d="M8.22201 10.345V10.221H8.35501V10.093H8.24001V10.179H8.08801V10.345H8.22201Z" fill="#00843D"/>
|
||||||
|
<path d="M4.331 8.14701V8.27101H4.198V8.39901H4.317V8.31301H4.469V8.14701H4.331Z" fill="#00843D"/>
|
||||||
|
<path d="M4.331 10.345V10.221H4.198V10.093H4.317V10.179H4.469V10.345H4.331Z" fill="#00843D"/>
|
||||||
|
<path d="M6.72101 7.73601L6.83701 7.84101L6.95301 7.73601L7.04401 7.81501L6.94401 7.90501L7.05601 8.00501H6.91001L6.83501 7.93701L6.76001 8.00501H6.61401L6.72601 7.90501L6.62601 7.81501L6.71701 7.73601H6.72101Z" fill="#00843D"/>
|
||||||
|
<path d="M6.15998 7.73601L6.27598 7.84101L6.39198 7.73601L6.48298 7.81501L6.38298 7.90501L6.49498 8.00501H6.34898L6.27398 7.93701L6.19898 8.00501H6.05298L6.16498 7.90501L6.06498 7.81501L6.15998 7.73601Z" fill="#00843D"/>
|
||||||
|
<path d="M5.83 7.73601L5.71399 7.84101L5.59799 7.73601L5.507 7.81501L5.607 7.90501L5.495 8.00501H5.641L5.71599 7.93701L5.791 8.00501H5.937L5.825 7.90501L5.925 7.81501L5.83 7.73601Z" fill="#00843D"/>
|
||||||
|
<path d="M6.72101 10.757L6.83701 10.652L6.95301 10.757L7.04401 10.678L6.94401 10.588L7.05601 10.488H6.91001L6.83501 10.556L6.76001 10.488H6.61401L6.72601 10.588L6.62601 10.678L6.71701 10.757H6.72101Z" fill="#00843D"/>
|
||||||
|
<path d="M6.15998 10.757L6.27598 10.652L6.39198 10.757L6.48298 10.678L6.38298 10.588L6.49498 10.488H6.34898L6.27398 10.556L6.19898 10.488H6.05298L6.16498 10.588L6.06498 10.678L6.15998 10.757Z" fill="#00843D"/>
|
||||||
|
<path d="M5.83 10.757L5.71399 10.652L5.59799 10.757L5.507 10.678L5.607 10.588L5.495 10.488H5.641L5.71599 10.556L5.791 10.488H5.937L5.825 10.588L5.925 10.678L5.83 10.757Z" fill="#00843D"/>
|
||||||
|
<path d="M4.763 10.178V10.485H7.791V10.178H8.239V8.313H7.791V8.006H4.763V8.313H4.315V10.178H4.763Z" fill="#242424"/>
|
||||||
|
<path d="M4.77903 8.02V8.33101H4.33203V10.168H4.78003V10.475H7.77203V10.168H8.22003V8.33101H7.77203V8.024H4.77903V8.02ZM4.97203 8.138H7.58003V8.43801L7.68803 8.512H8.09403V9.988H7.68603L7.58003 10.06V10.36H4.97203V10.06L4.86403 9.986H4.45603V8.509H4.86203L4.97203 8.43501V8.135V8.138Z" fill="#FFC72C"/>
|
||||||
|
<path d="M4.98703 8.15401V8.42601L5.38003 8.15401H4.98703ZM7.17003 8.15401L7.56303 8.42601V8.15401H7.17003ZM4.47003 8.52401V8.77801L4.84003 8.52401H4.47003ZM7.70403 8.52401L8.07603 8.78001V8.52401H7.70403ZM8.07603 9.71401L7.70503 9.97001H8.07703L8.07603 9.71401ZM4.47003 9.71401V9.97001H4.84003L4.47003 9.71401ZM4.98403 10.068V10.338H5.37503L4.98403 10.068ZM7.56003 10.068L7.16903 10.338H7.56003V10.068Z" fill="#D22630"/>
|
||||||
|
<path d="M7.14499 8.15401L8.07899 8.79801V9.69801L7.14499 10.342H5.40598L4.47198 9.69801V8.79801L5.40598 8.15401H7.14499Z" fill="#00843D"/>
|
||||||
|
<path d="M4.69501 9.80001L4.58801 9.68401L4.68801 9.57501L4.58801 9.46601L4.68801 9.35701L4.58801 9.24801L4.68801 9.13901L4.58801 9.03001L4.68801 8.92101L4.58801 8.81201L4.69501 8.69601H7.85701L7.96401 8.81201L7.86401 8.92101L7.96401 9.03001L7.86401 9.13901L7.96401 9.24801L7.86401 9.35701L7.96401 9.46601L7.86401 9.57501L7.96401 9.68401L7.85701 9.80001H4.69501ZM6.87001 8.29401L6.74501 8.19401L6.62801 8.28801L6.51101 8.19401L6.39401 8.28801L6.27701 8.19401L6.16001 8.28801L6.04301 8.19401L5.92601 8.28801L5.80901 8.19401L5.68401 8.29401V10.2L5.80901 10.3L5.92601 10.206L6.04301 10.3L6.16001 10.206L6.27701 10.3L6.39401 10.206L6.51101 10.3L6.62801 10.206L6.74501 10.3L6.87001 10.2V8.29401Z" fill="#242424"/>
|
||||||
|
<path d="M6.61906 8.30001L6.51006 8.21201L6.40106 8.30001V10.192L6.51006 10.28L6.61906 10.192V8.30001Z" fill="#FFC72C"/>
|
||||||
|
<path d="M6.15202 8.30001L6.04302 8.21201L5.93402 8.30001V10.192L6.04302 10.28L6.15202 10.192V8.30001Z" fill="#FFC72C"/>
|
||||||
|
<path d="M4.70203 9.78501L4.60803 9.68501L4.70203 9.58501H7.84603L7.94003 9.68501L7.84603 9.78501H4.70203Z" fill="#FFC72C"/>
|
||||||
|
<path d="M7.84603 9.144L7.94003 9.244L7.84603 9.344H4.70203L4.60803 9.244L4.70203 9.144H7.84603Z" fill="#FFC72C"/>
|
||||||
|
<path d="M7.84603 8.91201L7.94003 8.81201L7.84603 8.71201H4.70203L4.60803 8.81201L4.70203 8.91201H7.84603Z" fill="#FFC72C"/>
|
||||||
|
<path d="M6.85301 8.30001L6.74401 8.21201L6.63501 8.30001V10.192L6.74401 10.28L6.85301 10.192V8.30001Z" fill="#D22630"/>
|
||||||
|
<path d="M5.91801 8.30001L5.80901 8.21201L5.70001 8.30001V10.192L5.80901 10.28L5.91801 10.192V8.30001Z" fill="#D22630"/>
|
||||||
|
<path d="M4.70203 9.567L4.60803 9.467L4.70203 9.367H7.84603L7.94003 9.467L7.84603 9.567H4.70203Z" fill="#D22630"/>
|
||||||
|
<path d="M4.70203 9.13001L4.60803 9.03001L4.70203 8.93001H7.84603L7.94003 9.03001L7.84603 9.13001H4.70203Z" fill="#D22630"/>
|
||||||
|
<path d="M6.38505 10.193L6.27605 10.281L6.16705 10.193V8.30001L6.27605 8.21201L6.38505 8.30001V10.193Z" fill="#D22630"/>
|
||||||
|
<path d="M7.332 8.33601H5.211V8.49301H4.94V9.99301H5.211V10.15H7.34V9.99701H7.611V8.49701H7.34V8.34001L7.332 8.33601Z" fill="#242424"/>
|
||||||
|
<path d="M5.22702 8.35201V8.50901H4.95502V9.98801H5.22702V10.145H5.45002L5.00602 9.79801V8.69901L5.45002 8.35201H5.22702ZM7.10302 8.35201L7.54502 8.69901V9.79401L7.10302 10.141H7.32602V9.98801H7.59602V8.50901H7.32602V8.35201H7.10302Z" fill="#D22630"/>
|
||||||
|
<path d="M5.47503 8.35201L5.02203 8.70601V9.78801L5.47503 10.142H7.07503L7.53003 9.78801V8.70601L7.07903 8.35201H5.47503ZM5.49803 8.41201H7.05803L7.47003 8.73501V9.75901L7.05803 10.079H5.49703L5.08703 9.75801V8.734L5.49803 8.41201Z" fill="#00843D"/>
|
||||||
|
<path d="M5.90902 9.77501L5.97902 9.80301L5.99202 9.87901L5.90402 9.95101L6.03102 10.066H5.90802L5.82102 9.98601L5.73302 10.065H5.61102L5.73802 9.95001L5.65002 9.87801L5.66302 9.80201L5.73302 9.77401L5.82102 9.84001L5.90902 9.77501Z" fill="#00843D"/>
|
||||||
|
<path d="M6.36403 9.77501L6.43403 9.80301L6.44703 9.87901L6.35903 9.95101L6.48603 10.066H6.36303L6.27503 9.98701L6.18703 10.066H6.06403L6.19103 9.95101L6.10303 9.87901L6.11603 9.80301L6.18603 9.77501L6.27403 9.84101L6.36403 9.77501Z" fill="#00843D"/>
|
||||||
|
<path d="M6.64202 9.77501L6.57202 9.80301L6.55902 9.87901L6.64702 9.95101L6.52002 10.066H6.64302L6.73102 9.98701L6.81902 10.066H6.94202L6.81502 9.95101L6.90302 9.87901L6.89002 9.80301L6.82002 9.77501L6.73202 9.84101L6.64202 9.77501Z" fill="#00843D"/>
|
||||||
|
<path d="M5.90902 8.71701L5.97902 8.68901L5.99202 8.61301L5.90402 8.54101L6.03102 8.42601H5.90802L5.82002 8.50501L5.73202 8.42601H5.61102L5.73802 8.54101L5.65002 8.61301L5.66102 8.68801L5.73102 8.71601L5.81902 8.65001L5.90902 8.71701Z" fill="#00843D"/>
|
||||||
|
<path d="M6.36403 8.71701L6.43403 8.68901L6.44703 8.61301L6.35903 8.54101L6.48603 8.42601H6.36303L6.27503 8.50501L6.18703 8.42601H6.06403L6.19103 8.54101L6.10303 8.61301L6.11603 8.68901L6.18603 8.71701L6.27403 8.65101L6.36403 8.71701Z" fill="#00843D"/>
|
||||||
|
<path d="M6.64202 8.717L6.57202 8.688L6.55902 8.612L6.64702 8.54L6.52002 8.425H6.64302L6.73102 8.504L6.81902 8.425H6.94202L6.81502 8.54L6.90302 8.612L6.88702 8.688L6.81702 8.716L6.72902 8.65L6.64202 8.717Z" fill="#00843D"/>
|
||||||
|
<path d="M7.44902 8.83901L7.37902 8.89301L7.44902 8.94701V9.03601L7.33802 8.95601L7.26102 9.02101L7.17903 9.01101L7.15002 8.96101L7.22103 8.89501L7.15002 8.82901L7.17903 8.77901L7.26102 8.76901L7.33802 8.83401L7.44502 8.75201L7.44902 8.83901Z" fill="#00843D"/>
|
||||||
|
<path d="M7.44905 9.19201L7.37905 9.246L7.44905 9.3V9.38901L7.34205 9.307L7.26505 9.37201L7.18305 9.36201L7.15405 9.312L7.22505 9.246L7.15405 9.18L7.18305 9.13L7.26505 9.12L7.34205 9.18501L7.44905 9.103V9.19201Z" fill="#00843D"/>
|
||||||
|
<path d="M7.44905 9.65401L7.37905 9.60001L7.44905 9.54601V9.45701L7.34205 9.53901L7.26505 9.47401L7.18305 9.48401L7.15405 9.53401L7.22505 9.60001L7.15405 9.66601L7.18305 9.71601L7.26505 9.72601L7.34205 9.66101L7.44905 9.74301V9.65401Z" fill="#00843D"/>
|
||||||
|
<path d="M5.10303 8.83901L5.17303 8.89301L5.10303 8.94701V9.03601L5.21003 8.95401L5.28703 9.01901L5.36903 9.00901L5.39803 8.95901L5.32703 8.89301L5.39803 8.82701L5.36903 8.77701L5.28703 8.76701L5.21003 8.83201L5.10303 8.75001V8.83901Z" fill="#00843D"/>
|
||||||
|
<path d="M5.10303 9.19201L5.17303 9.246L5.10303 9.3V9.38901L5.21003 9.307L5.28703 9.37201L5.36903 9.36201L5.39803 9.312L5.32703 9.246L5.39803 9.18L5.36903 9.13L5.28703 9.12L5.21003 9.18501L5.10303 9.103V9.19201Z" fill="#00843D"/>
|
||||||
|
<path d="M5.10303 9.65401L5.17303 9.60001L5.10303 9.54601V9.45701L5.21003 9.53901L5.28703 9.47401L5.36903 9.48401L5.39803 9.53401L5.32703 9.60001L5.39803 9.66601L5.36903 9.71601L5.28703 9.72601L5.21003 9.66101L5.10303 9.74301V9.65401Z" fill="#00843D"/>
|
||||||
|
<path d="M5.50299 8.426L5.10799 8.735L5.20799 8.814L5.28199 8.752L5.38199 8.764L5.41999 8.829L5.35199 8.892L5.41999 8.955L5.38199 9.02L5.28199 9.031L5.20799 8.971L5.10199 9.054V9.082L5.20799 9.165L5.28199 9.105L5.38199 9.116L5.41999 9.181L5.35199 9.244L5.41999 9.307L5.38199 9.374L5.28199 9.385L5.20799 9.323L5.10199 9.406V9.436L5.20799 9.519L5.28199 9.457L5.38199 9.469L5.41999 9.534L5.35199 9.597L5.41999 9.66L5.38199 9.725L5.28199 9.737L5.20799 9.675L5.10799 9.753L5.50299 10.062H5.58999L5.71699 9.947L5.63599 9.88L5.65099 9.788L5.73599 9.755L5.82299 9.818L5.90799 9.755L5.99299 9.788L6.00999 9.88L5.92699 9.947L6.04999 10.056L6.17299 9.947L6.08999 9.88L6.10499 9.788L6.19199 9.755L6.27699 9.818L6.36399 9.755L6.44899 9.788L6.46399 9.88L6.38299 9.947L6.50399 10.058L6.62699 9.947L6.54599 9.88L6.56199 9.789L6.64899 9.756L6.73399 9.819L6.81899 9.756L6.90599 9.789L6.92099 9.881L6.83999 9.948L6.96699 10.063H7.05199L7.44699 9.754L7.34699 9.676L7.27499 9.738L7.17499 9.726L7.13499 9.661L7.20299 9.598L7.13499 9.535L7.17499 9.47L7.27499 9.458L7.34699 9.52L7.45299 9.437V9.407L7.34699 9.324L7.27499 9.386L7.17499 9.375L7.13499 9.308L7.20299 9.245L7.13499 9.182L7.17499 9.117L7.27499 9.106L7.34699 9.166L7.45299 9.085V9.053L7.34699 8.972L7.27499 9.032L7.17499 9.021L7.13499 8.956L7.20299 8.893L7.13499 8.83L7.17499 8.765L7.27499 8.753L7.34699 8.815L7.44699 8.737L7.04699 8.427H6.96199L6.83499 8.542L6.91599 8.609L6.90099 8.701L6.81399 8.736L6.72899 8.673L6.64399 8.736L6.56199 8.699L6.54699 8.607L6.62799 8.54L6.50699 8.431L6.38399 8.54L6.46499 8.607L6.44999 8.699L6.36499 8.734L6.27799 8.671L6.19299 8.734L6.10599 8.699L6.09099 8.607L6.17399 8.54L6.05099 8.431L5.92799 8.54L6.01099 8.607L5.99399 8.699L5.90899 8.734L5.82399 8.671L5.73699 8.734L5.65199 8.699L5.63699 8.607L5.71799 8.54L5.58999 8.425L5.50299 8.426ZM5.10299 9.21V9.282L5.14799 9.245L5.10299 9.21Z" fill="#D22630"/>
|
||||||
|
<path d="M5.82198 10.007L5.75598 10.065H5.88598L5.82198 10.007Z" fill="white"/>
|
||||||
|
<path d="M6.275 10.007L6.211 10.065H6.341L6.275 10.007Z" fill="white"/>
|
||||||
|
<path d="M6.73 10.007L6.664 10.065H6.796L6.73 10.007Z" fill="white"/>
|
||||||
|
<path d="M5.75397 8.42601L5.82197 8.48601L5.88797 8.42601H5.75397Z" fill="white"/>
|
||||||
|
<path d="M6.20801 8.42601L6.27401 8.48601L6.34201 8.42601H6.20801Z" fill="white"/>
|
||||||
|
<path d="M6.664 8.42601L6.73 8.48601L6.796 8.42601H6.664Z" fill="white"/>
|
||||||
|
<path d="M7.44399 8.85801L7.39899 8.89301L7.44399 8.92701V8.85801Z" fill="white"/>
|
||||||
|
<path d="M7.44399 9.21001L7.39899 9.24501L7.44399 9.28001V9.21001Z" fill="white"/>
|
||||||
|
<path d="M7.44399 9.56701L7.39899 9.60201L7.44399 9.63701V9.56701Z" fill="white"/>
|
||||||
|
<path d="M5.10199 8.85601V8.92801L5.14699 8.89301L5.10199 8.85601Z" fill="white"/>
|
||||||
|
<path d="M5.10199 9.21001V9.28201L5.14699 9.24501L5.10199 9.21001Z" fill="white"/>
|
||||||
|
<path d="M5.10199 9.56301V9.63501L5.14699 9.60001L5.10199 9.56301Z" fill="white"/>
|
||||||
|
<path d="M6.664 9.12701V9.00301H6.527V8.86301H6.027V9.00301H5.89V9.12901H5.698V9.36501H5.887V9.49101H6.024V9.62901H6.524V9.49101H6.661V9.36301H6.858V9.12701H6.664Z" fill="#242424"/>
|
||||||
|
<path d="M6.26801 8.87701V9.02001L6.05101 9.13501V9.23501H5.71301V9.13501H5.90201V9.00901H6.04001V8.87101L6.26801 8.87701Z" fill="#FFC72C"/>
|
||||||
|
<path d="M6.28302 9.614V9.471L6.50002 9.356V9.256H6.83802V9.356H6.64902V9.482H6.51202V9.62L6.28302 9.614Z" fill="#FFC72C"/>
|
||||||
|
<path d="M6.50002 9.238V9.13801L6.28302 9.023V8.88H6.51202V9.01801H6.64902V9.144H6.83802V9.24401L6.50002 9.238Z" fill="white"/>
|
||||||
|
<path d="M5.71301 9.25301H6.05101V9.35301L6.26801 9.46801V9.61101H6.04001V9.47301H5.90301V9.34701H5.71401L5.71301 9.25301Z" fill="white"/>
|
||||||
|
<path d="M6.06702 9.25301V9.35301L6.26702 9.46001V9.26001L6.06702 9.25301Z" fill="#D22630"/>
|
||||||
|
<path d="M6.26799 9.036L6.06799 9.143V9.243H6.26799V9.036Z" fill="#00843D"/>
|
||||||
|
<path d="M6.48497 9.239V9.13901L6.28497 9.03201V9.232L6.48497 9.239Z" fill="#D22630"/>
|
||||||
|
<path d="M6.28302 9.45501L6.48302 9.34801V9.24801H6.28302V9.45501Z" fill="#00843D"/>
|
||||||
|
<path d="M4.44502 11.753V12.143H4.04502V12.497H3.64502V13.504H4.04502V13.858H4.44502V14.248H5.89302L6.14802 14.391L6.02602 14.46H5.51002L5.46502 14.413H5.93302L5.80102 14.289H5.13202L5.43202 14.584H6.06002L6.27402 14.464L6.48802 14.584H7.11602L7.41602 14.289H6.74702L6.61502 14.413H7.08602L7.04102 14.46H6.52502L6.40302 14.391L6.65802 14.248H8.10602V13.858H8.50602V13.504H8.90602V12.497H8.50602V12.143H8.10602V11.753H6.66002L6.40502 11.61L6.52702 11.541H7.04302L7.08802 11.588H6.62002L6.75202 11.712H7.42102L7.12102 11.417H6.48602L6.27202 11.537L6.05802 11.417H5.43002L5.13002 11.712H5.79902L5.93102 11.588H5.46302L5.50802 11.541H6.02402L6.14602 11.61L5.89102 11.753H4.44502Z" fill="#D22630"/>
|
||||||
|
<path d="M6.65403 14.233H8.09103V13.843H8.49103V13.489H8.89103V12.511H8.49103V12.158H8.09103V11.771H6.65403L6.05403 11.434H5.43603L5.16203 11.7H5.78903L5.88903 11.6H5.42203L5.49403 11.524H6.02303L6.69903 11.905H7.93403V12.295H8.33403V12.649H8.73403V13.349H8.33403V13.703H7.93403V14.093H6.70503L6.02903 14.472H5.50003L5.42803 14.398H5.89503L5.79503 14.298H5.16803L5.44203 14.564H6.06003L6.65403 14.233ZM5.84403 14.094H4.60903V13.704H4.20903V13.35H3.80903V12.65H4.20903V12.296H4.60903V11.906H5.84403L6.52203 11.525H7.04903L7.12103 11.601H6.65603L6.75603 11.701H7.38303L7.10903 11.435H6.49103L5.89103 11.772H4.46003V12.162H4.06003V12.515H3.66003V13.493H4.06003V13.847H4.46003V14.237H5.89703L6.49704 14.574H7.11503L7.38903 14.308H6.75803L6.65803 14.408H7.12303L7.05103 14.482H6.52403L5.84403 14.094Z" fill="#FFC72C"/>
|
||||||
|
<path d="M7.82099 13.591V13.981H6.67299L6.27299 14.204L5.87299 13.981H4.72999V13.591H4.32999V13.237H3.92999V12.763H4.32999V12.409H4.72999V12.019H5.87799L6.27799 11.796L6.67799 12.019H7.82599V12.409H8.22599V12.763H8.62599V13.237H8.22599V13.591H7.82099Z" fill="#00843D"/>
|
||||||
|
<path d="M4.88 13.454V13.831H5.511L4.88 13.44V13.454Z" fill="#242424"/>
|
||||||
|
<path d="M4.88 12.546V12.169H5.511L4.88 12.56V12.546Z" fill="#242424"/>
|
||||||
|
<path d="M7.67299 13.454V13.831H7.04199L7.67299 13.441V13.454Z" fill="#242424"/>
|
||||||
|
<path d="M7.67299 12.546V12.169H7.04199L7.67299 12.56V12.546Z" fill="#242424"/>
|
||||||
|
<path d="M4.89502 13.468L5.46002 13.818H4.89502V13.468Z" fill="#D22630"/>
|
||||||
|
<path d="M4.89502 12.533L5.46002 12.183H4.89502V12.533Z" fill="#D22630"/>
|
||||||
|
<path d="M7.65503 13.468L7.09003 13.818H7.65503V13.468Z" fill="#D22630"/>
|
||||||
|
<path d="M7.65503 12.533L7.09003 12.183H7.65503V12.533Z" fill="#D22630"/>
|
||||||
|
<path d="M5.68499 12.897V12.704H5.61499L5.27699 12.504L4.94299 12.699H4.87299V12.892H4.71399V13.099H4.87299V13.292H4.94299L5.28099 13.492L5.61899 13.292H5.68899V13.099H5.92499V12.892L5.68499 12.897Z" fill="#242424"/>
|
||||||
|
<path d="M5.27799 12.524L5.58699 12.704H4.96899L5.27799 12.524ZM5.58699 13.297L5.27799 13.477L4.96899 13.297H5.58699Z" fill="#D22630"/>
|
||||||
|
<path d="M5.51098 12.911V13.093H5.12598V12.915L5.51098 12.911Z" fill="#D22630"/>
|
||||||
|
<path d="M5.66997 13.104V13.282H5.28497V13.104H5.66997Z" fill="#FFC72C"/>
|
||||||
|
<path d="M5.26897 13.104V13.282H4.88397V13.104H5.26897Z" fill="#FFC72C"/>
|
||||||
|
<path d="M5.91198 12.91V13.092H5.52698V12.914L5.91198 12.91Z" fill="#FFC72C"/>
|
||||||
|
<path d="M5.10699 12.91V13.092H4.72198V12.914L5.10699 12.91Z" fill="#FFC72C"/>
|
||||||
|
<path d="M5.66997 12.718V12.896H5.28497V12.718H5.66997Z" fill="#FFC72C"/>
|
||||||
|
<path d="M5.26897 12.718V12.896H4.88397V12.718H5.26897Z" fill="#FFC72C"/>
|
||||||
|
<path d="M5.00399 12.951V13.051H4.83099V12.951H5.00399Z" fill="#242424"/>
|
||||||
|
<path d="M5.16302 12.758V12.858H4.99402V12.758H5.16302Z" fill="#242424"/>
|
||||||
|
<path d="M5.56399 12.758V12.858H5.39099V12.758H5.56399Z" fill="#242424"/>
|
||||||
|
<path d="M5.40799 12.951V13.051H5.23499V12.951H5.40799Z" fill="#242424"/>
|
||||||
|
<path d="M5.80601 12.951V13.051H5.63501V12.951H5.80601Z" fill="#242424"/>
|
||||||
|
<path d="M5.56399 13.144V13.244H5.39099V13.144H5.56399Z" fill="#242424"/>
|
||||||
|
<path d="M5.16302 13.144V13.244H4.99402V13.144H5.16302Z" fill="#242424"/>
|
||||||
|
<path d="M4.98896 12.966H4.84796V13.035H4.98896V12.966Z" fill="white"/>
|
||||||
|
<path d="M5.14698 12.777H5.00598V12.846H5.14698V12.777Z" fill="white"/>
|
||||||
|
<path d="M5.54798 12.777H5.40698V12.846H5.54798V12.777Z" fill="white"/>
|
||||||
|
<path d="M5.38996 12.966H5.24896V13.035H5.38996V12.966Z" fill="white"/>
|
||||||
|
<path d="M5.78999 12.966H5.64899V13.035H5.78999V12.966Z" fill="white"/>
|
||||||
|
<path d="M5.54798 13.161H5.40698V13.23H5.54798V13.161Z" fill="white"/>
|
||||||
|
<path d="M5.14698 13.161H5.00598V13.23H5.14698V13.161Z" fill="white"/>
|
||||||
|
<path d="M6.86604 12.894V12.704H6.93704L7.27504 12.504L7.61304 12.704H7.68304V12.894H7.84204V13.104H7.68304V13.294H7.61304L7.27504 13.494L6.93704 13.294H6.86704V13.104H6.62504V12.894H6.86604Z" fill="#242424"/>
|
||||||
|
<path d="M7.27505 12.524L6.96605 12.704H7.58405L7.27505 12.524ZM6.96605 13.297L7.27505 13.477L7.58405 13.297H6.96605Z" fill="#D22630"/>
|
||||||
|
<path d="M7.04103 12.912V13.09H7.42603V12.912H7.04103Z" fill="#D22630"/>
|
||||||
|
<path d="M6.88203 13.105V13.283H7.26703V13.105H6.88203Z" fill="#FFC72C"/>
|
||||||
|
<path d="M7.28303 13.105V13.283H7.66803V13.105H7.28303Z" fill="#FFC72C"/>
|
||||||
|
<path d="M6.641 12.912V13.09H7.026V12.912H6.641Z" fill="#FFC72C"/>
|
||||||
|
<path d="M7.44203 12.912V13.09H7.82703V12.912H7.44203Z" fill="#FFC72C"/>
|
||||||
|
<path d="M6.88203 12.72V12.898H7.26703V12.72H6.88203Z" fill="#FFC72C"/>
|
||||||
|
<path d="M7.28303 12.72V12.898H7.66803V12.72H7.28303Z" fill="#FFC72C"/>
|
||||||
|
<path d="M7.54807 12.95V13.05H7.72107V12.95H7.54807Z" fill="#242424"/>
|
||||||
|
<path d="M7.38907 12.758V12.858H7.56207V12.758H7.38907Z" fill="#242424"/>
|
||||||
|
<path d="M6.98807 12.758V12.858H7.16107V12.758H6.98807Z" fill="#242424"/>
|
||||||
|
<path d="M7.14707 12.95V13.05H7.32007V12.95H7.14707Z" fill="#242424"/>
|
||||||
|
<path d="M6.74704 12.95V13.05H6.92004V12.95H6.74704Z" fill="#242424"/>
|
||||||
|
<path d="M6.98807 13.143V13.243H7.16107V13.143H6.98807Z" fill="#242424"/>
|
||||||
|
<path d="M7.38907 13.143V13.243H7.56207V13.143H7.38907Z" fill="#242424"/>
|
||||||
|
<path d="M7.56304 12.966H7.70404V13.035H7.56304V12.966Z" fill="white"/>
|
||||||
|
<path d="M7.40404 12.774H7.54504V12.843H7.40404V12.774Z" fill="white"/>
|
||||||
|
<path d="M7.00304 12.774H7.14404V12.843H7.00304V12.774Z" fill="white"/>
|
||||||
|
<path d="M7.16204 12.966H7.30304V13.035H7.16204V12.966Z" fill="white"/>
|
||||||
|
<path d="M6.76202 12.966H6.90302V13.035H6.76202V12.966Z" fill="white"/>
|
||||||
|
<path d="M7.00304 13.159H7.14404V13.228H7.00304V13.159Z" fill="white"/>
|
||||||
|
<path d="M7.40404 13.159H7.54504V13.228H7.40404V13.159Z" fill="white"/>
|
||||||
|
<path d="M6.684 12.575V12.768H6.614L6.276 12.968L5.942 12.773H5.872V12.58H5.672V12.373H5.872V12.18H5.942L6.28 11.98L6.618 12.18H6.688V12.373H6.888V12.58L6.684 12.575Z" fill="#242424"/>
|
||||||
|
<path d="M6.27598 12.948L6.58498 12.768H5.96698L6.27598 12.948ZM6.58498 12.175L6.27598 11.995L5.96698 12.175H6.58498Z" fill="#FFC72C"/>
|
||||||
|
<path d="M6.66698 12.367V12.189H6.28198V12.367H6.66698Z" fill="#D22630"/>
|
||||||
|
<path d="M6.26799 12.367V12.189H5.883V12.367H6.26799Z" fill="#D22630"/>
|
||||||
|
<path d="M6.86901 12.561V12.383H6.48401V12.561H6.86901Z" fill="#D22630"/>
|
||||||
|
<path d="M6.46801 12.561V12.383H6.08301V12.561H6.46801Z" fill="#D22630"/>
|
||||||
|
<path d="M6.06701 12.561V12.383H5.68201V12.561H6.06701Z" fill="#D22630"/>
|
||||||
|
<path d="M6.66698 12.753V12.575H6.28198V12.753H6.66698Z" fill="#D22630"/>
|
||||||
|
<path d="M6.26799 12.753V12.575H5.883V12.753H6.26799Z" fill="#D22630"/>
|
||||||
|
<path d="M6.16104 12.229V12.329H5.98804V12.229H6.16104Z" fill="#242424"/>
|
||||||
|
<path d="M6.56204 12.229V12.329H6.38904V12.229H6.56204Z" fill="#242424"/>
|
||||||
|
<path d="M5.96103 12.422V12.522H5.78802V12.422H5.96103Z" fill="#242424"/>
|
||||||
|
<path d="M6.36203 12.422V12.522H6.18903V12.422H6.36203Z" fill="#242424"/>
|
||||||
|
<path d="M6.76205 12.422V12.522H6.58905V12.422H6.76205Z" fill="#242424"/>
|
||||||
|
<path d="M6.16104 12.614V12.714H5.98804V12.614H6.16104Z" fill="#242424"/>
|
||||||
|
<path d="M6.56204 12.614V12.714H6.38904V12.614H6.56204Z" fill="#242424"/>
|
||||||
|
<path d="M6.14604 12.244H6.00604V12.313H6.14704L6.14604 12.244Z" fill="white"/>
|
||||||
|
<path d="M6.54701 12.244H6.40601V12.313H6.54701V12.244Z" fill="white"/>
|
||||||
|
<path d="M5.94502 12.436H5.80402V12.505H5.94502V12.436Z" fill="white"/>
|
||||||
|
<path d="M6.34602 12.436H6.20502V12.505H6.34602V12.436Z" fill="white"/>
|
||||||
|
<path d="M6.74702 12.436H6.60602V12.505H6.74702V12.436Z" fill="white"/>
|
||||||
|
<path d="M6.14604 12.63H6.00604V12.699H6.14704L6.14604 12.63Z" fill="white"/>
|
||||||
|
<path d="M6.54701 12.63H6.40601V12.699H6.54701V12.63Z" fill="white"/>
|
||||||
|
<path d="M6.684 13.633V13.826H6.614L6.276 14.026L5.942 13.831H5.872V13.638H5.672V13.431H5.872V13.238H5.942L6.28 13.038L6.618 13.238H6.688V13.431H6.888V13.638L6.684 13.633Z" fill="#242424"/>
|
||||||
|
<path d="M6.27598 14.006L6.58498 13.826H5.96698L6.27598 14.006ZM6.58498 13.233L6.27598 13.053L5.96698 13.233H6.58498Z" fill="#FFC72C"/>
|
||||||
|
<path d="M6.66698 13.425V13.247H6.28198V13.425H6.66698Z" fill="#D22630"/>
|
||||||
|
<path d="M6.26799 13.425V13.247H5.883V13.425H6.26799Z" fill="#D22630"/>
|
||||||
|
<path d="M6.86901 13.619V13.441H6.48401V13.619H6.86901Z" fill="#D22630"/>
|
||||||
|
<path d="M6.46801 13.619V13.441H6.08301V13.619H6.46801Z" fill="#D22630"/>
|
||||||
|
<path d="M6.06701 13.619V13.441H5.68201V13.619H6.06701Z" fill="#D22630"/>
|
||||||
|
<path d="M6.66698 13.811V13.633H6.28198V13.811H6.66698Z" fill="#D22630"/>
|
||||||
|
<path d="M6.26799 13.811V13.633H5.883V13.811H6.26799Z" fill="#D22630"/>
|
||||||
|
<path d="M6.16104 13.287V13.387H5.98804V13.287H6.16104Z" fill="#242424"/>
|
||||||
|
<path d="M6.56204 13.287V13.387H6.38904V13.287H6.56204Z" fill="#242424"/>
|
||||||
|
<path d="M5.96103 13.48V13.58H5.78802V13.48H5.96103Z" fill="#242424"/>
|
||||||
|
<path d="M6.36203 13.48V13.58H6.18903V13.48H6.36203Z" fill="#242424"/>
|
||||||
|
<path d="M6.76205 13.48V13.58H6.58905V13.48H6.76205Z" fill="#242424"/>
|
||||||
|
<path d="M6.16104 13.672V13.772H5.98804V13.672H6.16104Z" fill="#242424"/>
|
||||||
|
<path d="M6.56204 13.672V13.772H6.38904V13.672H6.56204Z" fill="#242424"/>
|
||||||
|
<path d="M6.14604 13.302H6.00604V13.371H6.14704L6.14604 13.302Z" fill="white"/>
|
||||||
|
<path d="M6.54701 13.302H6.40601V13.371H6.54701V13.302Z" fill="white"/>
|
||||||
|
<path d="M5.94502 13.494H5.80402V13.563H5.94502V13.494Z" fill="white"/>
|
||||||
|
<path d="M6.34602 13.494H6.20502V13.563H6.34602V13.494Z" fill="white"/>
|
||||||
|
<path d="M6.74702 13.494H6.60602V13.563H6.74702V13.494Z" fill="white"/>
|
||||||
|
<path d="M6.14604 13.688H6.00604V13.757H6.14704L6.14604 13.688Z" fill="white"/>
|
||||||
|
<path d="M6.54701 13.688H6.40601V13.757H6.54701V13.688Z" fill="white"/>
|
||||||
|
<path d="M4.08899 15.934L5.58899 15.181H6.95899L8.45899 15.934V17.175L6.95899 17.928H5.58899L4.08899 17.175V15.934Z" fill="#242424"/>
|
||||||
|
<path d="M5.59398 15.195L4.10498 15.939V17.162L5.59298 17.909H6.95898L8.44698 17.162V15.939L6.95898 15.192L5.59398 15.195ZM5.61998 15.295H6.93298L8.34198 16.002V17.107L6.93298 17.814H5.61898L4.20998 17.107V16.003L5.61998 15.295Z" fill="#00843D"/>
|
||||||
|
<path d="M6.28302 16.548V17.801H6.92802L8.32802 17.101V16.564H6.26802V15.309H5.62302L4.22302 16.009V16.546L6.28302 16.548Z" fill="#FFC72C"/>
|
||||||
|
<path d="M6.26802 16.548V17.801H5.62302L4.22302 17.101V16.564H6.28102V15.309H6.92602L8.32602 16.009V16.546L6.26802 16.548Z" fill="white"/>
|
||||||
|
<path d="M6.40199 17.73V17.368L6.27699 17.442L6.15199 17.368V17.73H5.76199L6.02499 17.55V17.293L5.62499 17.055H5.34399V16.055H5.62499L6.02499 15.817V15.56L5.76199 15.38H6.15199V15.742L6.27699 15.668L6.40199 15.742V15.38H6.792L6.52899 15.56V15.817L6.92899 16.055H7.20999V17.055H6.92999L6.52999 17.293V17.55L6.79299 17.73H6.40199Z" fill="#242424"/>
|
||||||
|
<path d="M6.41702 15.395V15.773L6.28302 15.694V15.8L6.89702 16.165H7.09702V16.553H7.19702V16.073H6.92702L6.51502 15.83V15.553L6.74702 15.394L6.41702 15.395ZM5.36102 16.562V17.042H5.62902L6.04302 17.287V17.559L5.81102 17.718H6.14002V17.343L6.27202 17.422V17.313L5.65802 16.952H5.45802V16.562H5.36102Z" fill="#FFC72C"/>
|
||||||
|
<path d="M5.80702 15.395L6.03902 15.554V15.826L5.62502 16.069H5.36102V16.549H5.46102V16.161H5.66102L6.27502 15.798V15.69L6.14302 15.769V15.395H5.81402H5.80702ZM7.09902 16.562V16.952H6.89902L6.28502 17.313V17.422L6.41902 17.343V17.717H6.74802L6.51602 17.558V17.286L6.92802 17.041H7.19802V16.562H7.09802H7.09902Z" fill="white"/>
|
||||||
|
<path d="M5.46802 16.936H5.65802L6.27502 17.301L6.89202 16.936H7.08202V16.173H6.89202L6.27502 15.808L5.65802 16.173H5.46802V16.936Z" fill="#D22630"/>
|
||||||
|
<path d="M6.70298 16.736H6.83498V16.678H6.73498V16.572H6.94698V16.842H6.74698V17.026H6.32898V16.761H6.51298V16.867H6.43898V16.92H6.63198V16.82L5.84898 16.375H5.71698V16.433H5.81698V16.539H5.60498V16.269H5.80498V16.085H6.22298V16.351H6.03898V16.245H6.10998V16.192H5.91898V16.292L6.70298 16.736ZM6.63198 16.291V16.191H6.43898V16.244H6.50998V16.351H6.32598V16.087H6.74398V16.271H6.94398V16.541H6.73198V16.431H6.83198V16.373H6.69998L5.91698 16.818V16.918H6.10998V16.865H6.03898V16.761H6.22298V17.025H5.80498V16.841H5.60498V16.571H5.81698V16.677H5.71698V16.735H5.84898L6.63198 16.291Z" fill="#242424"/>
|
||||||
|
<path d="M6.651 16.811V16.932H6.42799V16.851H6.49899V16.774H6.34099V17.01H6.729V16.832H6.929V16.591H6.75099V16.668H6.851V16.755H6.7L5.906 16.303V16.18H6.12899V16.261H6.05799V16.332H6.21099V16.096H5.823V16.28H5.623V16.521H5.804V16.444H5.70399V16.357H5.851L6.651 16.811ZM6.703 16.359H6.851V16.446H6.75099V16.523H6.932V16.282H6.73199V16.098H6.34099V16.332H6.49399V16.255H6.42299V16.174H6.651V16.297L5.85699 16.749H5.701V16.662H5.80099V16.585H5.62V16.832H5.81999V17.016H6.208V16.78H6.055V16.857H6.12599V16.932H5.903V16.809L6.703 16.359Z" fill="white"/>
|
||||||
|
<path d="M8.02402 16.618V17.009H7.84402V16.871H7.66402V17.009H7.48602V16.618H7.66402V16.756H7.84402V16.618H8.02402Z" fill="#242424"/>
|
||||||
|
<path d="M7.38606 17.137V17.528H7.20806V17.39H7.02806V17.528H6.84906V17.137H7.02706V17.275H7.20706V17.137H7.38606Z" fill="#242424"/>
|
||||||
|
<path d="M8.02402 16.492V16.101H7.84402V16.239H7.66402V16.101H7.48602V16.492H7.66402V16.354H7.84402V16.492H8.02402Z" fill="#242424"/>
|
||||||
|
<path d="M4.52606 16.618V17.009H4.70406V16.871H4.88406V17.009H5.06206V16.618H4.88406V16.756H4.70406V16.618H4.52606Z" fill="#242424"/>
|
||||||
|
<path d="M4.52606 16.492V16.101H4.70406V16.239H4.88406V16.101H5.06206V16.492H4.88406V16.354H4.70406V16.492H4.52606Z" fill="#242424"/>
|
||||||
|
<path d="M7.38606 15.973V15.582H7.20806V15.724H7.02806V15.586H6.84906V15.977H7.02706V15.839H7.20706V15.977L7.38606 15.973Z" fill="#242424"/>
|
||||||
|
<path d="M5.16504 17.137V17.528H5.34304V17.39H5.52304V17.528H5.70104V17.137H5.52304V17.275H5.34304V17.137H5.16504Z" fill="#242424"/>
|
||||||
|
<path d="M5.16504 15.973V15.582H5.34304V15.724H5.52304V15.586H5.70104V15.977H5.52304V15.839H5.34304V15.977L5.16504 15.973Z" fill="#242424"/>
|
||||||
|
<path d="M7.49304 15.698V15.998H8.08504L7.49304 15.698Z" fill="#242424"/>
|
||||||
|
<path d="M5.05904 17.412V17.112H4.46704L5.05904 17.412Z" fill="#242424"/>
|
||||||
|
<path d="M5.05904 15.698V15.998H4.46704L5.05904 15.698Z" fill="#242424"/>
|
||||||
|
<path d="M7.49304 17.412V17.112H8.08504L7.49304 17.412Z" fill="#242424"/>
|
||||||
|
<path d="M7.86099 16.856V16.994H8.00899V16.631H7.86099V16.769H7.65099V16.631H7.50299V16.994H7.65099V16.856H7.86099Z" fill="#D22630"/>
|
||||||
|
<path d="M7.22299 17.376V17.514H7.37099V17.151H7.22299V17.289H7.01299V17.151H6.86499V17.514H7.01299V17.376H7.22299Z" fill="#D22630"/>
|
||||||
|
<path d="M7.86099 16.253V16.115H8.00899V16.478H7.86099V16.34H7.65099V16.478H7.50299V16.115H7.65099V16.253H7.86099Z" fill="#D22630"/>
|
||||||
|
<path d="M4.68999 16.856V16.994H4.54199V16.631H4.68999V16.769H4.89999V16.631H5.04799V16.994H4.89999V16.856H4.68999Z" fill="#D22630"/>
|
||||||
|
<path d="M4.68999 16.253V16.115H4.54199V16.478H4.68999V16.34H4.89999V16.478H5.04799V16.115H4.89999V16.253H4.68999Z" fill="#D22630"/>
|
||||||
|
<path d="M7.22299 15.733V15.595H7.37099V15.958H7.22299V15.82H7.01299V15.958H6.86499V15.595H7.01299V15.733H7.22299Z" fill="#D22630"/>
|
||||||
|
<path d="M5.32897 17.376V17.514H5.18097V17.151H5.32897V17.289H5.53897V17.151H5.68697V17.514H5.53897V17.376H5.32897Z" fill="#D22630"/>
|
||||||
|
<path d="M5.32897 15.733V15.595H5.18097V15.958H5.32897V15.82H5.53897V15.958H5.68697V15.595H5.53897V15.733H5.32897Z" fill="#D22630"/>
|
||||||
|
<path d="M7.50902 15.722V15.981H8.02502L7.50902 15.722ZM4.52802 17.129L5.04402 17.388V17.129H4.52802Z" fill="#FFC72C"/>
|
||||||
|
<path d="M5.03999 15.722L4.52399 15.981H5.03999V15.722ZM7.50499 17.129V17.388L8.02099 17.129H7.50499Z" fill="white"/>
|
||||||
|
<path d="M8.69702 17.647C8.66902 17.76 8.57202 17.847 8.54902 17.964C8.49155 17.8533 8.47155 17.727 8.49202 17.604C8.51502 17.504 8.60102 17.44 8.61102 17.341C8.65391 17.3779 8.68495 17.4266 8.70025 17.481C8.71555 17.5355 8.71442 17.5932 8.69702 17.647ZM8.72102 18.122C8.63756 18.2248 8.52958 18.3049 8.40702 18.355C8.41389 18.314 8.41094 18.272 8.39843 18.2323C8.38591 18.1927 8.36418 18.1566 8.33502 18.127C8.30233 18.0915 8.28097 18.047 8.27367 17.9993C8.26637 17.9515 8.27345 17.9027 8.29402 17.859C8.31753 17.9089 8.34782 17.9554 8.38402 17.997C8.43918 18.0571 8.47414 18.133 8.48402 18.214C8.53839 18.1687 8.58065 18.1107 8.60702 18.045C8.66065 17.9543 8.73905 17.8807 8.83302 17.833C8.81725 17.9364 8.77976 18.0352 8.72302 18.123L8.72102 18.122ZM8.27202 18.427C8.2918 18.4825 8.30162 18.5411 8.30102 18.6C8.35872 18.5491 8.42098 18.5035 8.48702 18.464C8.57848 18.4095 8.66366 18.3451 8.74102 18.272C8.73686 18.3305 8.71927 18.3873 8.68962 18.438C8.65996 18.4886 8.61904 18.5317 8.57002 18.564C8.45902 18.642 8.32502 18.683 8.21602 18.764C8.2217 18.6601 8.19961 18.5565 8.15202 18.464C8.13782 18.4173 8.13675 18.3676 8.14892 18.3203C8.16109 18.2731 8.18604 18.23 8.22102 18.196C8.22524 18.2743 8.24247 18.3514 8.27202 18.424V18.427ZM8.02302 18.798C7.9892 18.8783 7.94517 18.9539 7.89202 19.023C8.00621 18.9844 8.11612 18.9341 8.22002 18.873C8.35146 18.8204 8.47825 18.7569 8.59902 18.683C8.57159 18.7757 8.51937 18.8592 8.448 18.9244C8.37663 18.9896 8.28881 19.034 8.19402 19.053C8.04837 19.0722 7.90407 19.1006 7.76202 19.138C7.7807 19.0252 7.81751 18.9161 7.87102 18.815C7.91738 18.7467 7.95627 18.6736 7.98702 18.597C8.00674 18.6259 8.02015 18.6587 8.02635 18.6932C8.03255 18.7276 8.03142 18.763 8.02302 18.797V18.798ZM7.59002 19.098C7.54928 19.1631 7.49464 19.2185 7.43002 19.26C7.59702 19.27 7.73002 19.171 7.89402 19.167C7.99402 19.167 8.09402 19.194 8.19402 19.185C8.07455 19.2682 7.9378 19.3232 7.79402 19.346C7.60102 19.369 7.42402 19.324 7.21102 19.346C7.29842 19.2799 7.37041 19.1957 7.42202 19.099C7.45278 19.04 7.49726 18.9892 7.55173 18.9509C7.60619 18.9126 7.66905 18.888 7.73502 18.879C7.67965 18.9476 7.6314 19.0216 7.59102 19.1L7.59002 19.098ZM6.99702 19.357C7.28618 19.4156 7.57934 19.4524 7.87402 19.467C7.55625 19.5835 7.2084 19.5892 6.88702 19.483C6.74251 19.4247 6.58783 19.3958 6.43202 19.398C6.16038 19.4214 5.90755 19.5464 5.72402 19.748L5.61902 19.669C5.81283 19.5211 6.03619 19.4165 6.27396 19.3625C6.51172 19.3085 6.75832 19.3063 6.99702 19.356V19.357Z" fill="#FFC72C"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_0_41">
|
||||||
|
<rect width="30" height="20" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 80 KiB |
|
|
@ -0,0 +1,10 @@
|
||||||
|
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_0_782)">
|
||||||
|
<path d="M19.8337 2.3368C19.6997 2.22727 19.5224 2.23284 19.393 2.35088C19.2232 2.50639 18.9468 2.62977 18.6493 2.72482C19.424 1.67658 19.4407 0.976635 19.4324 0.815508C19.4237 0.649308 19.3407 0.501798 19.2158 0.430831C19.0905 0.359452 18.9438 0.376863 18.8322 0.474563C17.9608 1.23948 17.0927 1.40102 16.5765 1.41729C15.7842 0.501798 14.7549 0 13.66 0C11.3154 0 9.40789 2.33415 9.40789 5.20315C9.40789 5.44968 9.42212 5.69626 9.45058 5.94015C5.38717 5.88458 2.08746 1.183 2.05348 1.13392C1.9742 1.01945 1.85356 0.958311 1.73031 0.971471C1.60706 0.984449 1.49675 1.06899 1.43503 1.1984C0.265593 3.64817 1.04809 5.79981 1.76338 7.03171C1.6368 6.95023 1.53425 6.86994 1.4731 6.81547C1.35946 6.71329 1.20775 6.69634 1.08007 6.77197C0.952578 6.84782 0.871104 7.00315 0.868682 7.17469C0.837084 9.50889 1.76762 10.8461 2.64234 11.5853C2.52575 11.5719 2.4073 11.6243 2.3264 11.7306C2.23546 11.8499 2.20352 12.0184 2.24269 12.1735C2.84691 14.5621 4.33081 15.3736 5.27505 15.649C3.3336 17.4739 0.476789 16.8867 0.445191 16.8799C0.272783 16.8432 0.102229 16.9527 0.032032 17.146C-0.0382029 17.3389 0.00985624 17.5652 0.148812 17.693C2.19796 19.5816 4.64884 20 6.41936 20C7.75843 19.9998 8.70872 19.7603 8.79962 19.7365C17.7674 17.1703 18.0198 7.25078 17.9993 5.62507C19.6827 3.73449 19.9458 3.01444 19.9865 2.83641C20.0294 2.64741 19.968 2.44661 19.8337 2.3368ZM17.3595 5.09471C17.2753 5.18843 6.09876 6.67737 6.10633 6.81547C6.13017 7.25439 21.0803 9.57269 11.9918 12.1735C11.9506 12.184 15.132 12.3736 12 10.5C13.3232 10.4556 6.17814 17.7922 7.5 16C7.59979 15.865 7.5621 12.3381 7.5 12.1735C7.43866 12.0104 4.5 14.5 6.10633 14.8765L10.5 9.5C10.4812 9.51453 12.138 11.7828 11.2283 9.5C16.7073 8.65368 11.1402 10.7002 11.5 10.5C11.6482 10.4174 10.5183 10.6959 10.5 10.5C10.4817 10.3043 4.44373 11.567 4.28408 11.5264C16.4148 11.1571 14.3095 8.91428 14 6C18.7587 9.15944 9.57503 9.07832 10 9C10.146 8.97345 12.9588 6.67113 13 6.5C13.0412 6.32887 12.1114 6.61694 12 6.5C11.138 6.5 10.2433 10.0502 11.2283 7.17469C12.2976 8.52952 10.6626 7.08166 14.5 6.81547C14.6125 6.80766 4.97753 6.81894 7.21317 16.865C7 16.865 16.4424 11.2892 16.4148 11.1571C16.3422 10.8076 18.5351 4.05784 18.5351 3.69748C18.5351 1.33229 11.0728 1 13 1C14 1.5 15.487 1.36821 16.1496 2.19336C16.2193 2.28014 16.3148 2.33013 16.4148 2.33214C16.8157 2.33882 16.5288 3.08541 17.2734 2.72482C17.0585 3.04771 13.4331 0.588919 13 1C13 1 12.4392 0.286931 12.5 0.474563C4.75757 5.10965 17.3246 3.90453 17.4891 3.88666C13 5.71972 18.027 3.83023 18.5351 3.69748C18.2583 4.05803 17.8788 4.51792 17.3595 5.09471Z" fill="#00822C"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_0_782">
|
||||||
|
<rect width="20" height="20" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.8 KiB |
|
|
@ -0,0 +1,19 @@
|
||||||
|
<svg width="30" height="20" viewBox="0 0 30 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g clip-path="url(#clip0_0_468)">
|
||||||
|
<path d="M-2.14294 0V20H32.1431V0H-2.14294Z" fill="#012169"/>
|
||||||
|
<path d="M-2.14294 0L32.1431 20L-2.14294 0ZM32.1431 0L-2.14294 20Z" fill="white"/>
|
||||||
|
<path d="M32.1431 0L-2.14294 20M-2.14294 0L32.1431 20L-2.14294 0Z" stroke="white" stroke-width="3"/>
|
||||||
|
<path d="M-2.14294 0L32.1431 20L-2.14294 0ZM32.1431 0L-2.14294 20Z" fill="white"/>
|
||||||
|
<path d="M32.1431 0L-2.14294 20M-2.14294 0L32.1431 20L-2.14294 0Z" stroke="#C8102E" stroke-width="2"/>
|
||||||
|
<path d="M15.0001 0V20V0ZM-2.14294 10H32.1431Z" fill="white"/>
|
||||||
|
<path d="M-2.14294 10H32.1431M15.0001 0V20V0Z" stroke="white" stroke-width="5"/>
|
||||||
|
<path d="M15.0001 0V20V0ZM-2.14294 10H32.1431Z" fill="white"/>
|
||||||
|
<path d="M-2.14294 10H32.1431M15.0001 0V20V0Z" stroke="#C8102E" stroke-width="3"/>
|
||||||
|
<path d="M29.9 0.0999985H0.0999756V19.9H29.9V0.0999985Z" stroke="white" stroke-width="0.2"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<clipPath id="clip0_0_468">
|
||||||
|
<rect width="30" height="20" fill="white"/>
|
||||||
|
</clipPath>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 83 KiB |
|
After Width: | Height: | Size: 106 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 232 KiB |
|
After Width: | Height: | Size: 104 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 104 KiB |
|
After Width: | Height: | Size: 220 KiB |
|
After Width: | Height: | Size: 47 KiB |
|
After Width: | Height: | Size: 5.6 KiB |
|
After Width: | Height: | Size: 151 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 246 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 125 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 115 KiB |
|
|
@ -0,0 +1,211 @@
|
||||||
|
/**
|
||||||
|
* Query selector class
|
||||||
|
* @usage const ITEM_NAME = new Select(ITEM_CLASSNAME).select();
|
||||||
|
*/
|
||||||
|
class Select {
|
||||||
|
classname = "";
|
||||||
|
/**
|
||||||
|
* @param {string} classname
|
||||||
|
*/
|
||||||
|
constructor(classname) {
|
||||||
|
this.classname = classname;
|
||||||
|
}
|
||||||
|
select() {
|
||||||
|
return document.querySelector(this.classname);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* News switcher button class
|
||||||
|
*/
|
||||||
|
class NewsBtn {
|
||||||
|
classname = "";
|
||||||
|
/**
|
||||||
|
* @param {string} classname
|
||||||
|
* @param {HTMLButtonElement} previousBtn
|
||||||
|
*/
|
||||||
|
constructor(classname) {
|
||||||
|
this.classname = classname;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @returns HTMLButtonElement
|
||||||
|
*/
|
||||||
|
createBtn() {
|
||||||
|
return new Select(this.classname).select();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {HTMLButtonElement} previousBtn
|
||||||
|
* @param {string} switchedClass
|
||||||
|
* @param {{local: HTMLElement, global: HTMLElement} | undefined} customActivity
|
||||||
|
* @usage Activate to hop the `switchedClass` between buttons
|
||||||
|
*/
|
||||||
|
|
||||||
|
activateSwitch(previousBtn, switchedClass, customActivity) {
|
||||||
|
const btn = this.createBtn(this.classname);
|
||||||
|
if (previousBtn) {
|
||||||
|
btn.addEventListener("click", () => {
|
||||||
|
if (customActivity) {
|
||||||
|
customActivity.local.classList.remove("active");
|
||||||
|
customActivity.global.classList.add("active");
|
||||||
|
}
|
||||||
|
btn.classList.add(switchedClass);
|
||||||
|
previousBtn.classList.remove(switchedClass);
|
||||||
|
});
|
||||||
|
previousBtn.addEventListener("click", () => {
|
||||||
|
if (customActivity) {
|
||||||
|
customActivity.global.classList.remove("active");
|
||||||
|
customActivity.local.classList.add("active");
|
||||||
|
}
|
||||||
|
previousBtn.classList.add(switchedClass);
|
||||||
|
btn.classList.remove(switchedClass);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {HTMLButtonElement} button
|
||||||
|
* @usage Removes the event listener
|
||||||
|
*/
|
||||||
|
|
||||||
|
abortSwitch(button) {
|
||||||
|
button.removeEventListener("click");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AssignYear {
|
||||||
|
element;
|
||||||
|
/**
|
||||||
|
* @param {string} id
|
||||||
|
* ID of an element
|
||||||
|
*/
|
||||||
|
constructor(id) {
|
||||||
|
this.element = new Select(id).select();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @returns `current year`
|
||||||
|
*/
|
||||||
|
assign() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
this.element.innerText = year;
|
||||||
|
return year;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AssignEvent {
|
||||||
|
identifier;
|
||||||
|
eventType;
|
||||||
|
actionType;
|
||||||
|
addedClass = "active";
|
||||||
|
target = "self";
|
||||||
|
customBehaviour;
|
||||||
|
/**
|
||||||
|
* ID or class of an HTML element
|
||||||
|
* @param {string} identifier
|
||||||
|
* Event type on which action is executed
|
||||||
|
* @param {string} eventType
|
||||||
|
* Type of action
|
||||||
|
* @param {"add" | "remove" | "toggle"} actionType
|
||||||
|
* Added classname
|
||||||
|
* @param {string} addedClass
|
||||||
|
* Target element identifier
|
||||||
|
* @param {string} target
|
||||||
|
* @param {() => void} customBehaviour
|
||||||
|
*/
|
||||||
|
constructor(
|
||||||
|
identifier,
|
||||||
|
eventType,
|
||||||
|
actionType,
|
||||||
|
addedClass,
|
||||||
|
target,
|
||||||
|
customBehaviour
|
||||||
|
) {
|
||||||
|
this.identifier = identifier;
|
||||||
|
this.eventType = eventType;
|
||||||
|
this.actionType = actionType;
|
||||||
|
this.addedClass = addedClass;
|
||||||
|
this.target = target;
|
||||||
|
this.customBehaviour = customBehaviour;
|
||||||
|
}
|
||||||
|
|
||||||
|
listen() {
|
||||||
|
const element = new Select(this.identifier).select();
|
||||||
|
let target;
|
||||||
|
if (this.target === "self") {
|
||||||
|
target = element;
|
||||||
|
} else {
|
||||||
|
target = new Select(this.target).select();
|
||||||
|
}
|
||||||
|
element.addEventListener(this.eventType, () => {
|
||||||
|
switch (this.actionType) {
|
||||||
|
case "add":
|
||||||
|
target.classList.add(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "remove":
|
||||||
|
target.classList.remove(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "toggle":
|
||||||
|
target.classList.toggle(this.addedClass);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error("Bad action type!");
|
||||||
|
}
|
||||||
|
if (this.customBehaviour) {
|
||||||
|
this.customBehaviour();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return [element, target];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Year
|
||||||
|
const displayedYear = new AssignYear("#year").assign();
|
||||||
|
|
||||||
|
// Burger
|
||||||
|
const burgerPair = new AssignEvent(
|
||||||
|
".header-burger",
|
||||||
|
"click",
|
||||||
|
"add",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "hidden";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerClosePair = new AssignEvent(
|
||||||
|
".burger-close",
|
||||||
|
"click",
|
||||||
|
"remove",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "auto";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerNewsPair = new AssignEvent(
|
||||||
|
".burger-news",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-news-items"
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerAffichePair = new AssignEvent(
|
||||||
|
".burger-affiche",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-affiche-items"
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const buttonLocal = new NewsBtn(".news-local").createBtn();
|
||||||
|
const runBtns = new NewsBtn(".news-global").activateSwitch(
|
||||||
|
buttonLocal,
|
||||||
|
"active",
|
||||||
|
{
|
||||||
|
local: new Select(".aside-content.local").select(),
|
||||||
|
global: new Select(".aside-content.global").select(),
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
@ -0,0 +1,138 @@
|
||||||
|
class Select {
|
||||||
|
classname = "";
|
||||||
|
/**
|
||||||
|
* @param {string} classname
|
||||||
|
*/
|
||||||
|
constructor(classname) {
|
||||||
|
this.classname = classname;
|
||||||
|
}
|
||||||
|
select() {
|
||||||
|
return document.querySelector(this.classname);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
class AssignYear {
|
||||||
|
element;
|
||||||
|
/**
|
||||||
|
* @param {string} id
|
||||||
|
* ID of an element
|
||||||
|
*/
|
||||||
|
constructor(id) {
|
||||||
|
this.element = new Select(id).select();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @returns `current year`
|
||||||
|
*/
|
||||||
|
assign() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
this.element.innerText = year;
|
||||||
|
return year;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AssignEvent {
|
||||||
|
identifier;
|
||||||
|
eventType;
|
||||||
|
actionType;
|
||||||
|
addedClass = "active";
|
||||||
|
target = "self";
|
||||||
|
customBehaviour;
|
||||||
|
/**
|
||||||
|
* ID or class of an HTML element
|
||||||
|
* @param {string} identifier
|
||||||
|
* Event type on which action is executed
|
||||||
|
* @param {string} eventType
|
||||||
|
* Type of action
|
||||||
|
* @param {"add" | "remove" | "toggle"} actionType
|
||||||
|
* Added classname
|
||||||
|
* @param {string} addedClass
|
||||||
|
* Target element identifier
|
||||||
|
* @param {string} target
|
||||||
|
* @param {() => void} customBehaviour
|
||||||
|
*/
|
||||||
|
constructor(
|
||||||
|
identifier,
|
||||||
|
eventType,
|
||||||
|
actionType,
|
||||||
|
addedClass,
|
||||||
|
target,
|
||||||
|
customBehaviour
|
||||||
|
) {
|
||||||
|
this.identifier = identifier;
|
||||||
|
this.eventType = eventType;
|
||||||
|
this.actionType = actionType;
|
||||||
|
this.addedClass = addedClass;
|
||||||
|
this.target = target;
|
||||||
|
this.customBehaviour = customBehaviour;
|
||||||
|
}
|
||||||
|
|
||||||
|
listen() {
|
||||||
|
const element = new Select(this.identifier).select();
|
||||||
|
let target;
|
||||||
|
if (this.target === "self") {
|
||||||
|
target = element;
|
||||||
|
} else {
|
||||||
|
target = new Select(this.target).select();
|
||||||
|
}
|
||||||
|
element.addEventListener(this.eventType, () => {
|
||||||
|
switch (this.actionType) {
|
||||||
|
case "add":
|
||||||
|
target.classList.add(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "remove":
|
||||||
|
target.classList.remove(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "toggle":
|
||||||
|
target.classList.toggle(this.addedClass);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error("Bad action type!");
|
||||||
|
}
|
||||||
|
if (this.customBehaviour) {
|
||||||
|
this.customBehaviour();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return [element, target];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Year
|
||||||
|
const displayedYear = new AssignYear("#year").assign();
|
||||||
|
|
||||||
|
// Burger
|
||||||
|
const burgerPair = new AssignEvent(
|
||||||
|
".header-burger",
|
||||||
|
"click",
|
||||||
|
"add",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "hidden";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerClosePair = new AssignEvent(
|
||||||
|
".burger-close",
|
||||||
|
"click",
|
||||||
|
"remove",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "auto";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerNewsPair = new AssignEvent(
|
||||||
|
".burger-news",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-news-items"
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerAffichePair = new AssignEvent(
|
||||||
|
".burger-affiche",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-affiche-items"
|
||||||
|
).listen();
|
||||||
|
|
@ -0,0 +1,227 @@
|
||||||
|
/**
|
||||||
|
* Query selector class
|
||||||
|
* @usage const ITEM_NAME = new Select(ITEM_CLASSNAME).select();
|
||||||
|
*/
|
||||||
|
class Select {
|
||||||
|
classname = "";
|
||||||
|
/**
|
||||||
|
* @param {string} classname
|
||||||
|
*/
|
||||||
|
constructor(classname) {
|
||||||
|
this.classname = classname;
|
||||||
|
}
|
||||||
|
select() {
|
||||||
|
return document.querySelector(this.classname);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* News switcher button class
|
||||||
|
*/
|
||||||
|
class NewsBtn {
|
||||||
|
classname = "";
|
||||||
|
/**
|
||||||
|
* @param {string} classname
|
||||||
|
* @param {HTMLButtonElement} previousBtn
|
||||||
|
*/
|
||||||
|
constructor(classname) {
|
||||||
|
this.classname = classname;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @returns HTMLButtonElement
|
||||||
|
*/
|
||||||
|
createBtn() {
|
||||||
|
return new Select(this.classname).select();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {HTMLButtonElement} previousBtn
|
||||||
|
* @param {string} switchedClass
|
||||||
|
* @param {{local: HTMLElement, global: HTMLElement} | undefined} customActivity
|
||||||
|
* @usage Activate to hop the `switchedClass` between buttons
|
||||||
|
*/
|
||||||
|
|
||||||
|
activateSwitch(previousBtn, switchedClass, customActivity) {
|
||||||
|
const btn = this.createBtn(this.classname);
|
||||||
|
if (previousBtn) {
|
||||||
|
btn.addEventListener("click", () => {
|
||||||
|
if (customActivity) {
|
||||||
|
customActivity.local.classList.remove("active");
|
||||||
|
customActivity.global.classList.add("active");
|
||||||
|
}
|
||||||
|
btn.classList.add(switchedClass);
|
||||||
|
previousBtn.classList.remove(switchedClass);
|
||||||
|
});
|
||||||
|
previousBtn.addEventListener("click", () => {
|
||||||
|
if (customActivity) {
|
||||||
|
customActivity.global.classList.remove("active");
|
||||||
|
customActivity.local.classList.add("active");
|
||||||
|
}
|
||||||
|
previousBtn.classList.add(switchedClass);
|
||||||
|
btn.classList.remove(switchedClass);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {HTMLButtonElement} button
|
||||||
|
* @usage Removes the event listener
|
||||||
|
*/
|
||||||
|
|
||||||
|
abortSwitch(button) {
|
||||||
|
button.removeEventListener("click");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
class AssignYear {
|
||||||
|
element;
|
||||||
|
/**
|
||||||
|
* @param {string} id
|
||||||
|
* ID of an element
|
||||||
|
*/
|
||||||
|
constructor(id) {
|
||||||
|
this.element = new Select(id).select();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @returns `current year`
|
||||||
|
*/
|
||||||
|
assign() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
this.element.innerText = year;
|
||||||
|
return year;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AssignEvent {
|
||||||
|
identifier;
|
||||||
|
eventType;
|
||||||
|
actionType;
|
||||||
|
addedClass = "active";
|
||||||
|
target = "self";
|
||||||
|
/**
|
||||||
|
* ID or class of an HTML element
|
||||||
|
* @param {string} identifier
|
||||||
|
* Event type on which action is executed
|
||||||
|
* @param {string} eventType
|
||||||
|
* Type of action
|
||||||
|
* @param {"add" | "remove" | "toggle"} actionType
|
||||||
|
* Added classname
|
||||||
|
* @param {string} addedClass
|
||||||
|
* Target element identifier
|
||||||
|
* @param {string} target
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
constructor(identifier, eventType, actionType, addedClass, target) {
|
||||||
|
this.identifier = identifier;
|
||||||
|
this.eventType = eventType;
|
||||||
|
this.actionType = actionType;
|
||||||
|
this.addedClass = addedClass;
|
||||||
|
this.target = target;
|
||||||
|
}
|
||||||
|
|
||||||
|
listen() {
|
||||||
|
const element = new Select(this.identifier).select();
|
||||||
|
let target;
|
||||||
|
if (this.target === "self") {
|
||||||
|
target = element;
|
||||||
|
} else {
|
||||||
|
target = new Select(this.target).select();
|
||||||
|
}
|
||||||
|
element.addEventListener(this.eventType, () => {
|
||||||
|
switch (this.actionType) {
|
||||||
|
case "add":
|
||||||
|
target.classList.add(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "remove":
|
||||||
|
target.classList.remove(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "toggle":
|
||||||
|
target.classList.toggle(this.addedClass);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error("Bad action type!");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return [element, target];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Year
|
||||||
|
const displayedYear = new AssignYear("#year").assign();
|
||||||
|
|
||||||
|
const buttonLocal = new NewsBtn(".news-local").createBtn();
|
||||||
|
const runBtns = new NewsBtn(".news-global").activateSwitch(
|
||||||
|
buttonLocal,
|
||||||
|
"active",
|
||||||
|
{
|
||||||
|
local: new Select(".aside-content.local").select(),
|
||||||
|
global: new Select(".aside-content.global").select(),
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
// Swiper
|
||||||
|
const articleSwiper = new Swiper(".articleSwiper", {
|
||||||
|
slidesPerView: 1,
|
||||||
|
spaceBetween: 0,
|
||||||
|
autoplay: {
|
||||||
|
delay: 3000,
|
||||||
|
disableOnInteraction: false,
|
||||||
|
},
|
||||||
|
loop: true,
|
||||||
|
navigation: {
|
||||||
|
prevEl: ".article-prev",
|
||||||
|
nextEl: ".article-next",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const articleBottomSwiper = new Swiper(".articleBottomSwiper", {
|
||||||
|
slidesPerView: 2,
|
||||||
|
spaceBetween: 50,
|
||||||
|
autoplay: {
|
||||||
|
delay: 3000,
|
||||||
|
disableOnInteraction: false,
|
||||||
|
},
|
||||||
|
loop: true,
|
||||||
|
navigation: {
|
||||||
|
prevEl: ".article-bottom-prev",
|
||||||
|
nextEl: ".article-bottom-next",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Burger
|
||||||
|
const burgerPair = new AssignEvent(
|
||||||
|
".header-burger",
|
||||||
|
"click",
|
||||||
|
"add",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "hidden";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerClosePair = new AssignEvent(
|
||||||
|
".burger-close",
|
||||||
|
"click",
|
||||||
|
"remove",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "auto";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerNewsPair = new AssignEvent(
|
||||||
|
".burger-news",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-news-items"
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerAffichePair = new AssignEvent(
|
||||||
|
".burger-affiche",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-affiche-items"
|
||||||
|
).listen();
|
||||||
|
|
@ -0,0 +1,137 @@
|
||||||
|
class Select {
|
||||||
|
classname = "";
|
||||||
|
/**
|
||||||
|
* @param {string} classname
|
||||||
|
*/
|
||||||
|
constructor(classname) {
|
||||||
|
this.classname = classname;
|
||||||
|
}
|
||||||
|
select() {
|
||||||
|
return document.querySelector(this.classname);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
class AssignYear {
|
||||||
|
element;
|
||||||
|
/**
|
||||||
|
* @param {string} id
|
||||||
|
* ID of an element
|
||||||
|
*/
|
||||||
|
constructor(id) {
|
||||||
|
this.element = new Select(id).select();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @returns `current year`
|
||||||
|
*/
|
||||||
|
assign() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
this.element.innerText = year;
|
||||||
|
return year;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
class AssignEvent {
|
||||||
|
identifier;
|
||||||
|
eventType;
|
||||||
|
actionType;
|
||||||
|
addedClass = "active";
|
||||||
|
target = "self";
|
||||||
|
customBehaviour;
|
||||||
|
/**
|
||||||
|
* ID or class of an HTML element
|
||||||
|
* @param {string} identifier
|
||||||
|
* Event type on which action is executed
|
||||||
|
* @param {string} eventType
|
||||||
|
* Type of action
|
||||||
|
* @param {"add" | "remove" | "toggle"} actionType
|
||||||
|
* Added classname
|
||||||
|
* @param {string} addedClass
|
||||||
|
* Target element identifier
|
||||||
|
* @param {string} target
|
||||||
|
* @param {() => void} customBehaviour
|
||||||
|
*/
|
||||||
|
constructor(
|
||||||
|
identifier,
|
||||||
|
eventType,
|
||||||
|
actionType,
|
||||||
|
addedClass,
|
||||||
|
target,
|
||||||
|
customBehaviour
|
||||||
|
) {
|
||||||
|
this.identifier = identifier;
|
||||||
|
this.eventType = eventType;
|
||||||
|
this.actionType = actionType;
|
||||||
|
this.addedClass = addedClass;
|
||||||
|
this.target = target;
|
||||||
|
this.customBehaviour = customBehaviour;
|
||||||
|
}
|
||||||
|
|
||||||
|
listen() {
|
||||||
|
const element = new Select(this.identifier).select();
|
||||||
|
let target;
|
||||||
|
if (this.target === "self") {
|
||||||
|
target = element;
|
||||||
|
} else {
|
||||||
|
target = new Select(this.target).select();
|
||||||
|
}
|
||||||
|
element.addEventListener(this.eventType, () => {
|
||||||
|
switch (this.actionType) {
|
||||||
|
case "add":
|
||||||
|
target.classList.add(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "remove":
|
||||||
|
target.classList.remove(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "toggle":
|
||||||
|
target.classList.toggle(this.addedClass);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error("Bad action type!");
|
||||||
|
}
|
||||||
|
if (this.customBehaviour) {
|
||||||
|
this.customBehaviour();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return [element, target];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Year
|
||||||
|
const displayedYear = new AssignYear("#year").assign();
|
||||||
|
|
||||||
|
// Burger
|
||||||
|
const burgerPair = new AssignEvent(
|
||||||
|
".header-burger",
|
||||||
|
"click",
|
||||||
|
"add",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "hidden";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerClosePair = new AssignEvent(
|
||||||
|
".burger-close",
|
||||||
|
"click",
|
||||||
|
"remove",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "auto";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerNewsPair = new AssignEvent(
|
||||||
|
".burger-news",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-news-items"
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerAffichePair = new AssignEvent(
|
||||||
|
".burger-affiche",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-affiche-items"
|
||||||
|
).listen();
|
||||||
|
|
@ -0,0 +1,232 @@
|
||||||
|
/**
|
||||||
|
* Query selector class
|
||||||
|
* @usage const ITEM_NAME = new Select(ITEM_CLASSNAME).select();
|
||||||
|
*/
|
||||||
|
class Select {
|
||||||
|
classname = "";
|
||||||
|
/**
|
||||||
|
* @param {string} classname
|
||||||
|
*/
|
||||||
|
constructor(classname) {
|
||||||
|
this.classname = classname;
|
||||||
|
}
|
||||||
|
select() {
|
||||||
|
return document.querySelector(this.classname);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* News switcher button class
|
||||||
|
*/
|
||||||
|
class NewsBtn {
|
||||||
|
classname = "";
|
||||||
|
/**
|
||||||
|
* @param {string} classname
|
||||||
|
* @param {HTMLButtonElement} previousBtn
|
||||||
|
*/
|
||||||
|
constructor(classname) {
|
||||||
|
this.classname = classname;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @returns HTMLButtonElement
|
||||||
|
*/
|
||||||
|
createBtn() {
|
||||||
|
return new Select(this.classname).select();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {HTMLButtonElement} previousBtn
|
||||||
|
* @param {string} switchedClass
|
||||||
|
* @param {{local: HTMLElement, global: HTMLElement} | undefined} customActivity
|
||||||
|
* @usage Activate to hop the `switchedClass` between buttons
|
||||||
|
*/
|
||||||
|
|
||||||
|
activateSwitch(previousBtn, switchedClass, customActivity) {
|
||||||
|
const btn = this.createBtn(this.classname);
|
||||||
|
if (previousBtn) {
|
||||||
|
btn.addEventListener("click", () => {
|
||||||
|
if (customActivity) {
|
||||||
|
customActivity.local.classList.remove("active");
|
||||||
|
customActivity.global.classList.add("active");
|
||||||
|
}
|
||||||
|
btn.classList.add(switchedClass);
|
||||||
|
previousBtn.classList.remove(switchedClass);
|
||||||
|
});
|
||||||
|
previousBtn.addEventListener("click", () => {
|
||||||
|
if (customActivity) {
|
||||||
|
customActivity.global.classList.remove("active");
|
||||||
|
customActivity.local.classList.add("active");
|
||||||
|
}
|
||||||
|
previousBtn.classList.add(switchedClass);
|
||||||
|
btn.classList.remove(switchedClass);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {HTMLButtonElement} button
|
||||||
|
* @usage Removes the event listener
|
||||||
|
*/
|
||||||
|
|
||||||
|
abortSwitch(button) {
|
||||||
|
button.removeEventListener("click");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AssignYear {
|
||||||
|
element;
|
||||||
|
/**
|
||||||
|
* @param {string} id
|
||||||
|
* ID of an element
|
||||||
|
*/
|
||||||
|
constructor(id) {
|
||||||
|
this.element = new Select(id).select();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @returns `current year`
|
||||||
|
*/
|
||||||
|
assign() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
this.element.innerText = year;
|
||||||
|
return year;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AssignEvent {
|
||||||
|
identifier;
|
||||||
|
eventType;
|
||||||
|
actionType;
|
||||||
|
addedClass = "active";
|
||||||
|
target = "self";
|
||||||
|
/**
|
||||||
|
* ID or class of an HTML element
|
||||||
|
* @param {string} identifier
|
||||||
|
* Event type on which action is executed
|
||||||
|
* @param {string} eventType
|
||||||
|
* Type of action
|
||||||
|
* @param {"add" | "remove" | "toggle"} actionType
|
||||||
|
* Added classname
|
||||||
|
* @param {string} addedClass
|
||||||
|
* Target element identifier
|
||||||
|
* @param {string} target
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
constructor(identifier, eventType, actionType, addedClass, target) {
|
||||||
|
this.identifier = identifier;
|
||||||
|
this.eventType = eventType;
|
||||||
|
this.actionType = actionType;
|
||||||
|
this.addedClass = addedClass;
|
||||||
|
this.target = target;
|
||||||
|
}
|
||||||
|
|
||||||
|
listen() {
|
||||||
|
const element = new Select(this.identifier).select();
|
||||||
|
let target;
|
||||||
|
if (this.target === "self") {
|
||||||
|
target = element;
|
||||||
|
} else {
|
||||||
|
target = new Select(this.target).select();
|
||||||
|
}
|
||||||
|
element.addEventListener(this.eventType, () => {
|
||||||
|
switch (this.actionType) {
|
||||||
|
case "add":
|
||||||
|
target.classList.add(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "remove":
|
||||||
|
target.classList.remove(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "toggle":
|
||||||
|
target.classList.toggle(this.addedClass);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error("Bad action type!");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return [element, target];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Year
|
||||||
|
const displayedYear = new AssignYear("#year").assign();
|
||||||
|
|
||||||
|
const buttonLocal = new NewsBtn(".news-local").createBtn();
|
||||||
|
const runBtns = new NewsBtn(".news-global").activateSwitch(
|
||||||
|
buttonLocal,
|
||||||
|
"active",
|
||||||
|
{
|
||||||
|
local: new Select(".aside-content.local").select(),
|
||||||
|
global: new Select(".aside-content.global").select(),
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
// Swiper
|
||||||
|
|
||||||
|
const videoSwiper = new Swiper(".videoSwiper", {
|
||||||
|
slidesPerView: 3,
|
||||||
|
spaceBetween: 60,
|
||||||
|
lazyLoading: true,
|
||||||
|
navigation: {
|
||||||
|
prevEl: ".video-prev",
|
||||||
|
nextEl: ".video-next",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const photoSwiper = new Swiper(".photoSwiper", {
|
||||||
|
slidesPerView: 3,
|
||||||
|
spaceBetween: 60,
|
||||||
|
loop: true,
|
||||||
|
navigation: {
|
||||||
|
prevEl: ".photo-prev",
|
||||||
|
nextEl: ".photo-next",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const partnerSwiper = new Swiper(".partnerSwiper", {
|
||||||
|
slidesPerView: 5,
|
||||||
|
spaceBetween: 60,
|
||||||
|
centeredSlides: true,
|
||||||
|
loop: true,
|
||||||
|
navigation: {
|
||||||
|
prevEl: ".partner-prev",
|
||||||
|
nextEl: ".partner-next",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
// Burger
|
||||||
|
const burgerPair = new AssignEvent(
|
||||||
|
".header-burger",
|
||||||
|
"click",
|
||||||
|
"add",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "hidden";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerClosePair = new AssignEvent(
|
||||||
|
".burger-close",
|
||||||
|
"click",
|
||||||
|
"remove",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "auto";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerNewsPair = new AssignEvent(
|
||||||
|
".burger-news",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-news-items"
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerAffichePair = new AssignEvent(
|
||||||
|
".burger-affiche",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-affiche-items"
|
||||||
|
).listen();
|
||||||
|
|
@ -0,0 +1,126 @@
|
||||||
|
class Select {
|
||||||
|
classname = "";
|
||||||
|
/**
|
||||||
|
* @param {string} classname
|
||||||
|
*/
|
||||||
|
constructor(classname) {
|
||||||
|
this.classname = classname;
|
||||||
|
}
|
||||||
|
select() {
|
||||||
|
return document.querySelector(this.classname);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
class AssignYear {
|
||||||
|
element;
|
||||||
|
/**
|
||||||
|
* @param {string} id
|
||||||
|
* ID of an element
|
||||||
|
*/
|
||||||
|
constructor(id) {
|
||||||
|
this.element = new Select(id).select();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @returns `current year`
|
||||||
|
*/
|
||||||
|
assign() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
this.element.innerText = year;
|
||||||
|
return year;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AssignEvent {
|
||||||
|
identifier;
|
||||||
|
eventType;
|
||||||
|
actionType;
|
||||||
|
addedClass = "active";
|
||||||
|
target = "self";
|
||||||
|
/**
|
||||||
|
* ID or class of an HTML element
|
||||||
|
* @param {string} identifier
|
||||||
|
* Event type on which action is executed
|
||||||
|
* @param {string} eventType
|
||||||
|
* Type of action
|
||||||
|
* @param {"add" | "remove" | "toggle"} actionType
|
||||||
|
* Added classname
|
||||||
|
* @param {string} addedClass
|
||||||
|
* Target element identifier
|
||||||
|
* @param {string} target
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
constructor(identifier, eventType, actionType, addedClass, target) {
|
||||||
|
this.identifier = identifier;
|
||||||
|
this.eventType = eventType;
|
||||||
|
this.actionType = actionType;
|
||||||
|
this.addedClass = addedClass;
|
||||||
|
this.target = target;
|
||||||
|
}
|
||||||
|
|
||||||
|
listen() {
|
||||||
|
const element = new Select(this.identifier).select();
|
||||||
|
let target;
|
||||||
|
if (this.target === "self") {
|
||||||
|
target = element;
|
||||||
|
} else {
|
||||||
|
target = new Select(this.target).select();
|
||||||
|
}
|
||||||
|
element.addEventListener(this.eventType, () => {
|
||||||
|
switch (this.actionType) {
|
||||||
|
case "add":
|
||||||
|
target.classList.add(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "remove":
|
||||||
|
target.classList.remove(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "toggle":
|
||||||
|
target.classList.toggle(this.addedClass);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error("Bad action type!");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return [element, target];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Year
|
||||||
|
const displayedYear = new AssignYear("#year").assign();
|
||||||
|
|
||||||
|
// Burger
|
||||||
|
const burgerPair = new AssignEvent(
|
||||||
|
".header-burger",
|
||||||
|
"click",
|
||||||
|
"add",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "hidden";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerClosePair = new AssignEvent(
|
||||||
|
".burger-close",
|
||||||
|
"click",
|
||||||
|
"remove",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "auto";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerNewsPair = new AssignEvent(
|
||||||
|
".burger-news",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-news-items"
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerAffichePair = new AssignEvent(
|
||||||
|
".burger-affiche",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-affiche-items"
|
||||||
|
).listen();
|
||||||
|
|
@ -0,0 +1,126 @@
|
||||||
|
class Select {
|
||||||
|
classname = "";
|
||||||
|
/**
|
||||||
|
* @param {string} classname
|
||||||
|
*/
|
||||||
|
constructor(classname) {
|
||||||
|
this.classname = classname;
|
||||||
|
}
|
||||||
|
select() {
|
||||||
|
return document.querySelector(this.classname);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
class AssignYear {
|
||||||
|
element;
|
||||||
|
/**
|
||||||
|
* @param {string} id
|
||||||
|
* ID of an element
|
||||||
|
*/
|
||||||
|
constructor(id) {
|
||||||
|
this.element = new Select(id).select();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @returns `current year`
|
||||||
|
*/
|
||||||
|
assign() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
this.element.innerText = year;
|
||||||
|
return year;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AssignEvent {
|
||||||
|
identifier;
|
||||||
|
eventType;
|
||||||
|
actionType;
|
||||||
|
addedClass = "active";
|
||||||
|
target = "self";
|
||||||
|
/**
|
||||||
|
* ID or class of an HTML element
|
||||||
|
* @param {string} identifier
|
||||||
|
* Event type on which action is executed
|
||||||
|
* @param {string} eventType
|
||||||
|
* Type of action
|
||||||
|
* @param {"add" | "remove" | "toggle"} actionType
|
||||||
|
* Added classname
|
||||||
|
* @param {string} addedClass
|
||||||
|
* Target element identifier
|
||||||
|
* @param {string} target
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
constructor(identifier, eventType, actionType, addedClass, target) {
|
||||||
|
this.identifier = identifier;
|
||||||
|
this.eventType = eventType;
|
||||||
|
this.actionType = actionType;
|
||||||
|
this.addedClass = addedClass;
|
||||||
|
this.target = target;
|
||||||
|
}
|
||||||
|
|
||||||
|
listen() {
|
||||||
|
const element = new Select(this.identifier).select();
|
||||||
|
let target;
|
||||||
|
if (this.target === "self") {
|
||||||
|
target = element;
|
||||||
|
} else {
|
||||||
|
target = new Select(this.target).select();
|
||||||
|
}
|
||||||
|
element.addEventListener(this.eventType, () => {
|
||||||
|
switch (this.actionType) {
|
||||||
|
case "add":
|
||||||
|
target.classList.add(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "remove":
|
||||||
|
target.classList.remove(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "toggle":
|
||||||
|
target.classList.toggle(this.addedClass);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error("Bad action type!");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return [element, target];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Year
|
||||||
|
const displayedYear = new AssignYear("#year").assign();
|
||||||
|
|
||||||
|
// Burger
|
||||||
|
const burgerPair = new AssignEvent(
|
||||||
|
".header-burger",
|
||||||
|
"click",
|
||||||
|
"add",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "hidden";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerClosePair = new AssignEvent(
|
||||||
|
".burger-close",
|
||||||
|
"click",
|
||||||
|
"remove",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "auto";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerNewsPair = new AssignEvent(
|
||||||
|
".burger-news",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-news-items"
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerAffichePair = new AssignEvent(
|
||||||
|
".burger-affiche",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-affiche-items"
|
||||||
|
).listen();
|
||||||
|
|
@ -0,0 +1,125 @@
|
||||||
|
class Select {
|
||||||
|
classname = "";
|
||||||
|
/**
|
||||||
|
* @param {string} classname
|
||||||
|
*/
|
||||||
|
constructor(classname) {
|
||||||
|
this.classname = classname;
|
||||||
|
}
|
||||||
|
select() {
|
||||||
|
return document.querySelector(this.classname);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
class AssignYear {
|
||||||
|
element;
|
||||||
|
/**
|
||||||
|
* @param {string} id
|
||||||
|
* ID of an element
|
||||||
|
*/
|
||||||
|
constructor(id) {
|
||||||
|
this.element = new Select(id).select();
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @returns `current year`
|
||||||
|
*/
|
||||||
|
assign() {
|
||||||
|
const year = new Date().getFullYear();
|
||||||
|
this.element.innerText = year;
|
||||||
|
return year;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
class AssignEvent {
|
||||||
|
identifier;
|
||||||
|
eventType;
|
||||||
|
actionType;
|
||||||
|
addedClass = "active";
|
||||||
|
target = "self";
|
||||||
|
/**
|
||||||
|
* ID or class of an HTML element
|
||||||
|
* @param {string} identifier
|
||||||
|
* Event type on which action is executed
|
||||||
|
* @param {string} eventType
|
||||||
|
* Type of action
|
||||||
|
* @param {"add" | "remove" | "toggle"} actionType
|
||||||
|
* Added classname
|
||||||
|
* @param {string} addedClass
|
||||||
|
* Target element identifier
|
||||||
|
* @param {string} target
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
constructor(identifier, eventType, actionType, addedClass, target) {
|
||||||
|
this.identifier = identifier;
|
||||||
|
this.eventType = eventType;
|
||||||
|
this.actionType = actionType;
|
||||||
|
this.addedClass = addedClass;
|
||||||
|
this.target = target;
|
||||||
|
}
|
||||||
|
|
||||||
|
listen() {
|
||||||
|
const element = new Select(this.identifier).select();
|
||||||
|
let target;
|
||||||
|
if (this.target === "self") {
|
||||||
|
target = element;
|
||||||
|
} else {
|
||||||
|
target = new Select(this.target).select();
|
||||||
|
}
|
||||||
|
element.addEventListener(this.eventType, () => {
|
||||||
|
switch (this.actionType) {
|
||||||
|
case "add":
|
||||||
|
target.classList.add(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "remove":
|
||||||
|
target.classList.remove(this.addedClass);
|
||||||
|
break;
|
||||||
|
case "toggle":
|
||||||
|
target.classList.toggle(this.addedClass);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error("Bad action type!");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return [element, target];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Year
|
||||||
|
const displayedYear = new AssignYear("#year").assign();
|
||||||
|
|
||||||
|
// Burger
|
||||||
|
const burgerPair = new AssignEvent(
|
||||||
|
".header-burger",
|
||||||
|
"click",
|
||||||
|
"add",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "hidden";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerClosePair = new AssignEvent(
|
||||||
|
".burger-close",
|
||||||
|
"click",
|
||||||
|
"remove",
|
||||||
|
"active",
|
||||||
|
".burger-wrapper",
|
||||||
|
() => {
|
||||||
|
document.body.style.overflowY = "auto";
|
||||||
|
}
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerNewsPair = new AssignEvent(
|
||||||
|
".burger-news",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-news-items"
|
||||||
|
).listen();
|
||||||
|
|
||||||
|
const burgerAffichePair = new AssignEvent(
|
||||||
|
".burger-affiche",
|
||||||
|
"click",
|
||||||
|
"toggle",
|
||||||
|
"active",
|
||||||
|
".burger-affiche-items"
|
||||||
|
).listen();
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
@import "./affiche/affiche-main";
|
||||||
|
@import "./affiche/affiche-item";
|
||||||
|
|
@ -0,0 +1,143 @@
|
||||||
|
.article-inner {
|
||||||
|
padding: 3rem 0 4rem;
|
||||||
|
@include grid(false, 67% auto);
|
||||||
|
gap: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-content-top {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-item {
|
||||||
|
@include imgStyle($objFit: cover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-prev,
|
||||||
|
.article-next {
|
||||||
|
top: 45%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-head {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1.2rem;
|
||||||
|
h2 {
|
||||||
|
font-size: 2.4rem;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 3.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
color: $base-green;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-content {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-desc {
|
||||||
|
padding-top: 1.8rem;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 2.4rem;
|
||||||
|
p,
|
||||||
|
h5 {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
line-height: 2.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-links {
|
||||||
|
padding-top: 2.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-content-bottom {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 3.2rem;
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 2.4rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-bottom-head {
|
||||||
|
h4,
|
||||||
|
span {
|
||||||
|
color: $base-black;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-content-info {
|
||||||
|
color: $base-black !important;
|
||||||
|
|
||||||
|
font-weight: bold !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.article-items {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
@media screen and (max-width: 1080px) {
|
||||||
|
.article-aside {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.article-inner {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) {
|
||||||
|
.article-inner {
|
||||||
|
padding: 2.2rem 0 5rem;
|
||||||
|
}
|
||||||
|
.article-head {
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 1.7rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
color: $mild-gray;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.article-content-top {
|
||||||
|
gap: 2.5rem;
|
||||||
|
}
|
||||||
|
.article-content-bottom {
|
||||||
|
gap: 2.5rem;
|
||||||
|
h3 {
|
||||||
|
font-size: 2rem;
|
||||||
|
letter-spacing: 0.1em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 700px) {
|
||||||
|
.article-swiper-wrapper-lower {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.article-items {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 2.5rem;
|
||||||
|
}
|
||||||
|
.article-content-info {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
.article-bottom-head {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
}
|
||||||
|
.sub-news-left-content-item-content {
|
||||||
|
gap: 0.5rem;
|
||||||
|
}
|
||||||
|
.article-bottom-item {
|
||||||
|
gap: 1.4rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,79 @@
|
||||||
|
.contact-inner {
|
||||||
|
padding: 4.3rem 0 8rem;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 4.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-left,
|
||||||
|
.contact-form,
|
||||||
|
.contact-content {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-block {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1.4rem;
|
||||||
|
|
||||||
|
label {
|
||||||
|
color: $base-black;
|
||||||
|
font-size: 1.6rem;
|
||||||
|
font-weight: bold;
|
||||||
|
|
||||||
|
span {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
input,
|
||||||
|
textarea {
|
||||||
|
@include input;
|
||||||
|
resize: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-antispam {
|
||||||
|
@include imgStyle(17.8rem, 3.2rem, contain);
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-content {
|
||||||
|
button {
|
||||||
|
cursor: pointer;
|
||||||
|
color: $base-white;
|
||||||
|
background: $base-green;
|
||||||
|
padding: 1rem 0;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 17rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
@media screen and (max-width: 800px) {
|
||||||
|
.contact-inner {
|
||||||
|
padding: 2.2rem 0 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-left {
|
||||||
|
gap: 3.4rem;
|
||||||
|
}
|
||||||
|
.contact-form,
|
||||||
|
.contact-content {
|
||||||
|
gap: 3rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 600px) {
|
||||||
|
.contact-block {
|
||||||
|
textarea {
|
||||||
|
height: 100%;
|
||||||
|
max-height: 7rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.contact-content {
|
||||||
|
button {
|
||||||
|
max-width: unset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
.footer {
|
||||||
|
@include grid(false, 1fr);
|
||||||
|
min-height: 23.6rem;
|
||||||
|
@include stretch;
|
||||||
|
background: $light-black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-inner {
|
||||||
|
@include stretch;
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
p {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
color: $base-white;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,49 @@
|
||||||
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
|
||||||
|
|
||||||
|
* {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
font-family: "Open Sans", sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-size: 62.5%;
|
||||||
|
min-height: 100%;
|
||||||
|
@include flex(column);
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
input,
|
||||||
|
button {
|
||||||
|
background: none;
|
||||||
|
outline: none;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #000;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
@include stretch;
|
||||||
|
max-width: 174rem;
|
||||||
|
padding: 0 4rem;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
|
||||||
|
@media screen and (max-width: 1000px) {
|
||||||
|
.container {
|
||||||
|
padding: 0 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,77 @@
|
||||||
|
.big-banner {
|
||||||
|
a {
|
||||||
|
display: block;
|
||||||
|
@include imgStyle($objFit: cover);
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
border-top: 0.2rem black solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-inner {
|
||||||
|
padding: 1.2rem 0;
|
||||||
|
gap: 4rem;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 68% auto;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-left {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-right {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 2.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-ext {
|
||||||
|
@include flex;
|
||||||
|
gap: 1.6rem;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-search {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
input {
|
||||||
|
@include input;
|
||||||
|
width: 100%;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 0.85rem;
|
||||||
|
height: 100%;
|
||||||
|
border: 0.1rem solid $border-black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-icon {
|
||||||
|
img {
|
||||||
|
width: 2.5rem;
|
||||||
|
height: 2.5rem;
|
||||||
|
}
|
||||||
|
@include stretch;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 950px) {
|
||||||
|
.header-inner {
|
||||||
|
@include flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,48 @@
|
||||||
|
.main-inner {
|
||||||
|
padding: 2.8rem 0;
|
||||||
|
@include grid(false, 67% auto);
|
||||||
|
gap: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-advert {
|
||||||
|
a {
|
||||||
|
display: block;
|
||||||
|
@include imgStyle($objFit: cover);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.banners-inner {
|
||||||
|
@include grid(false, 1fr 1fr);
|
||||||
|
gap: 2.5rem;
|
||||||
|
@include stretch;
|
||||||
|
}
|
||||||
|
|
||||||
|
.banner {
|
||||||
|
@include imgStyle($objFit: cover);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
|
||||||
|
@media screen and (max-width: 950px) {
|
||||||
|
.banner-container {
|
||||||
|
max-width: unset;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.banner {
|
||||||
|
&:last-child {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.banners-inner {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// PAGE CONTENT
|
||||||
|
@import "./main/main-news";
|
||||||
|
@import "./main/aside";
|
||||||
|
@import "./main/sub-news";
|
||||||
|
@import "./main/trending";
|
||||||
|
@import "./main/posts";
|
||||||
|
@import "./main/media";
|
||||||
|
@import "./main/useful";
|
||||||
|
|
@ -0,0 +1,330 @@
|
||||||
|
.nav {
|
||||||
|
background: $base-black;
|
||||||
|
box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.25);
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: 4rem;
|
||||||
|
|
||||||
|
&.removed-mq {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-inner {
|
||||||
|
padding: 0.2rem 0;
|
||||||
|
// @include flex;
|
||||||
|
// justify-content: space-between;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 68% auto;
|
||||||
|
gap: 4rem;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-ul {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-start;
|
||||||
|
gap: 3.2rem;
|
||||||
|
a {
|
||||||
|
display: block;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 1rem 0;
|
||||||
|
position: relative;
|
||||||
|
color: $base-white;
|
||||||
|
font-size: 1.4rem;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
left: 0;
|
||||||
|
bottom: 0.5rem;
|
||||||
|
position: absolute;
|
||||||
|
content: "";
|
||||||
|
width: 100%;
|
||||||
|
height: 0;
|
||||||
|
border-top: 0.1rem solid $base-white;
|
||||||
|
display: block;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
&.active {
|
||||||
|
&::after {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-right {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-right-link {
|
||||||
|
display: block;
|
||||||
|
background: $base-green;
|
||||||
|
font-size: 1.4rem;
|
||||||
|
padding: 0.4rem 7.8rem;
|
||||||
|
color: $base-white;
|
||||||
|
max-width: 18.6rem;
|
||||||
|
@include stretch;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-lang {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.marquee {
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.marquee-inner {
|
||||||
|
position: relative;
|
||||||
|
@include stretch;
|
||||||
|
background: $base-green;
|
||||||
|
@include flex;
|
||||||
|
gap: 0.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.marquee-title {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
z-index: 2;
|
||||||
|
padding: 1rem 3rem;
|
||||||
|
padding-right: 4rem;
|
||||||
|
font-size: 1.3rem;
|
||||||
|
color: $base-white;
|
||||||
|
font-weight: bold;
|
||||||
|
max-width: 12rem;
|
||||||
|
@include stretch;
|
||||||
|
background-image: url(../icons/marquee.svg);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: 0% center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ticker {
|
||||||
|
@include stretch;
|
||||||
|
@include flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ticker-wrapper {
|
||||||
|
@include flex;
|
||||||
|
@include stretch;
|
||||||
|
gap: 2.4rem;
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: block;
|
||||||
|
color: $base-white;
|
||||||
|
font-size: 1.3rem;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 1.1rem 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-bottom-inner {
|
||||||
|
overflow-x: auto;
|
||||||
|
background: $base-green;
|
||||||
|
padding: 0 3.5rem;
|
||||||
|
ul {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 3.3rem;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
display: block;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 1rem;
|
||||||
|
position: relative;
|
||||||
|
color: $base-white;
|
||||||
|
font-size: 1.4rem;
|
||||||
|
|
||||||
|
&::after {
|
||||||
|
left: 0;
|
||||||
|
bottom: 0.5rem;
|
||||||
|
position: absolute;
|
||||||
|
content: "";
|
||||||
|
width: 100%;
|
||||||
|
height: 0;
|
||||||
|
border-top: 0.1rem solid $base-white;
|
||||||
|
display: block;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
&.active {
|
||||||
|
&::after {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-search-icon,
|
||||||
|
.header-burger {
|
||||||
|
cursor: pointer;
|
||||||
|
display: none;
|
||||||
|
@include imgStyle(3.9rem, 3.9rem, contain);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Burger
|
||||||
|
|
||||||
|
.burger-wrapper {
|
||||||
|
@include grid(false, 22% 1fr);
|
||||||
|
position: fixed;
|
||||||
|
z-index: 1000;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
transform: translateX(100%);
|
||||||
|
@include transition-std;
|
||||||
|
|
||||||
|
.burger-close {
|
||||||
|
width: 0;
|
||||||
|
height: 100%;
|
||||||
|
background: rgba(0, 0, 0, 0.5);
|
||||||
|
@include transition-std;
|
||||||
|
|
||||||
|
img {
|
||||||
|
padding: 1rem 0 0 2.7rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.burger-content {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 4rem;
|
||||||
|
justify-content: space-between;
|
||||||
|
color: black;
|
||||||
|
width: 100%;
|
||||||
|
background: $light-black;
|
||||||
|
padding: 3rem 2rem;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
transform: translateX(0);
|
||||||
|
|
||||||
|
.burger-close {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.burger-list {
|
||||||
|
@include flex(column);
|
||||||
|
}
|
||||||
|
|
||||||
|
.burger-list-li {
|
||||||
|
@include flex(column);
|
||||||
|
|
||||||
|
&.green {
|
||||||
|
align-items: center;
|
||||||
|
padding-top: 1.3rem;
|
||||||
|
.burger-item {
|
||||||
|
background: $base-green;
|
||||||
|
padding: 0.8rem;
|
||||||
|
max-width: 15rem;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.burger-item {
|
||||||
|
font-size: 2rem;
|
||||||
|
color: $base-white;
|
||||||
|
text-align: center;
|
||||||
|
letter-spacing: 0.1em;
|
||||||
|
cursor: pointer;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 2rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.burger-nested-list {
|
||||||
|
overflow: hidden;
|
||||||
|
max-height: 0;
|
||||||
|
@include transition-std;
|
||||||
|
@include flex(column);
|
||||||
|
align-items: center;
|
||||||
|
li {
|
||||||
|
@include stretch;
|
||||||
|
@include grid(false, 1fr);
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
justify-self: center;
|
||||||
|
width: 50%;
|
||||||
|
color: $base-white;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 1.4rem;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 1.5rem 0;
|
||||||
|
background: $light-gray;
|
||||||
|
@include transition-std;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: $mild-gray;
|
||||||
|
@include transition-std;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
max-height: 50rem;
|
||||||
|
@include transition-std;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.burger-lang {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1.6rem;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
ul {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1.6rem;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
button {
|
||||||
|
width: 4.3rem;
|
||||||
|
height: 3rem;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 4.3rem;
|
||||||
|
height: 3rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
|
||||||
|
@media screen and (max-width: 1300px) {
|
||||||
|
.nav-right-link {
|
||||||
|
width: 11rem;
|
||||||
|
padding: 0.4rem 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 1100px) {
|
||||||
|
.nav-ul {
|
||||||
|
gap: 1.6rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 1070px) {
|
||||||
|
.nav-inner {
|
||||||
|
@include flex;
|
||||||
|
grid-template-columns: unset;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 950px) {
|
||||||
|
.nav,
|
||||||
|
.header-right,
|
||||||
|
.nav-bottom-inner {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.header-search-icon,
|
||||||
|
.header-burger {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
@import "./photo/photo-main";
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
@import "./rubric/_rubric-main";
|
||||||
|
|
@ -0,0 +1,67 @@
|
||||||
|
$base-white: rgba(255, 255, 255, 1);
|
||||||
|
$base-red: rgba(255, 12, 0, 1);
|
||||||
|
$base-green: rgba(0, 130, 44, 1);
|
||||||
|
$base-black: rgba(36, 36, 36, 1);
|
||||||
|
$light-black: rgba(56, 56, 56, 1);
|
||||||
|
$base-gray: rgba(0, 0, 0, 0.6);
|
||||||
|
$mild-gray: rgba(85, 85, 85, 1);
|
||||||
|
$light-gray: rgba(101, 101, 101, 1);
|
||||||
|
|
||||||
|
$border-black: rgba(0, 0, 0, 1); // Mixins
|
||||||
|
@mixin flex($dir: row) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: $dir;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin stretch {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin transition-std($duration: 0.3s) {
|
||||||
|
transition: $duration all ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin imgStyle($mWidth: unset, $mHeight: unset, $objFit: cover) {
|
||||||
|
max-width: $mWidth;
|
||||||
|
max-height: $mHeight;
|
||||||
|
@include stretch;
|
||||||
|
|
||||||
|
img {
|
||||||
|
@include stretch;
|
||||||
|
object-fit: $objFit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin grid($row, $layout) {
|
||||||
|
display: grid;
|
||||||
|
|
||||||
|
@if ($row) {
|
||||||
|
grid-template-rows: $layout;
|
||||||
|
} @else {
|
||||||
|
grid-template-columns: $layout;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin input {
|
||||||
|
border: 0.1rem solid $border-black;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
padding: 1rem 0.8rem;
|
||||||
|
@include stretch;
|
||||||
|
|
||||||
|
&::placeholder {
|
||||||
|
color: $base-gray;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin sectionTitle {
|
||||||
|
font-size: 2.4rem;
|
||||||
|
color: $base-black;
|
||||||
|
letter-spacing: 0.1em;
|
||||||
|
line-height: 3.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin input {
|
||||||
|
border: 1px solid #00822c;
|
||||||
|
padding: 1.4rem;
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,58 @@
|
||||||
|
.video-main-inner {
|
||||||
|
padding: 4.7rem 0 8rem 0;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 4.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-main-top {
|
||||||
|
@include grid(false, repeat(3, 1fr));
|
||||||
|
gap: 6rem;
|
||||||
|
|
||||||
|
h4,
|
||||||
|
span,
|
||||||
|
p {
|
||||||
|
color: $border-black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-main-bottom {
|
||||||
|
padding-top: 3.7rem;
|
||||||
|
@include flex;
|
||||||
|
gap: 2.6rem;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-start;
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: 1.6rem;
|
||||||
|
color: $base-green;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-main-pagination {
|
||||||
|
cursor: pointer;
|
||||||
|
@include imgStyle(4.1rem, 3.8rem, contain);
|
||||||
|
background: $light-black;
|
||||||
|
width: 4.1rem;
|
||||||
|
height: 3.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
@media screen and (max-width: 950px) {
|
||||||
|
.video-main-top {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
gap: 4rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) {
|
||||||
|
.video-main-inner {
|
||||||
|
padding: 2.2rem 0 5rem;
|
||||||
|
gap: 1.3rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) {
|
||||||
|
.video-main-top {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,88 @@
|
||||||
|
.affiche-item-inner {
|
||||||
|
padding: 4.6rem 0 8rem 0;
|
||||||
|
@include grid(false, 67% auto);
|
||||||
|
gap: 5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.affiche-item-content {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 2.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.affiche-item-head {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1.5rem;
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 2.4rem;
|
||||||
|
}
|
||||||
|
span {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
color: $base-green;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.affiche-item-img {
|
||||||
|
@include imgStyle(unset, unset, cover);
|
||||||
|
justify-self: center;
|
||||||
|
align-self: center;
|
||||||
|
}
|
||||||
|
.affiche-item-top {
|
||||||
|
@include grid(false, 64% auto);
|
||||||
|
gap: 1.8rem;
|
||||||
|
|
||||||
|
.affiche-item-data {
|
||||||
|
gap: 1.5rem;
|
||||||
|
justify-self: flex-start;
|
||||||
|
align-self: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.affiche-item-bottom {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1rem;
|
||||||
|
font-size: 1.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.affiche-item-item {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 2.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
@media screen and (max-width: 1080px) {
|
||||||
|
.affiche-item-inner {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
.affiche-item-aside {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.affiche-item-top {
|
||||||
|
@include flex(column-reverse);
|
||||||
|
}
|
||||||
|
|
||||||
|
.affiche-item-top {
|
||||||
|
.affiche-item-data {
|
||||||
|
justify-self: unset;
|
||||||
|
align-self: unset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) {
|
||||||
|
.affiche-item-head {
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
gap: 1rem;
|
||||||
|
h1 {
|
||||||
|
font-size: 1.7rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
color: $mild-gray;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.affiche-item-bottom {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,64 @@
|
||||||
|
.affiche-inner {
|
||||||
|
padding: 4.4rem 0 8rem 0;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 4.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.affiche-item-data {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.affiche-item-data-row {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1.6rem;
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.affiche-item-data-img {
|
||||||
|
width: 1.3rem;
|
||||||
|
height: 1.3rem;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 1.3rem;
|
||||||
|
height: 1.3rem;
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
@media screen and (max-width: 850px) {
|
||||||
|
.affiche-inner {
|
||||||
|
gap: 2.8rem;
|
||||||
|
}
|
||||||
|
.affiche-items {
|
||||||
|
gap: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.affiche-item {
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
.sub-news-left-content-item-img {
|
||||||
|
max-width: unset;
|
||||||
|
max-height: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-left-content-item-date-content-head {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) {
|
||||||
|
.affiche-inner {
|
||||||
|
padding: 2.2rem 0 5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,189 @@
|
||||||
|
.aside {
|
||||||
|
position: sticky;
|
||||||
|
height: fit-content;
|
||||||
|
top: 4.6rem;
|
||||||
|
right: 0;
|
||||||
|
width: 100%;
|
||||||
|
// max-width: 35rem;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 3.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-content-wrapper {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
gap: 2.5rem;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-title {
|
||||||
|
@include sectionTitle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-btns {
|
||||||
|
list-style-type: disc;
|
||||||
|
@include grid(false, 1fr 1fr);
|
||||||
|
button {
|
||||||
|
text-align: left;
|
||||||
|
position: relative;
|
||||||
|
padding: 0.6rem;
|
||||||
|
padding-left: 1.7rem;
|
||||||
|
cursor: pointer;
|
||||||
|
width: 100%;
|
||||||
|
border: 0.1rem solid $base-green;
|
||||||
|
color: $base-green;
|
||||||
|
background: $base-white;
|
||||||
|
@include transition-std;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: "";
|
||||||
|
border-radius: 50%;
|
||||||
|
display: block;
|
||||||
|
width: 0.4rem;
|
||||||
|
height: 0.4rem;
|
||||||
|
background: $base-green;
|
||||||
|
position: absolute;
|
||||||
|
left: 0.6rem;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
@include transition-std;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
color: $base-white;
|
||||||
|
background: $base-green;
|
||||||
|
@include transition-std;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
background: $base-white;
|
||||||
|
@include transition-std;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-content {
|
||||||
|
z-index: 1;
|
||||||
|
grid-column: 1/1;
|
||||||
|
grid-row: 3/3;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1rem;
|
||||||
|
top: 12rem;
|
||||||
|
transform: translate(-100%, -20%) scale(0.7);
|
||||||
|
opacity: 0;
|
||||||
|
width: 100%;
|
||||||
|
@include transition-std(0.5s);
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
z-index: 2;
|
||||||
|
transform: translate(0%, 0%) scale(1);
|
||||||
|
opacity: 1;
|
||||||
|
@include transition-std(0.5s);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-content-item {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1.8rem;
|
||||||
|
|
||||||
|
&:not(:last-child) {
|
||||||
|
padding-bottom: 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-content-item-title {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.4rem;
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
color: $base-red;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
letter-spacing: 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4,
|
||||||
|
span {
|
||||||
|
color: $mild-gray;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-content-item-info {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
line-height: 1.77rem;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-content-more {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 1rem;
|
||||||
|
font-size: 1.3rem;
|
||||||
|
border: 0.1rem solid $base-green;
|
||||||
|
padding: 0.6rem 1rem;
|
||||||
|
background: transparent;
|
||||||
|
color: $base-black;
|
||||||
|
@include transition-std;
|
||||||
|
|
||||||
|
img {
|
||||||
|
opacity: 1;
|
||||||
|
@include transition-std;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: $base-white;
|
||||||
|
background: $base-green;
|
||||||
|
@include transition-std;
|
||||||
|
|
||||||
|
img {
|
||||||
|
opacity: 0;
|
||||||
|
@include transition-std;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-ad-wrapper {
|
||||||
|
@include imgStyle($objFit: cover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.aside-container {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 4rem 0 0;
|
||||||
|
max-width: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
@media screen and (max-width: 1070px) {
|
||||||
|
.aside {
|
||||||
|
max-width: unset;
|
||||||
|
}
|
||||||
|
.aside-ad-wrapper {
|
||||||
|
a {
|
||||||
|
@include stretch;
|
||||||
|
@include flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.aside-container {
|
||||||
|
max-width: 174rem;
|
||||||
|
padding: 0 3rem;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) {
|
||||||
|
.aside-title {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 1.8rem;
|
||||||
|
}
|
||||||
|
.aside-content-wrapper {
|
||||||
|
gap: 2.2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,139 @@
|
||||||
|
.main-news-inner {
|
||||||
|
@include flex;
|
||||||
|
gap: 1.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-inner-content {
|
||||||
|
@include stretch;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 4.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-news-lead {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 71%;
|
||||||
|
position: relative;
|
||||||
|
@include flex;
|
||||||
|
justify-content: flex-start;
|
||||||
|
align-items: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-news-bg {
|
||||||
|
@include imgStyle($objFit: cover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-news-overlay {
|
||||||
|
z-index: 1;
|
||||||
|
@include stretch;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
background: linear-gradient(
|
||||||
|
180deg,
|
||||||
|
rgba(0, 0, 0, 0) 0%,
|
||||||
|
rgba(0, 0, 0, 0.7) 100%
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-news-info {
|
||||||
|
padding: 0 2.7rem;
|
||||||
|
z-index: 2;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 3.2rem;
|
||||||
|
left: 0rem;
|
||||||
|
width: 100%;
|
||||||
|
@include flex(column);
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-news-info-title {
|
||||||
|
@include flex;
|
||||||
|
gap: 0.4rem;
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
color: $base-white;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
color: $base-red;
|
||||||
|
letter-spacing: 0.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
color: $base-white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-news-info-content {
|
||||||
|
font-size: 1.6rem;
|
||||||
|
color: $base-white;
|
||||||
|
line-height: 2.179rem;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-news-container {
|
||||||
|
padding-right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-news-min {
|
||||||
|
@include stretch;
|
||||||
|
max-width: 29%;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1.7rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-news-min-item {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-news-min-bg {
|
||||||
|
@include imgStyle($objFit: cover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-news-min-info {
|
||||||
|
position: absolute;
|
||||||
|
padding: 0 1.2rem;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0.7rem;
|
||||||
|
display: block;
|
||||||
|
font-size: 1rem;
|
||||||
|
line-height: 1.362rem;
|
||||||
|
color: $base-white;
|
||||||
|
z-index: 2;
|
||||||
|
font-weight: bold;
|
||||||
|
text-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
@media screen and (max-width: 1070px) {
|
||||||
|
.main-news-container {
|
||||||
|
padding-right: 4rem;
|
||||||
|
}
|
||||||
|
.main-inner {
|
||||||
|
@include flex(column);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 950px) {
|
||||||
|
.main-news-min {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.main-news-lead {
|
||||||
|
max-width: unset;
|
||||||
|
}
|
||||||
|
.main-news-container {
|
||||||
|
max-width: unset;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
.main-news-info-title {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
}
|
||||||
|
.main-news-info-content {
|
||||||
|
font-size: 1.5rem;
|
||||||
|
}
|
||||||
|
.main-inner-content {
|
||||||
|
gap: 2.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,134 @@
|
||||||
|
.media {
|
||||||
|
background: $mild-gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-inner {
|
||||||
|
padding: 4rem 0;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 5.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-head {
|
||||||
|
h2 {
|
||||||
|
color: $base-white;
|
||||||
|
}
|
||||||
|
span {
|
||||||
|
border: 0.1rem solid $base-white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.media-videos {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-item {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 0.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video {
|
||||||
|
@include stretch;
|
||||||
|
|
||||||
|
video {
|
||||||
|
@include stretch;
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
@include stretch;
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-info {
|
||||||
|
h4,
|
||||||
|
span,
|
||||||
|
p {
|
||||||
|
color: $base-white;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.swiper {
|
||||||
|
position: relative !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-prev {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
left: 0;
|
||||||
|
top: 30%;
|
||||||
|
position: absolute;
|
||||||
|
background: rgba(39, 39, 39, 0.7);
|
||||||
|
height: 6rem;
|
||||||
|
width: 4rem;
|
||||||
|
z-index: 2;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 3.2rem;
|
||||||
|
height: 3.2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.video-next {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
right: 0;
|
||||||
|
top: 30%;
|
||||||
|
position: absolute;
|
||||||
|
background: rgba(39, 39, 39, 0.7);
|
||||||
|
height: 6rem;
|
||||||
|
width: 4rem;
|
||||||
|
z-index: 2;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: 3.2rem;
|
||||||
|
height: 3.2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.partners {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 4.6rem;
|
||||||
|
|
||||||
|
.swiper-slide {
|
||||||
|
@include flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.swiper-slide-active {
|
||||||
|
.partners-item {
|
||||||
|
transform: scale(1.1);
|
||||||
|
@include transition-std;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.partners-item {
|
||||||
|
@include imgStyle(16.7rem, 8.7rem, contain);
|
||||||
|
transform: scale(0.8);
|
||||||
|
@include transition-std;
|
||||||
|
}
|
||||||
|
|
||||||
|
.partners-head {
|
||||||
|
@include sectionTitle;
|
||||||
|
text-align: center;
|
||||||
|
color: $base-white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.partner-prev,
|
||||||
|
.partner-next {
|
||||||
|
background: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
@media screen and (max-width: 950px) {
|
||||||
|
.media {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,63 @@
|
||||||
|
.posts {
|
||||||
|
padding: 4rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.posts-inner {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.posts-content {
|
||||||
|
display: grid;
|
||||||
|
grid-template-areas: "big big sm1 sm2" "big big sm3 sm4" "sm5 sm6 sm7 sm8";
|
||||||
|
gap: 2.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.posts-item {
|
||||||
|
&.sm {
|
||||||
|
.trending-img {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.big {
|
||||||
|
grid-area: big;
|
||||||
|
}
|
||||||
|
&.sm1 {
|
||||||
|
grid-area: sm1;
|
||||||
|
}
|
||||||
|
&.sm2 {
|
||||||
|
grid-area: sm2;
|
||||||
|
}
|
||||||
|
&.sm3 {
|
||||||
|
grid-area: sm3;
|
||||||
|
}
|
||||||
|
&.sm4 {
|
||||||
|
grid-area: sm4;
|
||||||
|
}
|
||||||
|
&.sm5 {
|
||||||
|
grid-area: sm5;
|
||||||
|
}
|
||||||
|
&.sm6 {
|
||||||
|
grid-area: sm6;
|
||||||
|
}
|
||||||
|
&.sm7 {
|
||||||
|
grid-area: sm7;
|
||||||
|
}
|
||||||
|
&.sm8 {
|
||||||
|
grid-area: sm8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
@media screen and (max-width: 950px) {
|
||||||
|
.posts-item.big {
|
||||||
|
grid-area: none;
|
||||||
|
@include stretch;
|
||||||
|
}
|
||||||
|
.posts-content {
|
||||||
|
@include flex;
|
||||||
|
}
|
||||||
|
.posts-item.sm {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,181 @@
|
||||||
|
.sub-news-left {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1.8rem;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
@include sectionTitle;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-left-content {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 2rem;
|
||||||
|
height: 100%;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-inner {
|
||||||
|
@include grid(false, 1fr 1fr);
|
||||||
|
gap: 3.5rem;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-left-content-item {
|
||||||
|
@include flex;
|
||||||
|
gap: 0.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-left-content-item-img {
|
||||||
|
@include imgStyle(11.7rem, 7.5rem, cover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-left-content-item-content {
|
||||||
|
@include stretch;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 0.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-left-content-item-date-content-head {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 0.4rem;
|
||||||
|
color: $base-green;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-left-content-item-date-content-info {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
color: $base-black;
|
||||||
|
line-height: 1.6rem;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 3;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
|
||||||
|
// SUB NEWS RIGHT
|
||||||
|
.sub-news {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-right {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 2rem;
|
||||||
|
justify-content: space-between;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-right-top {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1.5rem;
|
||||||
|
h2 {
|
||||||
|
padding-bottom: 0.3rem;
|
||||||
|
@include sectionTitle;
|
||||||
|
font-weight: 600;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-right-top-content {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1.5rem;
|
||||||
|
height: 100%;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-right-top-item {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 7.5rem;
|
||||||
|
|
||||||
|
p {
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-right-bottom {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1.8rem;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
@include sectionTitle;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-right-bottom-content {
|
||||||
|
@include grid(false, 1fr 1fr 1fr);
|
||||||
|
gap: 0.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-right-bottom-item {
|
||||||
|
display: block;
|
||||||
|
position: relative;
|
||||||
|
font-size: 1.3rem;
|
||||||
|
background: $base-green;
|
||||||
|
padding: 0.6rem 1rem;
|
||||||
|
padding-left: 2rem;
|
||||||
|
@include transition-std;
|
||||||
|
color: $base-white;
|
||||||
|
letter-spacing: 0.05em;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: $base-red;
|
||||||
|
@include transition-std;
|
||||||
|
}
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: "";
|
||||||
|
border-radius: 50%;
|
||||||
|
display: block;
|
||||||
|
width: 0.4rem;
|
||||||
|
height: 0.4rem;
|
||||||
|
background: #00822c;
|
||||||
|
position: absolute;
|
||||||
|
left: 0.6rem;
|
||||||
|
top: 50%;
|
||||||
|
background: $base-white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
@media screen and (max-width: 800px) {
|
||||||
|
.sub-news-left,
|
||||||
|
.sub-news-right-top,
|
||||||
|
.sub-news-right-bottom {
|
||||||
|
h2 {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 1.8rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.sub-news-right-bottom-content {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sub-news-right-top-item {
|
||||||
|
min-height: unset;
|
||||||
|
}
|
||||||
|
.sub-news-right-top-content {
|
||||||
|
gap: 2.5rem;
|
||||||
|
}
|
||||||
|
.sub-news-right {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 5rem;
|
||||||
|
}
|
||||||
|
.main-inner {
|
||||||
|
gap: 5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 780px) {
|
||||||
|
.sub-news-inner {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,105 @@
|
||||||
|
.trending {
|
||||||
|
padding: 4.6rem 0 4rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trending-inner {
|
||||||
|
@include grid(false, 1fr 1fr 1fr);
|
||||||
|
gap: 3.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trending-banner {
|
||||||
|
@include imgStyle(unset, unset, contain);
|
||||||
|
}
|
||||||
|
|
||||||
|
.trending-head {
|
||||||
|
@include flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 1.5rem;
|
||||||
|
h2 {
|
||||||
|
@include sectionTitle;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
span {
|
||||||
|
width: 100%;
|
||||||
|
border-top: 0.1rem solid $base-green;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.trending-aside,
|
||||||
|
.trending-main {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 2.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trending-aside-item {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trending-img {
|
||||||
|
@include imgStyle($objFit: cover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.trending-aside-content {
|
||||||
|
@include stretch;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 0.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trending-aside-content-head {
|
||||||
|
h3 {
|
||||||
|
color: $base-green;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4,
|
||||||
|
span {
|
||||||
|
color: $mild-gray;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.trending-main-content {
|
||||||
|
@include grid(false, 1fr);
|
||||||
|
gap: 3.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trending-item {
|
||||||
|
@include flex;
|
||||||
|
gap: 0.8rem;
|
||||||
|
|
||||||
|
.trending-img {
|
||||||
|
@include imgStyle(11.7rem, 7.5rem, cover);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.trending-main-content-inner {
|
||||||
|
@include stretch;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 0.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
@media screen and (max-width: 1150px) {
|
||||||
|
.trending-banner {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.trending-inner {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 950px) {
|
||||||
|
.trending-inner {
|
||||||
|
@include flex(column-reverse);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 800px) {
|
||||||
|
.trending-head {
|
||||||
|
h2 {
|
||||||
|
font-size: 2rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.trending-main-content {
|
||||||
|
gap: 2.5rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,77 @@
|
||||||
|
.useful-inner {
|
||||||
|
padding: 4rem 0;
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 67% auto;
|
||||||
|
gap: 3.6rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.useful-aside-item-top {
|
||||||
|
@include flex;
|
||||||
|
gap: 1rem;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
color: $base-green;
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.useful-aside-img {
|
||||||
|
@include imgStyle(7.7rem, 8.5rem, cover);
|
||||||
|
}
|
||||||
|
|
||||||
|
.useful-aside-item {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 1rem;
|
||||||
|
max-height: 7.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.useful-aside-item-bottom {
|
||||||
|
p {
|
||||||
|
font-size: 1.3rem;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 3;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.useful-aside-content {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 3.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.useful-aside {
|
||||||
|
@include flex(column);
|
||||||
|
gap: 2.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.useful-main-content {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Media
|
||||||
|
@media screen and (max-width: 1250px) {
|
||||||
|
.useful-inner {
|
||||||
|
grid-template-columns: 2fr 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 1100px) {
|
||||||
|
.useful-inner {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 950px) {
|
||||||
|
.useful-main-content {
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
}
|
||||||
|
.trending-item {
|
||||||
|
&:nth-child(6),
|
||||||
|
&:nth-child(7),
|
||||||
|
&:nth-child(8) {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,59 @@
|
||||||
|
.rubric-inner {
|
||||||
|
padding: 4.7rem 0 8rem 0;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 4.3rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rubric-items {
|
||||||
|
padding: 0 6.7rem;
|
||||||
|
@include flex(column);
|
||||||
|
gap: 8rem;
|
||||||
|
}
|
||||||
|
.rubric-item {
|
||||||
|
align-items: center;
|
||||||
|
gap: 1.5rem;
|
||||||
|
.sub-news-left-content-item-date-content-info {
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-line-clamp: 4;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
font-size: 1.5rem;
|
||||||
|
line-height: 2.5rem;
|
||||||
|
}
|
||||||
|
.sub-news-left-content-item-img {
|
||||||
|
@include imgStyle(35rem, 20rem, cover);
|
||||||
|
}
|
||||||
|
.sub-news-left-content-item-content {
|
||||||
|
gap: 0.8rem;
|
||||||
|
h3 {
|
||||||
|
font-size: 1.8rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.sub-news-left-content-item-date-content-head {
|
||||||
|
font-size: 1.4rem;
|
||||||
|
color: $base-gray;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.rubric-bottom {
|
||||||
|
padding: 0 6.7rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1080px) {
|
||||||
|
.rubric-items,
|
||||||
|
.rubric-bottom {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 900px) {
|
||||||
|
.rubric-item {
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
.sub-news-left-content-item-img {
|
||||||
|
max-width: unset;
|
||||||
|
max-height: unset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
@import "./variables";
|
||||||
|
@import "./swiper-bundle.min.css";
|
||||||
|
@import "./general";
|
||||||
|
@import "./header";
|
||||||
|
@import "./nav";
|
||||||
|
@import "./main";
|
||||||
|
@import "./footer";
|
||||||
|
@import "./video";
|
||||||
|
@import "./photo";
|
||||||
|
@import "./rubric";
|
||||||
|
@import "./article";
|
||||||
|
@import "./affiche";
|
||||||
|
@import "./contact";
|
||||||
|
|
@ -0,0 +1,651 @@
|
||||||
|
/**
|
||||||
|
* Swiper 8.4.4
|
||||||
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
||||||
|
* https://swiperjs.com
|
||||||
|
*
|
||||||
|
* Copyright 2014-2022 Vladimir Kharlampidi
|
||||||
|
*
|
||||||
|
* Released under the MIT License
|
||||||
|
*
|
||||||
|
* Released on: October 12, 2022
|
||||||
|
*/
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: swiper-icons;
|
||||||
|
src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
:root {
|
||||||
|
--swiper-theme-color: #007aff;
|
||||||
|
}
|
||||||
|
.swiper {
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.swiper-vertical > .swiper-wrapper {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.swiper-wrapper {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: 1;
|
||||||
|
display: flex;
|
||||||
|
transition-property: transform;
|
||||||
|
box-sizing: content-box;
|
||||||
|
}
|
||||||
|
.swiper-android .swiper-slide,
|
||||||
|
.swiper-wrapper {
|
||||||
|
transform: translate3d(0px, 0, 0);
|
||||||
|
}
|
||||||
|
.swiper-pointer-events {
|
||||||
|
touch-action: pan-y;
|
||||||
|
}
|
||||||
|
.swiper-pointer-events.swiper-vertical {
|
||||||
|
touch-action: pan-x;
|
||||||
|
}
|
||||||
|
.swiper-slide {
|
||||||
|
flex-shrink: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: relative;
|
||||||
|
transition-property: transform;
|
||||||
|
}
|
||||||
|
.swiper-slide-invisible-blank {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
.swiper-autoheight,
|
||||||
|
.swiper-autoheight .swiper-slide {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
.swiper-autoheight .swiper-wrapper {
|
||||||
|
align-items: flex-start;
|
||||||
|
transition-property: transform, height;
|
||||||
|
}
|
||||||
|
.swiper-backface-hidden .swiper-slide {
|
||||||
|
transform: translateZ(0);
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
.swiper-3d,
|
||||||
|
.swiper-3d.swiper-css-mode .swiper-wrapper {
|
||||||
|
perspective: 1200px;
|
||||||
|
}
|
||||||
|
.swiper-3d .swiper-cube-shadow,
|
||||||
|
.swiper-3d .swiper-slide,
|
||||||
|
.swiper-3d .swiper-slide-shadow,
|
||||||
|
.swiper-3d .swiper-slide-shadow-bottom,
|
||||||
|
.swiper-3d .swiper-slide-shadow-left,
|
||||||
|
.swiper-3d .swiper-slide-shadow-right,
|
||||||
|
.swiper-3d .swiper-slide-shadow-top,
|
||||||
|
.swiper-3d .swiper-wrapper {
|
||||||
|
transform-style: preserve-3d;
|
||||||
|
}
|
||||||
|
.swiper-3d .swiper-slide-shadow,
|
||||||
|
.swiper-3d .swiper-slide-shadow-bottom,
|
||||||
|
.swiper-3d .swiper-slide-shadow-left,
|
||||||
|
.swiper-3d .swiper-slide-shadow-right,
|
||||||
|
.swiper-3d .swiper-slide-shadow-top {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
.swiper-3d .swiper-slide-shadow {
|
||||||
|
background: rgba(0, 0, 0, 0.15);
|
||||||
|
}
|
||||||
|
.swiper-3d .swiper-slide-shadow-left {
|
||||||
|
background-image: linear-gradient(
|
||||||
|
to left,
|
||||||
|
rgba(0, 0, 0, 0.5),
|
||||||
|
rgba(0, 0, 0, 0)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
.swiper-3d .swiper-slide-shadow-right {
|
||||||
|
background-image: linear-gradient(
|
||||||
|
to right,
|
||||||
|
rgba(0, 0, 0, 0.5),
|
||||||
|
rgba(0, 0, 0, 0)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
.swiper-3d .swiper-slide-shadow-top {
|
||||||
|
background-image: linear-gradient(
|
||||||
|
to top,
|
||||||
|
rgba(0, 0, 0, 0.5),
|
||||||
|
rgba(0, 0, 0, 0)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
.swiper-3d .swiper-slide-shadow-bottom {
|
||||||
|
background-image: linear-gradient(
|
||||||
|
to bottom,
|
||||||
|
rgba(0, 0, 0, 0.5),
|
||||||
|
rgba(0, 0, 0, 0)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
.swiper-css-mode > .swiper-wrapper {
|
||||||
|
overflow: auto;
|
||||||
|
scrollbar-width: none;
|
||||||
|
-ms-overflow-style: none;
|
||||||
|
}
|
||||||
|
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
|
||||||
|
scroll-snap-align: start start;
|
||||||
|
}
|
||||||
|
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
|
||||||
|
scroll-snap-type: x mandatory;
|
||||||
|
}
|
||||||
|
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
|
||||||
|
scroll-snap-type: y mandatory;
|
||||||
|
}
|
||||||
|
.swiper-centered > .swiper-wrapper::before {
|
||||||
|
content: "";
|
||||||
|
flex-shrink: 0;
|
||||||
|
order: 9999;
|
||||||
|
}
|
||||||
|
.swiper-centered.swiper-horizontal
|
||||||
|
> .swiper-wrapper
|
||||||
|
> .swiper-slide:first-child {
|
||||||
|
margin-inline-start: var(--swiper-centered-offset-before);
|
||||||
|
}
|
||||||
|
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
|
||||||
|
height: 100%;
|
||||||
|
min-height: 1px;
|
||||||
|
width: var(--swiper-centered-offset-after);
|
||||||
|
}
|
||||||
|
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
|
||||||
|
margin-block-start: var(--swiper-centered-offset-before);
|
||||||
|
}
|
||||||
|
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
|
||||||
|
width: 100%;
|
||||||
|
min-width: 1px;
|
||||||
|
height: var(--swiper-centered-offset-after);
|
||||||
|
}
|
||||||
|
.swiper-centered > .swiper-wrapper > .swiper-slide {
|
||||||
|
scroll-snap-align: center center;
|
||||||
|
}
|
||||||
|
.swiper-virtual .swiper-slide {
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
transform: translateZ(0);
|
||||||
|
}
|
||||||
|
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
|
||||||
|
height: 1px;
|
||||||
|
width: var(--swiper-virtual-size);
|
||||||
|
}
|
||||||
|
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
|
||||||
|
width: 1px;
|
||||||
|
height: var(--swiper-virtual-size);
|
||||||
|
}
|
||||||
|
:root {
|
||||||
|
--swiper-navigation-size: 44px;
|
||||||
|
}
|
||||||
|
.swiper-button-next,
|
||||||
|
.swiper-button-prev {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
width: calc(var(--swiper-navigation-size) / 44 * 27);
|
||||||
|
height: var(--swiper-navigation-size);
|
||||||
|
margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
|
||||||
|
z-index: 10;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
color: var(--swiper-navigation-color, var(--swiper-theme-color));
|
||||||
|
}
|
||||||
|
.swiper-button-next.swiper-button-disabled,
|
||||||
|
.swiper-button-prev.swiper-button-disabled {
|
||||||
|
opacity: 0.35;
|
||||||
|
cursor: auto;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.swiper-button-next.swiper-button-hidden,
|
||||||
|
.swiper-button-prev.swiper-button-hidden {
|
||||||
|
opacity: 0;
|
||||||
|
cursor: auto;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.swiper-navigation-disabled .swiper-button-next,
|
||||||
|
.swiper-navigation-disabled .swiper-button-prev {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
.swiper-button-next:after,
|
||||||
|
.swiper-button-prev:after {
|
||||||
|
font-family: swiper-icons;
|
||||||
|
font-size: var(--swiper-navigation-size);
|
||||||
|
text-transform: none !important;
|
||||||
|
letter-spacing: 0;
|
||||||
|
font-variant: initial;
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
.swiper-button-prev,
|
||||||
|
.swiper-rtl .swiper-button-next {
|
||||||
|
left: 10px;
|
||||||
|
right: auto;
|
||||||
|
}
|
||||||
|
.swiper-button-prev:after,
|
||||||
|
.swiper-rtl .swiper-button-next:after {
|
||||||
|
content: "prev";
|
||||||
|
}
|
||||||
|
.swiper-button-next,
|
||||||
|
.swiper-rtl .swiper-button-prev {
|
||||||
|
right: 10px;
|
||||||
|
left: auto;
|
||||||
|
}
|
||||||
|
.swiper-button-next:after,
|
||||||
|
.swiper-rtl .swiper-button-prev:after {
|
||||||
|
content: "next";
|
||||||
|
}
|
||||||
|
.swiper-button-lock {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.swiper-pagination {
|
||||||
|
position: absolute;
|
||||||
|
text-align: center;
|
||||||
|
transition: 0.3s opacity;
|
||||||
|
transform: translate3d(0, 0, 0);
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
.swiper-pagination.swiper-pagination-hidden {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
.swiper-pagination-disabled > .swiper-pagination,
|
||||||
|
.swiper-pagination.swiper-pagination-disabled {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
.swiper-horizontal > .swiper-pagination-bullets,
|
||||||
|
.swiper-pagination-bullets.swiper-pagination-horizontal,
|
||||||
|
.swiper-pagination-custom,
|
||||||
|
.swiper-pagination-fraction {
|
||||||
|
bottom: 10px;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.swiper-pagination-bullets-dynamic {
|
||||||
|
overflow: hidden;
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
|
||||||
|
transform: scale(0.33);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
|
||||||
|
transform: scale(0.66);
|
||||||
|
}
|
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
|
||||||
|
transform: scale(0.33);
|
||||||
|
}
|
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
|
||||||
|
transform: scale(0.66);
|
||||||
|
}
|
||||||
|
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
|
||||||
|
transform: scale(0.33);
|
||||||
|
}
|
||||||
|
.swiper-pagination-bullet {
|
||||||
|
width: var(
|
||||||
|
--swiper-pagination-bullet-width,
|
||||||
|
var(--swiper-pagination-bullet-size, 8px)
|
||||||
|
);
|
||||||
|
height: var(
|
||||||
|
--swiper-pagination-bullet-height,
|
||||||
|
var(--swiper-pagination-bullet-size, 8px)
|
||||||
|
);
|
||||||
|
display: inline-block;
|
||||||
|
border-radius: 50%;
|
||||||
|
background: var(--swiper-pagination-bullet-inactive-color, #000);
|
||||||
|
opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
|
||||||
|
}
|
||||||
|
button.swiper-pagination-bullet {
|
||||||
|
border: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-shadow: none;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
appearance: none;
|
||||||
|
}
|
||||||
|
.swiper-pagination-clickable .swiper-pagination-bullet {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.swiper-pagination-bullet:only-child {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
.swiper-pagination-bullet-active {
|
||||||
|
opacity: var(--swiper-pagination-bullet-opacity, 1);
|
||||||
|
background: var(--swiper-pagination-color, var(--swiper-theme-color));
|
||||||
|
}
|
||||||
|
.swiper-pagination-vertical.swiper-pagination-bullets,
|
||||||
|
.swiper-vertical > .swiper-pagination-bullets {
|
||||||
|
right: 10px;
|
||||||
|
top: 50%;
|
||||||
|
transform: translate3d(0px, -50%, 0);
|
||||||
|
}
|
||||||
|
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
|
||||||
|
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
|
||||||
|
margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
|
||||||
|
.swiper-vertical
|
||||||
|
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
width: 8px;
|
||||||
|
}
|
||||||
|
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
|
||||||
|
.swiper-pagination-bullet,
|
||||||
|
.swiper-vertical
|
||||||
|
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
|
||||||
|
.swiper-pagination-bullet {
|
||||||
|
display: inline-block;
|
||||||
|
transition: 0.2s transform, 0.2s top;
|
||||||
|
}
|
||||||
|
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
|
||||||
|
.swiper-pagination-horizontal.swiper-pagination-bullets
|
||||||
|
.swiper-pagination-bullet {
|
||||||
|
margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
|
||||||
|
}
|
||||||
|
.swiper-horizontal
|
||||||
|
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
|
||||||
|
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
|
||||||
|
left: 50%;
|
||||||
|
transform: translateX(-50%);
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.swiper-horizontal
|
||||||
|
> .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
|
||||||
|
.swiper-pagination-bullet,
|
||||||
|
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
|
||||||
|
.swiper-pagination-bullet {
|
||||||
|
transition: 0.2s transform, 0.2s left;
|
||||||
|
}
|
||||||
|
.swiper-horizontal.swiper-rtl
|
||||||
|
> .swiper-pagination-bullets-dynamic
|
||||||
|
.swiper-pagination-bullet {
|
||||||
|
transition: 0.2s transform, 0.2s right;
|
||||||
|
}
|
||||||
|
.swiper-pagination-progressbar {
|
||||||
|
background: rgba(0, 0, 0, 0.25);
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
|
||||||
|
background: var(--swiper-pagination-color, var(--swiper-theme-color));
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
transform: scale(0);
|
||||||
|
transform-origin: left top;
|
||||||
|
}
|
||||||
|
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
|
||||||
|
transform-origin: right top;
|
||||||
|
}
|
||||||
|
.swiper-horizontal > .swiper-pagination-progressbar,
|
||||||
|
.swiper-pagination-progressbar.swiper-pagination-horizontal,
|
||||||
|
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
|
||||||
|
.swiper-vertical
|
||||||
|
> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
|
||||||
|
width: 100%;
|
||||||
|
height: 4px;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
.swiper-horizontal
|
||||||
|
> .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
|
||||||
|
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
|
||||||
|
.swiper-pagination-progressbar.swiper-pagination-vertical,
|
||||||
|
.swiper-vertical > .swiper-pagination-progressbar {
|
||||||
|
width: 4px;
|
||||||
|
height: 100%;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
.swiper-pagination-lock {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.swiper-scrollbar {
|
||||||
|
border-radius: 10px;
|
||||||
|
position: relative;
|
||||||
|
-ms-touch-action: none;
|
||||||
|
background: rgba(0, 0, 0, 0.1);
|
||||||
|
}
|
||||||
|
.swiper-scrollbar-disabled > .swiper-scrollbar,
|
||||||
|
.swiper-scrollbar.swiper-scrollbar-disabled {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
.swiper-horizontal > .swiper-scrollbar,
|
||||||
|
.swiper-scrollbar.swiper-scrollbar-horizontal {
|
||||||
|
position: absolute;
|
||||||
|
left: 1%;
|
||||||
|
bottom: 3px;
|
||||||
|
z-index: 50;
|
||||||
|
height: 5px;
|
||||||
|
width: 98%;
|
||||||
|
}
|
||||||
|
.swiper-scrollbar.swiper-scrollbar-vertical,
|
||||||
|
.swiper-vertical > .swiper-scrollbar {
|
||||||
|
position: absolute;
|
||||||
|
right: 3px;
|
||||||
|
top: 1%;
|
||||||
|
z-index: 50;
|
||||||
|
width: 5px;
|
||||||
|
height: 98%;
|
||||||
|
}
|
||||||
|
.swiper-scrollbar-drag {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
background: rgba(0, 0, 0, 0.5);
|
||||||
|
border-radius: 10px;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
.swiper-scrollbar-cursor-drag {
|
||||||
|
cursor: move;
|
||||||
|
}
|
||||||
|
.swiper-scrollbar-lock {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.swiper-zoom-container {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.swiper-zoom-container > canvas,
|
||||||
|
.swiper-zoom-container > img,
|
||||||
|
.swiper-zoom-container > svg {
|
||||||
|
max-width: 100%;
|
||||||
|
max-height: 100%;
|
||||||
|
object-fit: contain;
|
||||||
|
}
|
||||||
|
.swiper-slide-zoomed {
|
||||||
|
cursor: move;
|
||||||
|
}
|
||||||
|
.swiper-lazy-preloader {
|
||||||
|
width: 42px;
|
||||||
|
height: 42px;
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
margin-left: -21px;
|
||||||
|
margin-top: -21px;
|
||||||
|
z-index: 10;
|
||||||
|
transform-origin: 50%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
|
||||||
|
border-radius: 50%;
|
||||||
|
border-top-color: transparent;
|
||||||
|
}
|
||||||
|
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
|
||||||
|
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
|
||||||
|
animation: swiper-preloader-spin 1s infinite linear;
|
||||||
|
}
|
||||||
|
.swiper-lazy-preloader-white {
|
||||||
|
--swiper-preloader-color: #fff;
|
||||||
|
}
|
||||||
|
.swiper-lazy-preloader-black {
|
||||||
|
--swiper-preloader-color: #000;
|
||||||
|
}
|
||||||
|
@keyframes swiper-preloader-spin {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(360deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.swiper .swiper-notification {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
opacity: 0;
|
||||||
|
z-index: -1000;
|
||||||
|
}
|
||||||
|
.swiper-free-mode > .swiper-wrapper {
|
||||||
|
transition-timing-function: ease-out;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
.swiper-grid > .swiper-wrapper {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
.swiper-grid-column > .swiper-wrapper {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.swiper-fade.swiper-free-mode .swiper-slide {
|
||||||
|
transition-timing-function: ease-out;
|
||||||
|
}
|
||||||
|
.swiper-fade .swiper-slide {
|
||||||
|
pointer-events: none;
|
||||||
|
transition-property: opacity;
|
||||||
|
}
|
||||||
|
.swiper-fade .swiper-slide .swiper-slide {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.swiper-fade .swiper-slide-active,
|
||||||
|
.swiper-fade .swiper-slide-active .swiper-slide-active {
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
.swiper-cube {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
.swiper-cube .swiper-slide {
|
||||||
|
pointer-events: none;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
backface-visibility: hidden;
|
||||||
|
z-index: 1;
|
||||||
|
visibility: hidden;
|
||||||
|
transform-origin: 0 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.swiper-cube .swiper-slide .swiper-slide {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.swiper-cube.swiper-rtl .swiper-slide {
|
||||||
|
transform-origin: 100% 0;
|
||||||
|
}
|
||||||
|
.swiper-cube .swiper-slide-active,
|
||||||
|
.swiper-cube .swiper-slide-active .swiper-slide-active {
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
.swiper-cube .swiper-slide-active,
|
||||||
|
.swiper-cube .swiper-slide-next,
|
||||||
|
.swiper-cube .swiper-slide-next + .swiper-slide,
|
||||||
|
.swiper-cube .swiper-slide-prev {
|
||||||
|
pointer-events: auto;
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
.swiper-cube .swiper-slide-shadow-bottom,
|
||||||
|
.swiper-cube .swiper-slide-shadow-left,
|
||||||
|
.swiper-cube .swiper-slide-shadow-right,
|
||||||
|
.swiper-cube .swiper-slide-shadow-top {
|
||||||
|
z-index: 0;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
.swiper-cube .swiper-cube-shadow {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
bottom: 0px;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
opacity: 0.6;
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
.swiper-cube .swiper-cube-shadow:before {
|
||||||
|
content: "";
|
||||||
|
background: #000;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
filter: blur(50px);
|
||||||
|
}
|
||||||
|
.swiper-flip {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
.swiper-flip .swiper-slide {
|
||||||
|
pointer-events: none;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
backface-visibility: hidden;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.swiper-flip .swiper-slide .swiper-slide {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.swiper-flip .swiper-slide-active,
|
||||||
|
.swiper-flip .swiper-slide-active .swiper-slide-active {
|
||||||
|
pointer-events: auto;
|
||||||
|
}
|
||||||
|
.swiper-flip .swiper-slide-shadow-bottom,
|
||||||
|
.swiper-flip .swiper-slide-shadow-left,
|
||||||
|
.swiper-flip .swiper-slide-shadow-right,
|
||||||
|
.swiper-flip .swiper-slide-shadow-top {
|
||||||
|
z-index: 0;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
.swiper-creative .swiper-slide {
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
backface-visibility: hidden;
|
||||||
|
overflow: hidden;
|
||||||
|
transition-property: transform, opacity, height;
|
||||||
|
}
|
||||||
|
.swiper-cards {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
|
.swiper-cards .swiper-slide {
|
||||||
|
transform-origin: center bottom;
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
backface-visibility: hidden;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
@ -4,24 +4,22 @@ meta_title = "About us"
|
||||||
meta_description = "english"
|
meta_description = "english"
|
||||||
meta_keywords = "en en en"
|
meta_keywords = "en en en"
|
||||||
==
|
==
|
||||||
<h3><strong>Информационный портал ORIENT</strong></h3>
|
<h3><strong>ORIENT Informational Portal – your opinion is valuable</strong></h3>
|
||||||
|
|
||||||
<p class="about__para">ORIENT – ваше мнение ценно</p>
|
<p class="about__para">Website ORIENT.tm – a new player in the information market of Turkmenistan.</p>
|
||||||
|
|
||||||
<p class="about__para">Сайт ORIENT.tm – новый игрок на информационном рынке Туркменистана.</p>
|
<p class="about__para">The economic society "Media Turkmen" is the first non–governmental news agency in Turkmenistan, registered with the official bodies of the country in April 2017. It includes two divisions operating under the same brand: the ORIENT website and a production studio that create news, photo, video and advertising content.</p>
|
||||||
|
|
||||||
<p class="about__para">Индивидуальное предприятие «Media Turkmen» – первое негосударственное информационное агентство в Туркменистане, зарегистрированное в официальных органах страны в апреле 2017 года. Оно включает в себя два подразделения, работающие под одним брендом: сайт ORIENT и продакшн-студию, которые создают новостной, фото, видео и рекламный контент.</p>
|
<p class="about__para">The ORIENT team consists mainly of young journalists, graduates of Turkmen and foreign universities. The Media Turkmen news Agency also attracts experienced journalists to cooperate, who conduct master classes and seminars to improve the skills of the team.</p>
|
||||||
|
|
||||||
<p class="about__para">Команда ORIENT – это, в основном, молодые журналисты, выпускники туркменских и зарубежных вузов. Информационное агентство «Media Turkmen» также привлекает к сотрудничеству опытных журналистов, которые проводят мастер-классы и семинары для повышения квалификации команды.</p>
|
<p class="about__para">In 2018, ORIENT became the General Media Partner of the World Weightlifting Championships held in Ashgabat and the region's largest profile forum "Oil and Gas of Turkmenistan 2018".</p>
|
||||||
|
|
||||||
<p class="about__para">В 2018 году ORIENT стал Генеральным медиа-партнером Чемпионата мира по тяжелой атлетике, прошедшего в Ашхабаде, и крупнейшего в регионе профильного форума «Нефть и Газ Туркменистана 2018».</p>
|
<p class="about__para">This year ORIENT became the General Media Partner of the 10th International Gas Congress TGC-2019 and in May there were publications about this forum, participants and sponsors.</p>
|
||||||
|
|
||||||
<p class="about__para">В этом году ORIENT стал Генеральным медиа-партнером 10-го Международного Газового конгресса TGC-2019 и в мае месяце были публикации об этом форуме, участниках и спонсорах.</p>
|
<p class="about__para">On July 12, 2019, ORIENT signed an agreement with China Daily Multimedia Co., Ltd., on cooperation in the mutual exchange of news and their promotion on their platforms, as well as the implementation of joint media projects.</p>
|
||||||
|
|
||||||
<p class="about__para">12 июля 2019 года ORIENT подписал соглашение с изданием China Daily Multimedia Co., Ltd., о сотрудничестве по взаимному обмену новостями и продвижению их на своих площадках, а также осуществлению совместных медиа проектов.</p>
|
<p class="about__para">On August 15, 2019, ORIENT signed a Memorandum of cooperation in the exchange of news materials with the Austrian-Turkmen Society.</p>
|
||||||
|
|
||||||
<p class="about__para">15 августа 2019 года ORIENT подписал Меморандум о сотрудничестве в сфере обмена новостными материалами с Австрийско-туркменским обществом.</p>
|
<p class="about__para">On November 11, 2019, ORIENT signed a Memorandum of cooperation in the exchange of news materials with the magazine "International Life" of the Ministry of Foreign Affairs of the Russian Federation.</p>
|
||||||
|
|
||||||
<p class="about__para">11 ноября 2019 года ORIENT подписал Меморандум о сотрудничестве в сфере обмена новостными материалами с журналом «Международная жизнь» Министерства иностранных дел Российской Федерации.</p>
|
<p class="about__para">Instagram Facebook, Twitter, YouTube, LinkedIn, Instagram, Telegram, Vkontakte, Odnoklassniki have their own pages on social networks – where readers can also discuss topics and articles.</p>
|
||||||
|
|
||||||
<p class="about__para">У сайта имеются свои страницы в социальных сетях Facebook, Twitter, YouTube, LinkedIn, Instagram, Telegramm, Vkontakte, Odnoklassniki – где также есть возможность обсуждения читателями тем и статей.</p>
|
|
||||||
|
|
@ -3,11 +3,12 @@ title = "Contact us"
|
||||||
==
|
==
|
||||||
{% put form %}
|
{% put form %}
|
||||||
<div class="form__title">Feedback</div>
|
<div class="form__title">Feedback</div>
|
||||||
<figure data-component="JanVince\SmallContactForm\Components\SmallContactForm" data-snippet="contactForm"> </figure>
|
<figure class="fr-draggable" contenteditable="false" data-component="JanVince\SmallContactForm\Components\SmallContactForm" data-inspector-class="JanVince\SmallContactForm\Components\SmallContactForm" data-inspector-css-class="hero" data-name="Contact form" data-snippet="contactForm" data-ui-block="true" draggable="true" tabindex="0"> </figure>
|
||||||
|
|
||||||
{% endput %}
|
{% endput %}
|
||||||
==
|
==
|
||||||
<div class="main__sidebar-title">Contacts</div>
|
<div class="main__sidebar-title">Contacts</div>
|
||||||
<div class="address">
|
<div class="address">
|
||||||
<div class="address__inner">Address: Turkmenistan, Ashgabat city, Makhtumkuli avenue, 72</div>
|
<div class="address__inner"><strong>Address:</strong> Turkmenistan, Ashgabat city, Makhtumkuli avenue, 72</div>
|
||||||
<div class="address__inner"><span>Phone:</span> <a href="">(+99312) </a>940786</div>
|
<div class="address__inner"><span><strong>Phone:</strong></span> <a href="">(+99312) </a>940786</div>
|
||||||
<div class="address__inner"><span>Email:</span> <a href="#">info@orient.tm</a></div></div>
|
<div class="address__inner"><span><strong>Email:</strong></span> <a href="#">info@orient.tm</a></div></div>
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
[viewBag]
|
||||||
|
title = "User Agreement"
|
||||||
|
==
|
||||||
|
|
@ -0,0 +1,26 @@
|
||||||
|
[viewBag]
|
||||||
|
title = "Biz barada"
|
||||||
|
meta_title = "Biz Barada"
|
||||||
|
meta_description = "turkmen"
|
||||||
|
==
|
||||||
|
<h3><strong>ORIENT habarlar portaly</strong></h3>
|
||||||
|
|
||||||
|
<p class="about__para">ORIENT – Siziň pikiriňiz gymmatly</p>
|
||||||
|
|
||||||
|
<p class="about__para">ORIENT.tm saýty – Türkmenistanyň habarlar ulgamynda täze sepgit.</p>
|
||||||
|
|
||||||
|
<p class="about__para">«Media Türkmen» hojalyk jemgyýeti – Türkmenistanda 2017-nji ýylyň aprel aýynda ýurdumyzyň resmi edaralarynda bellige alnan döwlete degişli bolmadyk ilkinji habarlar agentligi. Ol täzelikler, foto, wideo we mahabat kontentini döredýän bir nyşan astynda işleýän iki bölümi: ORIENT saýtyny we prodakşn-studiýany özünde birleşdirýär.</p>
|
||||||
|
|
||||||
|
<p class="about__para">ORIENT topary – ol, esasan, ýaş žurnalistler, türkmen we daşary ýurtlaryň ýokary okuw mekdepleriniň uçurymlardyr. “Media Türkmen” habarlar agentligi, şeýle hem ussatlyk sapaklaryny we toparyň hünär derejesini ýokarlandyrmak üçin okuw maslahatlaryny geçirýän tejribeli žurnalistleri hyzmatdaşlyk etmäge çagyrýar.</p>
|
||||||
|
|
||||||
|
<p class="about__para">2018-nji ýylda ORIENT Aşgabatda geçirilen Agyr atletiko boýunça dünýä çempionatynyň hem-de “Türkmenistanyň nebiti we gazy 2018” atly sebitde hünär ugurly iri forumyň Baş media-hyzmatdaşy boldy.</p>
|
||||||
|
|
||||||
|
<p class="about__para">Şu ýyl ORIENT TGS-2019 10-njy Halka Gaz kongresiniň Baş media-hyzmatdaşy boldy we maý aýynda bu forum, oňa gatnaşyjylar we hemaýatkärleri barada habarlardyr makalalar ýerleşdirildi.</p>
|
||||||
|
|
||||||
|
<p class="about__para">2019-njy ýylyň 12-nji iýulynda ORIENT täzelikleri özara alyşmak we olary öz meýdançalarynda ýerleşdirmek hem-de bilelikde media-taslamalary amala aşyrmak boýunça hyzmatdaşlyk etmek hakynda China Daily Multimedia Co., Ltd., neşiri bilen ylalaşyga gol çekdi.</p>
|
||||||
|
|
||||||
|
<p class="about__para">2019-njy ýylyň 15-nji awgustynda ORIENT Awstriýa-türkmen jemgyýeti bilen täzelikleri alyşmak babatda hyzmatdaşlyk etmek hakynda Ähtnama gol çekdi.</p>
|
||||||
|
|
||||||
|
<p class="about__para">2019-njy ýylyň 11-nji noýabrynda ORIENT Russiýa Federasiýasynyň Daşary işler ministrliginiň “Halkara durmuşy” atly žurnaly bilen täzelikleri alyşmak babatda hyzmatdaşlyk etmek hakynda Ähtnama gol çekdi.</p>
|
||||||
|
|
||||||
|
<p class="about__para">Saýtyň Facebook, Twitter, YouTube, LinkedIn, Instagram, Telegramm, Vkontakte, Odnoklassniki diýen Internet ulgamlarynda öz sahypalary bolup, şolarda hem okyjylar bilen meseleleri hem-de makalalary ara alyp maslahatlaşmaga mümkinçiligi bar.</p>
|
||||||
|
|
@ -0,0 +1,14 @@
|
||||||
|
[viewBag]
|
||||||
|
title = "Habarlaşmak üçin"
|
||||||
|
==
|
||||||
|
{% put form %}
|
||||||
|
<div class="form__title">Habarlaşmak üçin</div>
|
||||||
|
<figure class="fr-draggable" contenteditable="false" data-component="JanVince\SmallContactForm\Components\SmallContactForm" data-inspector-class="JanVince\SmallContactForm\Components\SmallContactForm" data-inspector-css-class="hero" data-name="Contact form" data-snippet="contactForm" data-ui-block="true" draggable="true" tabindex="0"> </figure>
|
||||||
|
|
||||||
|
{% endput %}
|
||||||
|
==
|
||||||
|
<div class="main__sidebar-title">Biziň kontaktlarymyz:</div>
|
||||||
|
<div class="address">
|
||||||
|
<div class="address__inner"><strong>Salgymyz:</strong> Türkmenistan, Aşgabat ş., Magtymguly şaýoly, 72</div>
|
||||||
|
<div class="address__inner"><strong>Tel:</strong> <a href="">(+99312) </a>940786</div>
|
||||||
|
<div class="address__inner"><strong>Email:</strong> <a href="#">info@orient.tm</a></div></div>
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
[viewBag]
|
||||||
|
title = "Gizlinlik syýasaty"
|
||||||
|
==
|
||||||