|
|
<?php
|
|
|
/*
|
|
|
Template Name: Страница клубных карт
|
|
|
*/
|
|
|
|
|
|
get_header();
|
|
|
|
|
|
|
|
|
if (!function_exists('get_club_cards_for_current_language')) {
|
|
|
function get_club_cards_for_current_language()
|
|
|
{
|
|
|
$current_lang = pll_current_language();
|
|
|
|
|
|
$args = array(
|
|
|
'post_type' => 'club-card',
|
|
|
'posts_per_page' => -1,
|
|
|
'lang' => $current_lang,
|
|
|
'post_status' => 'publish',
|
|
|
'sort' => 'menu_order',
|
|
|
'order' => 'ASC',
|
|
|
);
|
|
|
|
|
|
return get_posts($args);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
$cards = get_club_cards_for_current_language();
|
|
|
|
|
|
?>
|
|
|
|
|
|
<section class="max-[768px]:pt-[45px] pt-[96px]">
|
|
|
<div class="container mx-auto">
|
|
|
<?php if ($cards): ?>
|
|
|
<div class="max-[768px]:grid-cols-1 max-[1100px]:grid-cols-2 grid grid-cols-3 gap-[24px]">
|
|
|
<?php foreach ($cards as $card): ?>
|
|
|
<div class="border border-transparent hover:border-[#e21e24] transition max-[1300px]:h-auto max-[1050px]:p-[20px] bg-[#ffffff] rounded-[12px] p-[28px] pb-[16px] h-[258px] shadow-[0_2px_32px_0_rgba(16,_15,_15,_0.03)]">
|
|
|
<div class="flex flex-col h-full relative">
|
|
|
<?php $card_attribute = get_field('attr', $card->ID);
|
|
|
if ($card_attribute): ?>
|
|
|
<div class="max-[768px]:top-[-29px] absolute top-[-14px] right-[-14px] px-[12px] py-[4px] rounded-[32px] bg-[linear-gradient(90deg,_#ffd65a_39.42%,_#ffe595_92.9%)]">
|
|
|
<span class="font-[600] text-[14px] leading-[125%]">
|
|
|
<?php echo($card_attribute); ?>
|
|
|
</span>
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
<div class="flex gap-[16px] items-center">
|
|
|
<?php
|
|
|
$card_image = get_field('image', $card->ID);
|
|
|
if ($card_image): ?>
|
|
|
<div class="overflow-hidden w-[32px] h-[32px]">
|
|
|
<img src="<?php echo esc_url($card_image['url']); ?>"
|
|
|
alt="<?php echo esc_attr($card_image['alt']); ?>"
|
|
|
class="w-full h-full object-cover"/>
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
<?php $card_heading = get_field('heading', $card->ID); ?>
|
|
|
<?php if ($card_heading): ?>
|
|
|
<h3 class="max-[768px]:text-[20px] text-[24px] font-[600] leading-[125%]">
|
|
|
<?php echo esc_html($card_heading); ?>
|
|
|
</h3>
|
|
|
<?php endif; ?>
|
|
|
</div>
|
|
|
|
|
|
<?php $card_description = get_field('description', $card->ID); ?>
|
|
|
<?php if ($card_description): ?>
|
|
|
<div class="min-h-[47px] text-[16px] leading-[145%] font-[500] mt-[16px]">
|
|
|
<?php echo wp_kses_post($card_description); ?>
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
|
|
|
<div class="justify-end flex-row-reverse max-[1100px]:mt-[16px] flex mt-auto pt-[16px] border-t border-t-[#f1f1f1] items-center gap-[16px] flex-wrap">
|
|
|
<?php $popup_button = get_field('popup_button', $card->ID); ?>
|
|
|
<?php $card_price = get_field('price', $card->ID) ?: ($card_prices['1_month']['day'] ?? ''); ?>
|
|
|
<?php
|
|
|
$card_prices = [];
|
|
|
if (have_rows('card_prices', $card->ID)) {
|
|
|
while (have_rows('card_prices', $card->ID)) {
|
|
|
the_row();
|
|
|
|
|
|
$periods = ['1_month', '3_month', '6_month', '12_month'];
|
|
|
foreach ($periods as $period) {
|
|
|
if (have_rows($period)) {
|
|
|
while (have_rows($period)) {
|
|
|
the_row();
|
|
|
$card_prices[$period] = [
|
|
|
'full' => get_sub_field('full'),
|
|
|
'day' => get_sub_field('day')
|
|
|
];
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
?>
|
|
|
<?php
|
|
|
$card_time = [];
|
|
|
if (have_rows('time', $card->ID)) {
|
|
|
while (have_rows('time', $card->ID)) {
|
|
|
the_row();
|
|
|
$card_time[] = [
|
|
|
'normal_days' => get_sub_field('normal_days'),
|
|
|
'vacation_days' => get_sub_field('vacation_days')
|
|
|
];
|
|
|
}
|
|
|
}
|
|
|
?>
|
|
|
<?php if ($card_price): ?>
|
|
|
<div class="flex items-center text-[20px] font-[600] leading-[125%]">
|
|
|
от
|
|
|
<div class="rounded-[32px] px-[12px] h-[36px] flex items-center bg-[linear-gradient(90deg,_rgba(43,_44,_53,_0.06)_39.42%,_rgba(110,_121,_150,_0.06)_92.9%)]">
|
|
|
<span class="bg-[linear-gradient(90deg,_#2b2c35_67.31%,_#4f5870_92.9%)] text-[24px] flex items-center justify-center font-[600] bg-clip-text text-transparent"> <?php echo esc_html($card_price); ?> ₽ </span>
|
|
|
</div>
|
|
|
в день
|
|
|
</div>
|
|
|
|
|
|
<?php endif; ?>
|
|
|
<div class="max-[1300px]:w-full">
|
|
|
<button
|
|
|
data-modal="club-card"
|
|
|
data-card-id="<?php echo $card->ID; ?>"
|
|
|
data-card-title="<?php echo esc_attr($card_heading); ?>"
|
|
|
data-card-prices='<?php echo esc_attr(json_encode($card_prices)); ?>'
|
|
|
data-card-time='<?php echo esc_attr(json_encode($card_time)); ?>'
|
|
|
data-card-attr='<?php echo esc_attr($card_attribute); ?>'
|
|
|
class="max-[1300px]:w-full max-[768px]:h-[53px] max-[768px]:text-[16px] red-gradient-hover cursor-pointer flex text-[#f8f8f8] text-[18px] text-[#fff] font-[600] justify-center h-[59px] w-[160px] rounded-[90px] flex items-center">
|
|
|
<?php echo 'Оформить' ?>
|
|
|
</button>
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<?php endforeach; ?>
|
|
|
</div>
|
|
|
<?php endif; ?>
|
|
|
</div>
|
|
|
</section>
|
|
|
<section class="dark:py-[90px] dark:max-[768px]:py-[45px] max-[768px]:pt-[45px] pt-[90px]">
|
|
|
<div class="container mx-auto">
|
|
|
<div class="max-[768px]:p-[20px] p-[40px] dark:!border-none radial-gradient rounded-[24px] border-b-[4px] border-r-[0px] border-[#e21e24]"
|
|
|
<?php
|
|
|
if (get_current_room() === 'fitness') {
|
|
|
echo ' style="background: linear-gradient(180deg, #f9f9f9 69.59%, #ededed 100%);"';
|
|
|
} else {
|
|
|
echo ' style="background: linear-gradient(90deg, #2b2c35 53.4%, #4f5870 100%);"';
|
|
|
}
|
|
|
?>
|
|
|
>
|
|
|
<h2 class="max-[768px]:text-[20px] font-[500] text-[32px] leading-[115%] text-[#222] dark:text-[#f8f8f8]">
|
|
|
<strong>В клубные карты</strong> входит
|
|
|
</h2>
|
|
|
<div class="mt-[24px] flex flex-wrap gap-[12px] w-full">
|
|
|
<?php
|
|
|
if (get_current_room() === 'fitness') {
|
|
|
$card_include = [
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_2252_3443)">
|
|
|
<path d="M30.1357 13.7878C27.1811 11.2443 22.4588 12.0522 20.7407 15.6171C21.6969 15.8076 22.6197 16.1378 23.4796 16.5973C23.5448 16.632 23.6025 16.6792 23.6494 16.7363C23.6963 16.7933 23.7316 16.859 23.7531 16.9296C23.7746 17.0003 23.782 17.0745 23.7748 17.148C23.7677 17.2215 23.7461 17.2929 23.7114 17.358C23.6767 17.4232 23.6294 17.4809 23.5724 17.5278C23.5154 17.5748 23.4496 17.61 23.379 17.6315C23.3083 17.653 23.2341 17.6604 23.1606 17.6533C23.0871 17.6461 23.0158 17.6246 22.9506 17.5898C20.5335 16.2653 17.1725 16.0236 15.5747 18.9144L14.8915 17.8868L13.1186 15.2049C12.2108 13.8911 11.8325 11.4656 13.4518 10.5244C14.4427 9.95104 15.2182 9.06842 15.6593 8.01194H18.3017C18.4033 9.98804 19.0357 11.919 20.2891 11.919C20.494 11.8924 22.7806 11.9743 22.9483 11.8738C25.2801 11.2494 25.2858 3.05871 22.6491 2.95312H20.2891C19.03 2.95312 18.3977 4.901 18.296 6.88274H15.7271L15.2302 4.68645C15.1627 4.44481 15.0382 4.22287 14.8673 4.03918C14.6964 3.8555 14.484 3.71541 14.2478 3.63064C13.0571 3.18856 12.1842 4.47642 11.0014 4.48884L10.1037 4.6074C8.9423 4.60627 8.41891 6.01495 8.07112 6.88274H6.51282C6.41684 4.90664 5.78449 2.96442 4.52543 2.96442H2.1654C-0.550326 3.08524 -0.505158 11.8552 2.1654 11.9303C2.2196 11.9263 4.48195 11.9331 4.59883 11.9303C5.63205 11.823 6.13906 10.6227 6.39426 9.14114H5.24812C5.05051 10.18 4.7061 10.7615 4.53108 10.8011C4.26571 10.7446 3.6503 9.53636 3.6503 7.44734C3.6503 5.36397 4.26571 4.15008 4.52543 4.09362C4.76256 4.14443 5.28764 5.14377 5.38362 6.88274H4.60447C4.45473 6.88274 4.31112 6.94223 4.20524 7.04811C4.09936 7.15399 4.03987 7.2976 4.03987 7.44734C4.03987 7.59708 4.09936 7.74069 4.20524 7.84657C4.31112 7.95246 4.45473 8.01194 4.60447 8.01194C5.52816 8.01025 6.86231 8.01307 7.79446 8.01194C7.69968 8.56498 7.57147 9.11176 7.41054 9.64928C6.67656 12.2295 6.45072 15.9107 6.38861 18.5417C6.3403 20.5807 6.73721 22.6058 7.55169 24.4757L8.98013 27.7842C9.13735 28.1325 9.3857 28.4318 9.69895 28.6506C10.0122 28.8694 10.3787 28.9996 10.7598 29.0273C11.1409 29.0551 11.5224 28.9794 11.8641 28.8083C12.2057 28.6372 12.4948 28.377 12.7008 28.0552C12.7167 28.0298 12.7394 28.0094 12.7664 27.9964C12.7934 27.9834 12.8235 27.9784 12.8533 27.9818C20.6899 28.7497 27.2845 23.578 28.1257 22.8892C28.7524 22.6577 31.8069 21.376 32.1287 18.2538C32.1981 17.4019 32.0518 16.5463 31.7035 15.7658C31.3552 14.9854 30.816 14.3051 30.1357 13.7878ZM22.6491 4.08233C22.9088 4.13879 23.5242 5.34703 23.5242 7.43605C23.5242 9.51942 22.9088 10.7333 22.6547 10.7898C22.395 10.7333 21.7796 9.51942 21.7796 7.43605C21.7796 5.34703 22.395 4.13879 22.6491 4.08233Z" fill="url(#paint0_linear_2252_3443)" />
|
|
|
<path d="M23.2132 7.58476V7.29116C23.2132 7.14142 23.1537 6.99781 23.0478 6.89193C22.9419 6.78605 22.7983 6.72656 22.6486 6.72656C22.4988 6.72656 22.3552 6.78605 22.2494 6.89193C22.1435 6.99781 22.084 7.14142 22.084 7.29116V7.58476C22.084 7.7345 22.1435 7.87811 22.2494 7.98399C22.3552 8.08987 22.4988 8.14936 22.6486 8.14936C22.7983 8.14936 22.9419 8.08987 23.0478 7.98399C23.1537 7.87811 23.2132 7.7345 23.2132 7.58476Z" fill="url(#paint1_linear_2252_3443)" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_2252_3443" x1="0.145508" y1="15.993" x2="32.1455" y2="15.993" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_2252_3443" x1="22.084" y1="7.43796" x2="23.2132" y2="7.43796" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_2252_3443">
|
|
|
<rect width="32" height="32" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Тренажерный зал'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_4045_11040)">
|
|
|
<path d="M27.25 23.875C28.8033 23.875 30.0625 22.6158 30.0625 21.0625C30.0625 19.5092 28.8033 18.25 27.25 18.25C25.6967 18.25 24.4375 19.5092 24.4375 21.0625C24.4375 22.6158 25.6967 23.875 27.25 23.875Z" fill="url(#paint0_linear_4045_11040)" />
|
|
|
<path d="M30.0609 24.8125C29.2772 25.4017 28.3038 25.7513 27.25 25.7513C26.1962 25.7513 25.2228 25.4017 24.4391 24.8125C23.2997 25.6676 22.5625 27.0296 22.5625 28.5638V32.0013H31C31.5177 32.0013 31.9375 31.5816 31.9375 31.0638V28.5638C31.9375 27.0296 31.2003 25.6676 30.0609 24.8125Z" fill="url(#paint1_linear_4045_11040)" />
|
|
|
<path d="M16 23.875C17.5533 23.875 18.8125 22.6158 18.8125 21.0625C18.8125 19.5092 17.5533 18.25 16 18.25C14.4467 18.25 13.1875 19.5092 13.1875 21.0625C13.1875 22.6158 14.4467 23.875 16 23.875Z" fill="url(#paint2_linear_4045_11040)" />
|
|
|
<path d="M18.8109 24.8125C18.0272 25.4017 17.0538 25.7513 16 25.7513C14.9462 25.7513 13.9728 25.4017 13.1891 24.8125C12.0497 25.6676 11.3125 27.0296 11.3125 28.5638V32.0013H20.6875V28.5638C20.6875 27.0296 19.9503 25.6676 18.8109 24.8125Z" fill="url(#paint3_linear_4045_11040)" />
|
|
|
<path d="M4.75 23.875C6.3033 23.875 7.5625 22.6158 7.5625 21.0625C7.5625 19.5092 6.3033 18.25 4.75 18.25C3.1967 18.25 1.9375 19.5092 1.9375 21.0625C1.9375 22.6158 3.1967 23.875 4.75 23.875Z" fill="url(#paint4_linear_4045_11040)" />
|
|
|
<path d="M7.56094 24.8112C6.77719 25.4004 5.80375 25.75 4.75 25.75C3.69625 25.75 2.72281 25.4004 1.93906 24.8112C0.799688 25.6663 0.0625 27.0282 0.0625 28.5625V31.0625C0.0625 31.5802 0.48225 32 1 32H9.4375V28.5625C9.4375 27.0282 8.70031 25.6663 7.56094 24.8112ZM19.75 10H21C21.1723 10 21.3125 9.85981 21.3125 9.6875V5.9375C21.3125 5.76519 21.1723 5.625 21 5.625H19.75C19.5777 5.625 19.4375 5.76519 19.4375 5.9375V9.6875C19.4375 9.85981 19.5777 10 19.75 10Z" fill="url(#paint5_linear_4045_11040)" />
|
|
|
<path d="M7.875 15.625H24.125C25.6758 15.625 26.9375 14.3633 26.9375 12.8125V2.8125C26.9375 1.26169 25.6758 0 24.125 0H7.875C6.32419 0 5.0625 1.26169 5.0625 2.8125V12.8125C5.0625 14.3633 6.32419 15.625 7.875 15.625ZM8.8125 5.9375C8.8125 4.73131 9.79381 3.75 11 3.75H12.25C13.4562 3.75 14.4375 4.73131 14.4375 5.9375V6.875H17.5625V5.9375C17.5625 4.73131 18.5438 3.75 19.75 3.75H21C22.2062 3.75 23.1875 4.73131 23.1875 5.9375V9.6875C23.1875 10.8937 22.2062 11.875 21 11.875H19.75C18.5438 11.875 17.5625 10.8937 17.5625 9.6875V8.75H14.4375V9.6875C14.4375 10.8937 13.4562 11.875 12.25 11.875H11C9.79381 11.875 8.8125 10.8937 8.8125 9.6875V5.9375Z" fill="url(#paint6_linear_4045_11040)" />
|
|
|
<path d="M11 10H12.25C12.4223 10 12.5625 9.85981 12.5625 9.6875V5.9375C12.5625 5.76519 12.4223 5.625 12.25 5.625H11C10.8277 5.625 10.6875 5.76519 10.6875 5.9375V9.6875C10.6875 9.85981 10.8277 10 11 10Z" fill="url(#paint7_linear_4045_11040)" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_11040" x1="24.4375" y1="21.0625" x2="30.0625" y2="21.0625" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_11040" x1="22.5625" y1="28.4069" x2="31.9375" y2="28.4069" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint2_linear_4045_11040" x1="13.1875" y1="21.0625" x2="18.8125" y2="21.0625" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint3_linear_4045_11040" x1="11.3125" y1="28.4069" x2="20.6875" y2="28.4069" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint4_linear_4045_11040" x1="1.9375" y1="21.0625" x2="7.5625" y2="21.0625" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint5_linear_4045_11040" x1="0.0625" y1="18.8125" x2="21.3125" y2="18.8125" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint6_linear_4045_11040" x1="5.0625" y1="7.8125" x2="26.9375" y2="7.8125" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint7_linear_4045_11040" x1="10.6875" y1="7.8125" x2="12.5625" y2="7.8125" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_4045_11040">
|
|
|
<rect width="32" height="32" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Групповые программы по расписанию'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M29.4606 25.3449H28.6555V11.7294C28.6555 11.6342 28.6293 11.5409 28.5796 11.4598C28.53 11.3786 28.4589 11.3128 28.3742 11.2695L26.593 10.3606L27.9035 7.84085C27.9641 7.7197 27.9747 7.57957 27.9329 7.45069C27.8911 7.32182 27.8003 7.21455 27.6801 7.15202C27.56 7.08949 27.42 7.07672 27.2905 7.11646C27.161 7.15621 27.0523 7.24528 26.9879 7.36447L23.887 13.3252C23.8544 13.3855 23.8342 13.4516 23.8274 13.5197C23.8206 13.5878 23.8275 13.6566 23.8476 13.7221C23.8677 13.7875 23.9006 13.8483 23.9444 13.9009C23.9882 13.9536 24.0421 13.9969 24.1028 14.0285C24.1635 14.0601 24.2299 14.0793 24.2982 14.085C24.3664 14.0907 24.4351 14.0827 24.5002 14.0616C24.5653 14.0405 24.6256 14.0066 24.6775 13.962C24.7294 13.9174 24.7719 13.8629 24.8026 13.8016L26.1161 11.2752L27.6227 12.0442V25.3449H6.83974L9.77032 20.7203C9.88819 20.5335 9.97206 20.3273 10.0181 20.1113L10.2142 19.1668L8.65032 18.5939C7.9318 18.287 7.32091 17.7731 6.89548 17.1178L6.49806 19.0378L3.62839 23.5642C3.46282 23.8287 3.36762 24.1311 3.35181 24.4428C3.336 24.7544 3.40011 25.065 3.53806 25.3449H2.53935C1.86588 25.3449 1.21998 25.6124 0.74376 26.0886C0.267538 26.5648 0 27.2107 0 27.8842C0 28.5577 0.267538 29.2036 0.74376 29.6798C1.21998 30.156 1.86588 30.4236 2.53935 30.4236H29.4606C30.1341 30.4236 30.78 30.156 31.2562 29.6798C31.7325 29.2036 32 28.5577 32 27.8842C32 27.2107 31.7325 26.5648 31.2562 26.0886C30.78 25.6124 30.1341 25.3449 29.4606 25.3449Z" fill="url(#paint0_linear_4045_4481)" />
|
|
|
<path d="M17.3363 9.97687L17.1867 9.82203C17.1859 10.5312 16.9797 11.2249 16.5931 11.8195L15.8086 13.0427C15.9634 13.2294 16.1574 13.3799 16.3768 13.4833C16.5962 13.5868 16.8357 13.6408 17.0783 13.6414C17.3753 13.6415 17.6665 13.5594 17.9196 13.404L22.2809 10.7304C22.4626 10.6205 22.6209 10.4757 22.7466 10.3045C22.8722 10.1332 22.9628 9.93877 23.0131 9.73238C23.0634 9.52599 23.0724 9.31169 23.0396 9.10181C23.0068 8.89192 22.9329 8.69059 22.822 8.50937C22.7112 8.32815 22.5656 8.17062 22.3937 8.04582C22.2218 7.92103 22.0269 7.83144 21.8203 7.7822C21.6137 7.73296 21.3993 7.72503 21.1896 7.75888C20.9799 7.79274 20.7789 7.86769 20.5983 7.97945L17.3363 9.97687Z" fill="url(#paint1_linear_4045_4481)" />
|
|
|
<path d="M4.14944 11.1013C4.36483 11.4702 4.71657 11.7397 5.12883 11.8517C5.5411 11.9637 5.98086 11.9092 6.35332 11.7L9.13009 10.1103L9.99719 10.1516L7.76235 13.6458C7.55235 13.9815 7.41746 14.3587 7.36692 14.7515C7.31637 15.1443 7.35138 15.5434 7.46953 15.9214C7.58768 16.2994 7.78619 16.6473 8.05143 16.9414C8.31667 17.2355 8.64238 17.4687 9.00622 17.6251L12.2475 18.8174L10.5701 21.5322C10.3232 21.9468 10.2497 22.4419 10.3654 22.9103C10.4811 23.3787 10.7767 23.7826 11.1882 24.0345C11.5997 24.2864 12.0938 24.366 12.5636 24.2561C13.0334 24.1461 13.4409 23.8554 13.6978 23.4471L16.5365 18.8225C16.6798 18.5921 16.7695 18.3324 16.799 18.0626C16.8285 17.7928 16.797 17.5198 16.7069 17.2638C16.6171 17.0085 16.472 16.7761 16.2819 16.5834C16.0919 16.3907 15.8616 16.2424 15.6075 16.149L13.1714 15.2509L15.7262 11.2613C16.1121 10.6558 16.2425 9.92213 16.0887 9.22081C15.9349 8.5195 15.5095 7.90769 14.9056 7.51932C14.8926 7.50957 14.8787 7.50094 14.8643 7.49351C13.8062 6.78126 9.95074 6.82771 8.82557 6.86384C8.51514 6.84381 8.20585 6.91754 7.93783 7.07545L4.74815 8.89739C4.56404 9.00269 4.4025 9.14326 4.27275 9.31104C4.143 9.47883 4.0476 9.67054 3.992 9.87522C3.93639 10.0799 3.92168 10.2935 3.94869 10.5039C3.97571 10.7143 4.04393 10.9173 4.14944 11.1013ZM18.7559 4.35029C18.7559 3.78578 18.5885 3.23395 18.2749 2.76458C17.9613 2.29521 17.5155 1.92938 16.994 1.71336C16.4724 1.49733 15.8985 1.44081 15.3449 1.55094C14.7912 1.66107 14.2826 1.9329 13.8835 2.33207C13.4843 2.73124 13.2125 3.2398 13.1024 3.79346C12.9922 4.34712 13.0487 4.92101 13.2648 5.44254C13.4808 5.96408 13.8466 6.40984 14.316 6.72346C14.7854 7.03709 15.3372 7.20448 15.9017 7.20448C16.6586 7.20407 17.3843 6.90323 17.9195 6.36806C18.4546 5.83288 18.7555 5.10714 18.7559 4.35029Z" fill="url(#paint2_linear_4045_4481)" />
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_4481" x1="0" y1="18.7587" x2="32" y2="18.7587" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_4481" x1="15.8086" y1="10.6898" x2="23.0589" y2="10.6898" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint2_linear_4045_4481" x1="3.93555" y1="12.9002" x2="18.7559" y2="12.9002" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Кардио зона'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_4045_16041)">
|
|
|
<path d="M2.9082 10.1836H21.8173V21.82H2.9082V10.1836Z" fill="url(#paint0_linear_4045_16041)" />
|
|
|
<path d="M30.5445 13.0916V10.1825C30.5445 8.57588 29.2421 7.27344 27.6355 7.27344H2.90809C1.30146 7.27338 -0.000976562 8.57582 -0.000976562 10.1824V21.8188C-0.000976562 23.4255 1.30146 24.7279 2.90809 24.7279H27.6354C29.242 24.7279 30.5445 23.4255 30.5445 21.8188V18.9098C31.3478 18.9098 31.999 18.2585 31.999 17.4552V14.5461C31.9991 13.7428 31.3478 13.0916 30.5445 13.0916ZM29.09 14.5461V21.8188C29.09 22.6222 28.4388 23.2734 27.6355 23.2734H2.90809C2.10478 23.2734 1.45353 22.6222 1.45353 21.8188V10.1824C1.45353 9.37913 2.10478 8.72788 2.90809 8.72788H27.6354C28.4387 8.72788 29.09 9.37913 29.09 10.1824L29.09 14.5461Z" fill="url(#paint1_linear_4045_16041)" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16041" x1="2.9082" y1="16.0018" x2="21.8173" y2="16.0018" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_16041" x1="-0.000976562" y1="16.0007" x2="31.999" y2="16.0007" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_4045_16041">
|
|
|
<rect width="32" height="32" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Зарядка телефона'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_4045_16581)">
|
|
|
<path d="M16.9414 24.4688H32.0002V28.2335H16.9414V24.4688ZM16.9414 30.1158H18.8238V31.9982H16.9414V30.1158ZM30.1179 30.1158H32.0002V31.9982H30.1179V30.1158Z" fill="url(#paint0_linear_4045_16581)" />
|
|
|
<path d="M24.4706 0H13.1765V28.2353H15.0588V22.5882H24.4706V0ZM20.7059 16.9412H18.8235V15.0588H20.7059V16.9412ZM21.6471 13.1765H16V11.2941H21.6471V13.1765ZM21.6471 9.41177H16V7.52941H21.6471V9.41177ZM21.6471 5.64706H16V3.76471H21.6471V5.64706ZM0 28.2353H11.2941V0H0V28.2353ZM7.52941 16.9412H5.64706V15.0588H7.52941V16.9412ZM2.82353 3.76471H8.47059V5.64706H2.82353V3.76471ZM2.82353 7.52941H8.47059V9.41177H2.82353V7.52941ZM2.82353 11.2941H8.47059V13.1765H2.82353V11.2941Z" fill="url(#paint1_linear_4045_16581)" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16581" x1="16.9414" y1="28.2335" x2="32.0002" y2="28.2335" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_16581" x1="0" y1="14.1176" x2="24.4706" y2="14.1176" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_4045_16581">
|
|
|
<rect width="32" height="32" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Раздевалки с душевыми'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M32 10.3125H30.125V5.625H24.5V10.3125H22.625V1.875H20.75V10.3125H11.25V1.875H9.375V10.3125H7.5V5.625H1.875V10.3125H0V12.1875H1.875V16.875H7.5V12.1875H9.375V17.8125H11.25V12.1875H20.75V17.8125H22.625V12.1875H24.5V16.875H30.125V12.1875H32V10.3125ZM20.75 28.25H18.8125V25.3125H13.1875V28.25H11.25V25.3125H9.375V28.25H5.625V30.125H26.375V28.25H22.625V25.3125H20.75V28.25ZM9.375 19.6875C8.33944 19.6875 7.5 20.5269 7.5 21.5625V23.4375H24.5V21.5625C24.5 20.5269 23.6606 19.6875 22.625 19.6875H9.375Z" fill="url(#paint0_linear_4045_11035)" />
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_11035" x1="0" y1="16" x2="32" y2="16" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Функциональная зона'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_4045_16813)">
|
|
|
<path d="M7.55419 4.07594C5.51006 4.07594 3.84713 5.73894 3.84713 7.783C3.84713 9.82706 5.51012 11.4901 7.55419 11.4901C9.59825 11.4901 11.2612 9.82713 11.2612 7.783C11.2612 5.73887 9.59831 4.07594 7.55419 4.07594ZM23.1314 28.9351L19.8125 19.5746H13.3811L10.4361 12.5847H5.63L1.96512 22.5525C1.81917 22.95 1.78489 23.3799 1.866 23.7955H0V25.6705H15.8704L18.996 30.8839C19.4223 31.5949 20.1832 31.9995 20.9696 31.9995C21.2884 31.9995 21.6038 31.9328 21.8953 31.8037C22.9876 31.3207 23.5304 30.0607 23.1314 28.9351ZM6.59656 23.7955L7.713 22.0056L8.66025 23.7955H6.59656ZM22.4816 7.04119C22.4816 5.85294 22.0011 5.20088 21.6501 4.72475C21.3597 4.33063 21.1843 4.09269 21.1843 3.52069C21.1843 2.94862 21.3597 2.71075 21.6502 2.3165C22.001 1.84037 22.4816 1.18831 22.4816 0H20.6066C20.6066 0.572 20.4312 0.809938 20.1408 1.20413C19.7899 1.68025 19.3093 2.33231 19.3093 3.52062C19.3093 4.70887 19.7899 5.36094 20.1408 5.83706C20.4312 6.23119 20.6066 6.46913 20.6066 7.04113C20.6066 7.61331 20.4313 7.85125 20.1408 8.2455C19.7899 8.72181 19.3093 9.37394 19.3093 10.5623C19.3093 11.7507 19.7898 12.4028 20.1408 12.8789C20.4313 13.2732 20.6066 13.5112 20.6066 14.0833H22.4816C22.4816 12.8949 22.0011 12.2428 21.6502 11.7666C21.3597 11.3724 21.1843 11.1344 21.1843 10.5623C21.1843 9.99006 21.3597 9.75219 21.6502 9.35787C22.0011 8.88169 22.4816 8.22956 22.4816 7.04119ZM27.2408 7.04113C27.2408 5.85288 26.7603 5.20081 26.4093 4.72469C26.1189 4.33056 25.9435 4.09262 25.9435 3.52062C25.9435 2.94856 26.1189 2.71069 26.4094 2.31644C26.7602 1.8405 27.2408 1.18844 27.2408 0.000125H25.3658C25.3658 0.572125 25.1904 0.810062 24.9 1.20425C24.5491 1.68037 24.0685 2.33244 24.0685 3.52075C24.0685 4.709 24.5491 5.36106 24.9 5.83719C25.1904 6.23131 25.3658 6.46925 25.3658 7.04125C25.3658 7.61344 25.1904 7.85138 24.8999 8.24563C24.5491 8.72181 24.0685 9.37394 24.0685 10.5623C24.0685 11.7506 24.549 12.4028 24.8999 12.8789C25.1904 13.2731 25.3658 13.5111 25.3658 14.0833H27.2408C27.2408 12.8949 26.7603 12.2428 26.4094 11.7666C26.1189 11.3723 25.9435 11.1344 25.9435 10.5622C25.9435 9.99 26.1189 9.75213 26.4094 9.35781C26.7603 8.88163 27.2408 8.2295 27.2408 7.04113ZM32 7.04131C32 5.85306 31.5194 5.201 31.1685 4.72487C30.8781 4.33075 30.7027 4.09281 30.7027 3.52081C30.7027 2.94875 30.8781 2.71087 31.1685 2.31662C31.5194 1.8405 32 1.18844 32 0.000125H30.125C30.125 0.572125 29.9496 0.810062 29.6592 1.20425C29.3083 1.68037 28.8277 2.33244 28.8277 3.52075C28.8277 4.709 29.3083 5.36106 29.6592 5.83719C29.9496 6.23131 30.125 6.46925 30.125 7.04125C30.125 7.61344 29.9496 7.85138 29.6591 8.24563C29.3082 8.72181 28.8277 9.37394 28.8277 10.5623C28.8277 11.7506 29.3082 12.4028 29.6591 12.8789C29.9496 13.2731 30.125 13.5111 30.125 14.0833H32C32 12.8949 31.5195 12.2428 31.1686 11.7666C30.8781 11.3723 30.7027 11.1344 30.7027 10.5622C30.7027 9.99 30.8781 9.75213 31.1686 9.35781C31.5195 8.88181 32 8.22969 32 7.04131Z" fill="url(#paint0_linear_4045_16813)" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16813" x1="0" y1="15.9998" x2="32" y2="15.9998" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_4045_16813">
|
|
|
<rect width="32" height="32" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Сауна'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_4045_16672)">
|
|
|
<path d="M28.6292 19.3701L21.3464 22.1011C22.1479 22.5956 22.7401 23.367 23.0106 24.269C23.2811 25.1711 23.2112 26.141 22.814 26.9949L29.4126 24.5177C29.6625 24.3875 29.8897 24.2179 30.0857 24.0156C30.344 23.7615 30.5488 23.4583 30.6881 23.1238C30.8274 22.7893 30.8984 22.4303 30.8968 22.068C30.8945 21.424 30.6663 20.8012 30.2519 20.3081C29.8375 19.8151 29.2632 19.4831 28.6292 19.3701ZM22.0637 25.2846V25.2791C22.0393 24.5653 21.7386 23.8889 21.2249 23.3927C20.7112 22.8965 20.0248 22.6193 19.3106 22.6197H2.75885C2.02722 22.6197 1.32555 22.9104 0.808208 23.4277C0.290867 23.9451 0.000227165 24.6467 0.000227165 25.3784C-0.000687015 25.4097 0.00115918 25.4411 0.00574441 25.4722V25.4777C0.0300759 26.1915 0.330841 26.8679 0.844534 27.3641C1.35823 27.8603 2.04464 28.1374 2.75885 28.137H19.3106C20.0422 28.137 20.7439 27.8463 21.2612 27.329C21.7786 26.8117 22.0692 26.11 22.0692 25.3784C22.0701 25.347 22.0683 25.3156 22.0637 25.2846ZM19.8623 25.9301H2.20712C2.0608 25.9301 1.92046 25.872 1.817 25.7685C1.71353 25.665 1.6554 25.5247 1.6554 25.3784C1.6554 25.232 1.71353 25.0917 1.817 24.9882C1.92046 24.8848 2.0608 24.8266 2.20712 24.8266H19.8623C20.0086 24.8266 20.149 24.8848 20.2524 24.9882C20.3559 25.0917 20.414 25.232 20.414 25.3784C20.414 25.5247 20.3559 25.665 20.2524 25.7685C20.149 25.872 20.0086 25.9301 19.8623 25.9301ZM22.0637 18.6639V18.6584C22.0393 17.9446 21.7386 17.2682 21.2249 16.772C20.7112 16.2758 20.0248 15.9986 19.3106 15.9991H2.75885C2.02722 15.9991 1.32555 16.2897 0.808208 16.807C0.290867 17.3244 0.000227165 18.026 0.000227165 18.7577C-0.000687015 18.789 0.00115918 18.8204 0.00574441 18.8515V18.857C0.0300759 19.5708 0.330841 20.2472 0.844534 20.7434C1.35823 21.2396 2.04464 21.5167 2.75885 21.5163H19.3106C19.7316 21.5189 20.1474 21.4225 20.5244 21.2349C20.5398 21.2253 20.5565 21.2179 20.574 21.2129C20.8278 21.0821 21.0595 20.9105 21.2582 20.7053C21.5164 20.4512 21.7212 20.1479 21.8605 19.8134C21.9998 19.479 22.0708 19.12 22.0692 18.7577C22.0701 18.7263 22.0683 18.6949 22.0637 18.6639ZM19.8623 19.3094H2.20712C2.0608 19.3094 1.92046 19.2513 1.817 19.1478C1.71353 19.0443 1.6554 18.904 1.6554 18.7577C1.6554 18.6114 1.71353 18.471 1.817 18.3675C1.92046 18.2641 2.0608 18.206 2.20712 18.206H19.8623C20.0086 18.206 20.149 18.2641 20.2524 18.3675C20.3559 18.471 20.414 18.6114 20.414 18.7577C20.414 18.904 20.3559 19.0443 20.2524 19.1478C20.149 19.2513 20.0086 19.3094 19.8623 19.3094ZM22.0637 12.0432V12.0377C22.0393 11.3239 21.7386 10.6475 21.2249 10.1513C20.7112 9.6551 20.0248 9.37795 19.3106 9.37837H2.75885C2.52605 9.37676 2.29408 9.40645 2.06919 9.46664C2.05415 9.47124 2.03941 9.47677 2.02505 9.4832C1.56578 9.60571 1.14704 9.84743 0.811262 10.1839C0.553319 10.4394 0.348776 10.7437 0.209538 11.079C0.0703002 11.4143 -0.00085058 11.7739 0.000227165 12.137C-0.000687015 12.1684 0.00115918 12.1997 0.00574441 12.2308V12.2363C0.0300759 12.9501 0.330841 13.6265 0.844534 14.1227C1.35823 14.6189 2.04464 14.896 2.75885 14.8956H19.3106C19.7316 14.8982 20.1474 14.8018 20.5244 14.6142C20.5398 14.6046 20.5565 14.5972 20.574 14.5922C20.8278 14.4614 21.0595 14.2898 21.2582 14.0846C21.5164 13.8305 21.7212 13.5272 21.8605 13.1928C21.9998 12.8583 22.0708 12.4993 22.0692 12.137C22.0701 12.1056 22.0683 12.0742 22.0637 12.0432ZM19.8623 12.6887H2.20712C2.0608 12.6887 1.92046 12.6306 1.817 12.5271C1.71353 12.4236 1.6554 12.2833 1.6554 12.137C1.6554 11.9907 1.71353 11.8503 1.817 11.7469C1.92046 11.6434 2.0608 11.5853 2.20712 11.5853H19.8623C20.0086 11.5853 20.149 11.6434 20.2524 11.7469C20.3559 11.8503 20.414 11.9907 20.414 12.137C20.414 12.2833 20.3559 12.4236 20.2524 12.5271C20.149 12.6306 20.0086 12.6887 19.8623 12.6887ZM28.1382 6.06802H11.5864C11.3497 6.06802 11.1142 6.09947 10.8857 6.16182C10.6651 6.23354 7.97264 7.2432 5.22506 8.27492H19.3106C19.9579 8.27509 20.5948 8.43797 21.1627 8.74859C21.7306 9.0592 22.2114 9.50758 22.5608 10.0525C22.9102 10.5975 23.117 11.2215 23.1622 11.8672C23.2074 12.513 23.0896 13.1597 22.8195 13.748L25.2692 12.8322C27.2995 12.0653 28.6126 11.5742 29.3575 11.2984C29.3795 11.2873 29.4071 11.2708 29.4402 11.2542C29.6821 11.1336 29.9006 10.9711 30.0857 10.7742C30.344 10.5201 30.5488 10.2169 30.6881 9.88242C30.8274 9.54794 30.8984 9.18896 30.8968 8.82664C30.8968 8.09501 30.6061 7.39335 30.0888 6.876C29.5715 6.35866 28.8698 6.06802 28.1382 6.06802ZM28.6347 12.7439C27.8954 13.0197 26.9188 13.3894 25.6554 13.8639L21.3464 15.4804C21.9043 15.8265 22.3647 16.309 22.6842 16.8824C23.0037 17.4558 23.1719 18.1012 23.1726 18.7577C23.1711 19.3155 23.0508 19.8666 22.8195 20.3742L29.352 17.9191C29.3795 17.908 29.4071 17.8915 29.4402 17.8749C29.6821 17.7543 29.9006 17.5918 30.0857 17.3949C30.344 17.1408 30.5488 16.8376 30.6881 16.5031C30.8274 16.1686 30.8984 15.8097 30.8968 15.4473C30.8944 14.8036 30.667 14.1809 30.2539 13.6872C29.8407 13.1935 29.268 12.8598 28.6347 12.7439ZM4.41402 2.75768C4.56035 2.75768 4.70068 2.69955 4.80415 2.59608C4.90762 2.49261 4.96574 2.35228 4.96574 2.20595V1.10251C4.96574 0.956179 4.90762 0.815846 4.80415 0.712378C4.70068 0.608909 4.56035 0.550781 4.41402 0.550781C4.26769 0.550781 4.12736 0.608909 4.02389 0.712378C3.92042 0.815846 3.8623 0.956179 3.8623 1.10251V2.20595C3.8623 2.35228 3.92042 2.49261 4.02389 2.59608C4.12736 2.69955 4.26769 2.75768 4.41402 2.75768ZM4.41402 3.86113C4.26769 3.86113 4.12736 3.91925 4.02389 4.02272C3.92042 4.12619 3.8623 4.26652 3.8623 4.41285V5.5163C3.8623 5.66262 3.92042 5.80296 4.02389 5.90643C4.12736 6.00989 4.26769 6.06802 4.41402 6.06802C4.56035 6.06802 4.70068 6.00989 4.80415 5.90643C4.90762 5.80296 4.96574 5.66262 4.96574 5.5163V4.41285C4.96574 4.26652 4.90762 4.12619 4.80415 4.02272C4.70068 3.91925 4.56035 3.86113 4.41402 3.86113ZM3.31057 2.75768H2.20712C2.0608 2.75768 1.92046 2.81581 1.817 2.91927C1.71353 3.02274 1.6554 3.16308 1.6554 3.3094C1.6554 3.45573 1.71353 3.59606 1.817 3.69953C1.92046 3.803 2.0608 3.86113 2.20712 3.86113H3.31057C3.4569 3.86113 3.59723 3.803 3.7007 3.69953C3.80417 3.59606 3.8623 3.45573 3.8623 3.3094C3.8623 3.16308 3.80417 3.02274 3.7007 2.91927C3.59723 2.81581 3.4569 2.75768 3.31057 2.75768ZM6.62092 2.75768H5.51747C5.37114 2.75768 5.23081 2.81581 5.12734 2.91927C5.02387 3.02274 4.96574 3.16308 4.96574 3.3094C4.96574 3.45573 5.02387 3.59606 5.12734 3.69953C5.23081 3.803 5.37114 3.86113 5.51747 3.86113H6.62092C6.76724 3.86113 6.90758 3.803 7.01104 3.69953C7.11451 3.59606 7.17264 3.45573 7.17264 3.3094C7.17264 3.16308 7.11451 3.02274 7.01104 2.91927C6.90758 2.81581 6.76724 2.75768 6.62092 2.75768ZM31.011 29.678C30.9069 29.5775 30.7676 29.5218 30.6229 29.5231C30.4782 29.5244 30.3399 29.5824 30.2376 29.6847C30.1353 29.787 30.0772 29.9253 30.076 30.07C30.0747 30.2147 30.1303 30.354 30.2308 30.4581L31.0584 31.2857C31.1625 31.3862 31.3019 31.4418 31.4465 31.4405C31.5912 31.4393 31.7296 31.3813 31.8319 31.279C31.9341 31.1767 31.9922 31.0383 31.9934 30.8936C31.9947 30.749 31.9391 30.6096 31.8386 30.5055L31.011 29.678ZM28.5282 27.1952C28.4242 27.0947 28.2848 27.0391 28.1401 27.0403C27.9955 27.0416 27.8571 27.0996 27.7548 27.2019C27.6525 27.3042 27.5945 27.4426 27.5932 27.5872C27.592 27.7319 27.6476 27.8713 27.7481 27.9753L28.5757 28.8029C28.6797 28.9034 28.8191 28.959 28.9638 28.9578C29.1084 28.9565 29.2468 28.8985 29.3491 28.7962C29.4514 28.6939 29.5094 28.5555 29.5107 28.4109C29.5119 28.2662 29.4563 28.1268 29.3558 28.0228L28.5282 27.1952ZM28.5757 29.678L27.7481 30.5055C27.6954 30.5564 27.6534 30.6173 27.6244 30.6846C27.5955 30.7519 27.5803 30.8243 27.5797 30.8976C27.579 30.9709 27.593 31.0435 27.6207 31.1113C27.6485 31.1791 27.6894 31.2407 27.7413 31.2925C27.7931 31.3443 27.8547 31.3853 27.9225 31.413C27.9903 31.4408 28.0629 31.4547 28.1362 31.4541C28.2094 31.4535 28.2818 31.4382 28.3491 31.4093C28.4165 31.3804 28.4773 31.3384 28.5282 31.2857L29.3558 30.4581C29.4563 30.354 29.5119 30.2147 29.5107 30.07C29.5094 29.9253 29.4514 29.787 29.3491 29.6847C29.2468 29.5824 29.1084 29.5244 28.9638 29.5231C28.8191 29.5218 28.6797 29.5775 28.5757 29.678ZM30.6209 28.9646C30.7672 28.9645 30.9075 28.9064 31.011 28.8029L31.8386 27.9753C31.9391 27.8713 31.9947 27.7319 31.9934 27.5872C31.9922 27.4426 31.9341 27.3042 31.8319 27.2019C31.7296 27.0996 31.5912 27.0416 31.4465 27.0403C31.3019 27.0391 31.1625 27.0947 31.0584 27.1952L30.2308 28.0228C30.1537 28.0999 30.1012 28.1982 30.0799 28.3052C30.0586 28.4123 30.0696 28.5232 30.1113 28.624C30.153 28.7248 30.2237 28.8109 30.3145 28.8716C30.4052 28.9322 30.5118 28.9646 30.6209 28.9646Z" fill="url(#paint0_linear_4045_16672)" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16672" x1="0" y1="16.0024" x2="31.9934" y2="16.0024" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_4045_16672">
|
|
|
<rect width="32" height="32" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Полотенце'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M16.4107 19.8692C16.4107 16.9322 18.2742 14.4293 20.8782 13.4613C18.2967 8.79375 14.2837 3.79275 13.0377 2.28125C11.1502 4.57325 2.90723 14.8688 2.90723 19.8703C2.90723 25.4557 7.45123 30.0002 13.0372 30.0002C16.0792 30.0002 18.9602 28.6187 20.8762 26.2762C18.2732 25.3077 16.4107 22.8047 16.4107 19.8692ZM13.0372 27.3137C8.93273 27.3137 5.59273 23.9742 5.59273 19.8692C5.59273 19.7366 5.6454 19.6095 5.73917 19.5157C5.83294 19.4219 5.96012 19.3692 6.09273 19.3692C6.22533 19.3692 6.35251 19.4219 6.44628 19.5157C6.54005 19.6095 6.59273 19.7366 6.59273 19.8692C6.59273 23.4222 9.48373 26.3137 13.0372 26.3137C13.1698 26.3137 13.297 26.3664 13.3908 26.4602C13.4845 26.554 13.5372 26.6811 13.5372 26.8137C13.5372 26.9464 13.4845 27.0735 13.3908 27.1673C13.297 27.2611 13.1698 27.3137 13.0372 27.3137Z" fill="url(#paint0_linear_4045_16129)" />
|
|
|
<path d="M23.2517 14.0273C20.0307 14.0273 17.4102 16.6478 17.4102 19.8688C17.4102 23.0898 20.0307 25.7098 23.2517 25.7098C26.4727 25.7098 29.0927 23.0898 29.0927 19.8688C29.0927 16.6478 26.4722 14.0273 23.2517 14.0273ZM26.3352 18.5308L22.9527 21.9133C22.9063 21.9599 22.8512 21.9969 22.7906 22.0221C22.7299 22.0474 22.6649 22.0604 22.5992 22.0604C22.5335 22.0604 22.4684 22.0474 22.4077 22.0221C22.3471 21.9969 22.292 21.9599 22.2457 21.9133L20.1682 19.8358C20.1217 19.7894 20.0849 19.7343 20.0598 19.6737C20.0347 19.613 20.0217 19.548 20.0217 19.4823C20.0217 19.4167 20.0347 19.3517 20.0598 19.291C20.0849 19.2304 20.1217 19.1753 20.1682 19.1288C20.2146 19.0824 20.2697 19.0456 20.3303 19.0205C20.391 18.9953 20.456 18.9824 20.5217 18.9824C20.5873 18.9824 20.6523 18.9953 20.713 19.0205C20.7736 19.0456 20.8287 19.0824 20.8752 19.1288L22.5992 20.8528L25.6282 17.8238C25.6746 17.7774 25.7297 17.7406 25.7903 17.7155C25.851 17.6903 25.916 17.6774 25.9817 17.6774C26.0473 17.6774 26.1123 17.6903 26.173 17.7155C26.2336 17.7406 26.2887 17.7774 26.3352 17.8238C26.3816 17.8703 26.4184 17.9254 26.4435 17.986C26.4687 18.0467 26.4816 18.1117 26.4816 18.1773C26.4816 18.243 26.4687 18.308 26.4435 18.3687C26.4184 18.4293 26.3816 18.4844 26.3352 18.5308Z" fill="url(#paint1_linear_4045_16129)" />
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16129" x1="2.90723" y1="16.1407" x2="20.8782" y2="16.1407" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_16129" x1="17.4102" y1="19.8686" x2="29.0927" y2="19.8686" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Питьевая вода'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M9.61233 9.35569C9.93212 9.16782 10.2959 9.06774 10.6667 9.06555C10.7126 9.06555 15.2673 9.04209 16.9899 7.29915C17.1318 7.15411 17.3068 7.04568 17.4999 6.98316C17.6929 6.92065 17.8982 6.90591 18.0982 6.94022C18.3125 6.976 18.5152 7.06241 18.6894 7.19228C18.8636 7.32214 19.0043 7.49171 19.0998 7.68688C19.2842 8.11314 19.5938 8.47327 19.9875 8.71949C20.3813 8.96572 20.8407 9.08641 21.3046 9.06555C21.6859 9.06977 22.0595 9.17366 22.3883 9.36689C22.3312 7.71174 21.6339 6.14337 20.4434 4.99216C19.2528 3.84095 17.6619 3.19677 16.0057 3.19531C14.3496 3.19386 12.7576 3.83525 11.565 4.98438C10.3724 6.1335 9.67235 7.70064 9.61233 9.35569ZM4.0982 30.9322H7.335C6.87519 30.5352 6.50611 30.0441 6.25278 29.4919C5.99945 28.9398 5.86779 28.3397 5.86673 27.7322C5.86594 26.7553 6.191 25.806 6.79047 25.0346C7.31092 24.2894 7.75207 23.4918 8.10673 22.6549L6.831 23.0997C6.17259 23.3243 5.58896 23.7262 5.14441 24.2613C4.69986 24.7964 4.41165 25.4438 4.31153 26.1322L3.73607 30.5376C3.72999 30.5858 3.73432 30.6348 3.74876 30.6813C3.76321 30.7277 3.78743 30.7706 3.8198 30.8069C3.85462 30.8464 3.89747 30.878 3.94547 30.8996C3.99348 30.9212 4.04555 30.9323 4.0982 30.9322Z" fill="url(#paint0_linear_4045_10906)" />
|
|
|
<path d="M6.93359 27.7342C6.93952 28.5875 7.28361 29.4035 7.8904 30.0034C8.49719 30.6033 9.31714 30.938 10.1704 30.9342H21.8285C22.6821 30.9385 23.5024 30.6039 24.1096 30.004C24.7167 29.404 25.061 28.5877 25.0669 27.7342C25.0647 26.9965 24.8198 26.28 24.3699 25.6953C23.6204 24.602 23.0047 23.423 22.5357 22.1833L19.5821 21.1523C19.6219 21.6381 19.5642 22.1268 19.4123 22.5899C19.2605 23.053 19.0176 23.481 18.6979 23.8489C18.3722 24.2233 17.9717 24.5252 17.5221 24.7351C17.0725 24.9451 16.5838 25.0583 16.0877 25.0675H15.9107C15.4152 25.0579 14.9273 24.9445 14.4784 24.7347C14.0295 24.5249 13.6295 24.2233 13.3043 23.8494C12.9846 23.4816 12.7416 23.0535 12.5898 22.5905C12.4379 22.1274 12.3802 21.6386 12.42 21.1529L9.46639 22.1838C8.99728 23.4237 8.38134 24.603 7.63173 25.6963C7.18167 26.2806 6.93635 26.9967 6.93359 27.7342Z" fill="url(#paint1_linear_4045_10906)" />
|
|
|
<path d="M16.9217 19.5733C16.3254 19.7859 15.6739 19.7859 15.0775 19.5733C14.6191 19.4097 14.1745 19.21 13.7479 18.976L13.4881 21.1381C13.4452 21.4976 13.4781 21.862 13.5847 22.208C13.6914 22.554 13.8694 22.8737 14.1073 23.1466C14.333 23.4099 14.6121 23.6222 14.9262 23.7693C15.2402 23.9164 15.5819 23.9951 15.9287 24H16.0684C16.4155 23.9953 16.7576 23.9168 17.072 23.7696C17.3864 23.6225 17.6659 23.4101 17.8919 23.1466C18.1297 22.8739 18.3076 22.5543 18.4143 22.2085C18.5209 21.8627 18.5539 21.4985 18.5111 21.1392L18.2513 18.977C17.8246 19.2107 17.38 19.4101 16.9217 19.5733ZM18.3692 2.52528C18.148 2.0866 17.8093 1.71794 17.391 1.46037C16.9726 1.20279 16.4909 1.06641 15.9996 1.06641C15.5083 1.06641 15.0266 1.20279 14.6083 1.46037C14.1899 1.71794 13.8512 2.0866 13.63 2.52528C15.1665 2.00277 16.8327 2.00277 18.3692 2.52528ZM28.1799 30.808C28.2127 30.7719 28.2374 30.7291 28.2523 30.6827C28.2672 30.6362 28.272 30.5871 28.2663 30.5386L27.6903 26.128C27.5893 25.4402 27.3005 24.7937 26.8557 24.2596C26.4109 23.7255 25.8273 23.3245 25.1692 23.1007L23.8929 22.656C24.2476 23.4927 24.6888 24.2901 25.2092 25.0352C25.8088 25.8067 26.1339 26.7562 26.1329 27.7333C26.1321 28.3406 26.0007 28.9407 25.7476 29.4928C25.4946 30.0449 25.1258 30.5362 24.6663 30.9333H27.9031C27.9555 30.9332 28.0072 30.9219 28.0549 30.9003C28.1026 30.8787 28.1452 30.8472 28.1799 30.808ZM20.8028 12.8559C20.795 12.7816 20.8028 12.7065 20.8259 12.6354C20.849 12.5643 20.8867 12.4988 20.9367 12.4433C20.9867 12.3877 21.0478 12.3433 21.116 12.3128C21.1843 12.2824 21.2582 12.2667 21.3329 12.2666C21.4801 12.2666 21.6257 12.2362 21.7606 12.1772C21.8954 12.1182 22.0166 12.0319 22.1165 11.9238C22.2164 11.8157 22.2928 11.6881 22.341 11.549C22.3892 11.41 22.408 11.2624 22.3964 11.1157C22.3651 10.8456 22.2358 10.5965 22.033 10.4154C21.8302 10.2343 21.568 10.134 21.2961 10.1333C20.6344 10.1526 19.9817 9.97544 19.4205 9.62425C18.8592 9.27306 18.4146 8.76354 18.1425 8.15995C18.1222 8.11697 18.092 8.07943 18.0544 8.05041C18.0167 8.02139 17.9727 8.00172 17.926 7.99302C17.8939 7.98695 17.8608 7.989 17.8297 7.99896C17.7986 8.00893 17.7705 8.0265 17.7479 8.05008C15.7127 10.1098 10.8716 10.1333 10.6663 10.1333C10.3834 10.1333 10.1121 10.2457 9.91203 10.4457C9.71199 10.6457 9.59961 10.9171 9.59961 11.1999C9.59961 11.4828 9.71199 11.7542 9.91203 11.9542C10.1121 12.1542 10.3834 12.2666 10.6663 12.2666C10.741 12.2667 10.8149 12.2824 10.8832 12.3128C10.9514 12.3433 11.0126 12.3877 11.0625 12.4433C11.1125 12.4988 11.1503 12.5643 11.1733 12.6354C11.1964 12.7065 11.2043 12.7816 11.1964 12.8559C11.1793 13.0266 10.8391 16.9258 15.4364 18.5695C15.8007 18.6992 16.1985 18.6992 16.5628 18.5695C21.1633 16.9248 20.8193 13.0213 20.8028 12.8559Z" fill="url(#paint2_linear_4045_10906)" />
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_10906" x1="3.7334" y1="17.0638" x2="22.3883" y2="17.0638" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_10906" x1="6.93359" y1="26.0433" x2="25.0669" y2="26.0433" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint2_linear_4045_10906" x1="9.59961" y1="15.9998" x2="28.2686" y2="15.9998" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Вводный инструктаж'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_4045_16587)">
|
|
|
<path d="M8.24577 10.0705L8.26369 10.0769C9.49057 10.4801 10.5952 10.7354 11.5783 10.8429C11.6602 10.6356 11.744 10.4333 11.8285 10.2388C12.7699 8.06662 14.5671 5.07206 16.6823 3.87718C16.9429 3.72924 17.2239 3.62055 17.5162 3.55462C17.3578 3.41585 17.1913 3.28656 17.0176 3.16742C13.7248 0.921021 8.33281 -0.56506 6.28481 0.2055C5.69857 0.4263 5.24929 0.96198 5.09889 1.76774C4.76801 4.00006 4.84289 5.8023 5.32289 7.17318C5.82657 8.60934 6.80129 9.5751 8.24577 10.0705Z" fill="url(#paint0_linear_4045_16587)" />
|
|
|
<path d="M9.85504 18.9095L10.3126 18.2733C10.4342 18.1043 10.5776 17.9603 10.737 17.8426C10.2358 16.0903 10.5411 14.0199 11.1075 12.1843C10.257 12.0704 9.3392 11.8637 8.35424 11.5648C8.43616 11.9731 8.46304 12.3834 8.43488 12.7936C8.3728 13.7043 8.03872 14.6016 7.43264 15.4842C7.21632 15.801 6.78368 15.8823 6.46688 15.6659C6.15008 15.4496 6.0688 15.017 6.28512 14.7002C6.74784 14.0269 7.00128 13.3581 7.04608 12.6957C7.2048 10.361 4.98016 10.3968 4.00992 7.6301C3.52288 6.24066 3.38912 4.51458 3.608 2.45314C3.12416 2.45122 2.65376 2.61826 2.29984 3.0477C0.159041 5.65378 -0.621759 14.0608 2.17504 16.873L9.85504 18.9095ZM0.482241 23.3651L5.8768 24.7719C5.92672 24.489 6.03872 24.2138 6.21664 23.9661L7.92864 21.5859L1.3904 19.8816L0.482241 23.3651ZM9.35136 19.609L2.51168 17.8253C2.21024 17.7466 1.89984 17.929 1.82112 18.2304L1.7424 18.5319L8.80224 20.3731L9.35136 19.609ZM6.23584 26.3079L0.130241 24.7155L0.0515212 25.017C-0.0271988 25.3184 0.155201 25.6288 0.456641 25.7075L7.96064 27.664L6.66848 26.7347C6.50306 26.6157 6.35712 26.4717 6.23584 26.3079ZM31.0666 10.5248C28.3402 6.5773 22.3728 2.57666 21.1082 4.3245C19.8762 5.39842 20.3709 8.24962 18.4022 11.9559C18.2659 12.3155 17.8634 12.4967 17.5037 12.3603C17.144 12.224 16.9629 11.8215 17.0992 11.4618C17.7546 9.71586 18.8803 6.9101 18.9059 5.06562C18.4317 4.85378 17.8973 4.81858 17.3795 5.11042C14.4432 6.7693 10.6858 14.3303 12.2819 17.9616L21.9421 24.9722C26.6403 23.6327 34.6634 15.7319 31.0666 10.5248ZM15.0986 27.6768C15.576 27.5987 16.024 27.3402 16.3267 26.9197C16.6301 26.4986 16.7331 25.9911 16.6563 25.5143C16.5782 25.0375 16.319 24.5901 15.8973 24.2867L10.5168 20.416L8.31328 23.4784L13.6931 27.3491C14.1142 27.6519 14.6211 27.7549 15.0986 27.6768Z" fill="url(#paint1_linear_4045_16587)" />
|
|
|
<path d="M21.0225 25.283L12.2526 18.9733C11.9998 18.7915 11.6446 18.8491 11.4622 19.1019L11.331 19.2843L16.7108 23.155C17.4423 23.6811 17.8923 24.46 18.0279 25.2894L18.0286 25.2933C18.1636 26.1227 17.9844 27.004 17.4583 27.7355C16.931 28.4683 16.1521 28.9195 15.3227 29.0545C14.4926 29.1902 13.6113 29.0097 12.8779 28.483L7.49801 24.6123L7.36681 24.7953C7.18505 25.0481 7.24265 25.404 7.49545 25.5857L16.2654 31.8955C16.5182 32.0773 16.8734 32.019 17.0558 31.7662L21.1511 26.0734C21.3335 25.8206 21.2753 25.4648 21.0225 25.283Z" fill="url(#paint2_linear_4045_16587)" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16587" x1="4.89648" y1="5.42147" x2="17.5162" y2="5.42147" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_16587" x1="0.0332031" y1="15.0775" x2="31.9674" y2="15.0775" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint2_linear_4045_16587" x1="7.26074" y1="25.4343" x2="21.2575" y2="25.4343" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_4045_16587">
|
|
|
<rect width="32" height="32" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Посещение зоны бокса'
|
|
|
]
|
|
|
];
|
|
|
} else {
|
|
|
$card_include = [
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_2252_3443)">
|
|
|
<path d="M30.1357 13.7878C27.1811 11.2443 22.4588 12.0522 20.7407 15.6171C21.6969 15.8076 22.6197 16.1378 23.4796 16.5973C23.5448 16.632 23.6025 16.6792 23.6494 16.7363C23.6963 16.7933 23.7316 16.859 23.7531 16.9296C23.7746 17.0003 23.782 17.0745 23.7748 17.148C23.7677 17.2215 23.7461 17.2929 23.7114 17.358C23.6767 17.4232 23.6294 17.4809 23.5724 17.5278C23.5154 17.5748 23.4496 17.61 23.379 17.6315C23.3083 17.653 23.2341 17.6604 23.1606 17.6533C23.0871 17.6461 23.0158 17.6246 22.9506 17.5898C20.5335 16.2653 17.1725 16.0236 15.5747 18.9144L14.8915 17.8868L13.1186 15.2049C12.2108 13.8911 11.8325 11.4656 13.4518 10.5244C14.4427 9.95104 15.2182 9.06842 15.6593 8.01194H18.3017C18.4033 9.98804 19.0357 11.919 20.2891 11.919C20.494 11.8924 22.7806 11.9743 22.9483 11.8738C25.2801 11.2494 25.2858 3.05871 22.6491 2.95312H20.2891C19.03 2.95312 18.3977 4.901 18.296 6.88274H15.7271L15.2302 4.68645C15.1627 4.44481 15.0382 4.22287 14.8673 4.03918C14.6964 3.8555 14.484 3.71541 14.2478 3.63064C13.0571 3.18856 12.1842 4.47642 11.0014 4.48884L10.1037 4.6074C8.9423 4.60627 8.41891 6.01495 8.07112 6.88274H6.51282C6.41684 4.90664 5.78449 2.96442 4.52543 2.96442H2.1654C-0.550326 3.08524 -0.505158 11.8552 2.1654 11.9303C2.2196 11.9263 4.48195 11.9331 4.59883 11.9303C5.63205 11.823 6.13906 10.6227 6.39426 9.14114H5.24812C5.05051 10.18 4.7061 10.7615 4.53108 10.8011C4.26571 10.7446 3.6503 9.53636 3.6503 7.44734C3.6503 5.36397 4.26571 4.15008 4.52543 4.09362C4.76256 4.14443 5.28764 5.14377 5.38362 6.88274H4.60447C4.45473 6.88274 4.31112 6.94223 4.20524 7.04811C4.09936 7.15399 4.03987 7.2976 4.03987 7.44734C4.03987 7.59708 4.09936 7.74069 4.20524 7.84657C4.31112 7.95246 4.45473 8.01194 4.60447 8.01194C5.52816 8.01025 6.86231 8.01307 7.79446 8.01194C7.69968 8.56498 7.57147 9.11176 7.41054 9.64928C6.67656 12.2295 6.45072 15.9107 6.38861 18.5417C6.3403 20.5807 6.73721 22.6058 7.55169 24.4757L8.98013 27.7842C9.13735 28.1325 9.3857 28.4318 9.69895 28.6506C10.0122 28.8694 10.3787 28.9996 10.7598 29.0273C11.1409 29.0551 11.5224 28.9794 11.8641 28.8083C12.2057 28.6372 12.4948 28.377 12.7008 28.0552C12.7167 28.0298 12.7394 28.0094 12.7664 27.9964C12.7934 27.9834 12.8235 27.9784 12.8533 27.9818C20.6899 28.7497 27.2845 23.578 28.1257 22.8892C28.7524 22.6577 31.8069 21.376 32.1287 18.2538C32.1981 17.4019 32.0518 16.5463 31.7035 15.7658C31.3552 14.9854 30.816 14.3051 30.1357 13.7878ZM22.6491 4.08233C22.9088 4.13879 23.5242 5.34703 23.5242 7.43605C23.5242 9.51942 22.9088 10.7333 22.6547 10.7898C22.395 10.7333 21.7796 9.51942 21.7796 7.43605C21.7796 5.34703 22.395 4.13879 22.6491 4.08233Z" fill="url(#paint0_linear_2252_3443)" />
|
|
|
<path d="M23.2132 7.58476V7.29116C23.2132 7.14142 23.1537 6.99781 23.0478 6.89193C22.9419 6.78605 22.7983 6.72656 22.6486 6.72656C22.4988 6.72656 22.3552 6.78605 22.2494 6.89193C22.1435 6.99781 22.084 7.14142 22.084 7.29116V7.58476C22.084 7.7345 22.1435 7.87811 22.2494 7.98399C22.3552 8.08987 22.4988 8.14936 22.6486 8.14936C22.7983 8.14936 22.9419 8.08987 23.0478 7.98399C23.1537 7.87811 23.2132 7.7345 23.2132 7.58476Z" fill="url(#paint1_linear_2252_3443)" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_2252_3443" x1="0.145508" y1="15.993" x2="32.1455" y2="15.993" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_2252_3443" x1="22.084" y1="7.43796" x2="23.2132" y2="7.43796" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_2252_3443">
|
|
|
<rect width="32" height="32" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Тренажерный зал'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M29.4606 25.3449H28.6555V11.7294C28.6555 11.6342 28.6293 11.5409 28.5796 11.4598C28.53 11.3786 28.4589 11.3128 28.3742 11.2695L26.593 10.3606L27.9035 7.84085C27.9641 7.7197 27.9747 7.57957 27.9329 7.45069C27.8911 7.32182 27.8003 7.21455 27.6801 7.15202C27.56 7.08949 27.42 7.07672 27.2905 7.11646C27.161 7.15621 27.0523 7.24528 26.9879 7.36447L23.887 13.3252C23.8544 13.3855 23.8342 13.4516 23.8274 13.5197C23.8206 13.5878 23.8275 13.6566 23.8476 13.7221C23.8677 13.7875 23.9006 13.8483 23.9444 13.9009C23.9882 13.9536 24.0421 13.9969 24.1028 14.0285C24.1635 14.0601 24.2299 14.0793 24.2982 14.085C24.3664 14.0907 24.4351 14.0827 24.5002 14.0616C24.5653 14.0405 24.6256 14.0066 24.6775 13.962C24.7294 13.9174 24.7719 13.8629 24.8026 13.8016L26.1161 11.2752L27.6227 12.0442V25.3449H6.83974L9.77032 20.7203C9.88819 20.5335 9.97206 20.3273 10.0181 20.1113L10.2142 19.1668L8.65032 18.5939C7.9318 18.287 7.32091 17.7731 6.89548 17.1178L6.49806 19.0378L3.62839 23.5642C3.46282 23.8287 3.36762 24.1311 3.35181 24.4428C3.336 24.7544 3.40011 25.065 3.53806 25.3449H2.53935C1.86588 25.3449 1.21998 25.6124 0.74376 26.0886C0.267538 26.5648 0 27.2107 0 27.8842C0 28.5577 0.267538 29.2036 0.74376 29.6798C1.21998 30.156 1.86588 30.4236 2.53935 30.4236H29.4606C30.1341 30.4236 30.78 30.156 31.2562 29.6798C31.7325 29.2036 32 28.5577 32 27.8842C32 27.2107 31.7325 26.5648 31.2562 26.0886C30.78 25.6124 30.1341 25.3449 29.4606 25.3449Z" fill="url(#paint0_linear_4045_4481)" />
|
|
|
<path d="M17.3363 9.97687L17.1867 9.82203C17.1859 10.5312 16.9797 11.2249 16.5931 11.8195L15.8086 13.0427C15.9634 13.2294 16.1574 13.3799 16.3768 13.4833C16.5962 13.5868 16.8357 13.6408 17.0783 13.6414C17.3753 13.6415 17.6665 13.5594 17.9196 13.404L22.2809 10.7304C22.4626 10.6205 22.6209 10.4757 22.7466 10.3045C22.8722 10.1332 22.9628 9.93877 23.0131 9.73238C23.0634 9.52599 23.0724 9.31169 23.0396 9.10181C23.0068 8.89192 22.9329 8.69059 22.822 8.50937C22.7112 8.32815 22.5656 8.17062 22.3937 8.04582C22.2218 7.92103 22.0269 7.83144 21.8203 7.7822C21.6137 7.73296 21.3993 7.72503 21.1896 7.75888C20.9799 7.79274 20.7789 7.86769 20.5983 7.97945L17.3363 9.97687Z" fill="url(#paint1_linear_4045_4481)" />
|
|
|
<path d="M4.14944 11.1013C4.36483 11.4702 4.71657 11.7397 5.12883 11.8517C5.5411 11.9637 5.98086 11.9092 6.35332 11.7L9.13009 10.1103L9.99719 10.1516L7.76235 13.6458C7.55235 13.9815 7.41746 14.3587 7.36692 14.7515C7.31637 15.1443 7.35138 15.5434 7.46953 15.9214C7.58768 16.2994 7.78619 16.6473 8.05143 16.9414C8.31667 17.2355 8.64238 17.4687 9.00622 17.6251L12.2475 18.8174L10.5701 21.5322C10.3232 21.9468 10.2497 22.4419 10.3654 22.9103C10.4811 23.3787 10.7767 23.7826 11.1882 24.0345C11.5997 24.2864 12.0938 24.366 12.5636 24.2561C13.0334 24.1461 13.4409 23.8554 13.6978 23.4471L16.5365 18.8225C16.6798 18.5921 16.7695 18.3324 16.799 18.0626C16.8285 17.7928 16.797 17.5198 16.7069 17.2638C16.6171 17.0085 16.472 16.7761 16.2819 16.5834C16.0919 16.3907 15.8616 16.2424 15.6075 16.149L13.1714 15.2509L15.7262 11.2613C16.1121 10.6558 16.2425 9.92213 16.0887 9.22081C15.9349 8.5195 15.5095 7.90769 14.9056 7.51932C14.8926 7.50957 14.8787 7.50094 14.8643 7.49351C13.8062 6.78126 9.95074 6.82771 8.82557 6.86384C8.51514 6.84381 8.20585 6.91754 7.93783 7.07545L4.74815 8.89739C4.56404 9.00269 4.4025 9.14326 4.27275 9.31104C4.143 9.47883 4.0476 9.67054 3.992 9.87522C3.93639 10.0799 3.92168 10.2935 3.94869 10.5039C3.97571 10.7143 4.04393 10.9173 4.14944 11.1013ZM18.7559 4.35029C18.7559 3.78578 18.5885 3.23395 18.2749 2.76458C17.9613 2.29521 17.5155 1.92938 16.994 1.71336C16.4724 1.49733 15.8985 1.44081 15.3449 1.55094C14.7912 1.66107 14.2826 1.9329 13.8835 2.33207C13.4843 2.73124 13.2125 3.2398 13.1024 3.79346C12.9922 4.34712 13.0487 4.92101 13.2648 5.44254C13.4808 5.96408 13.8466 6.40984 14.316 6.72346C14.7854 7.03709 15.3372 7.20448 15.9017 7.20448C16.6586 7.20407 17.3843 6.90323 17.9195 6.36806C18.4546 5.83288 18.7555 5.10714 18.7559 4.35029Z" fill="url(#paint2_linear_4045_4481)" />
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_4481" x1="0" y1="18.7587" x2="32" y2="18.7587" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_4481" x1="15.8086" y1="10.6898" x2="23.0589" y2="10.6898" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint2_linear_4045_4481" x1="3.93555" y1="12.9002" x2="18.7559" y2="12.9002" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Кардио зона'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_4045_16041)">
|
|
|
<path d="M2.9082 10.1836H21.8173V21.82H2.9082V10.1836Z" fill="url(#paint0_linear_4045_16041)" />
|
|
|
<path d="M30.5445 13.0916V10.1825C30.5445 8.57588 29.2421 7.27344 27.6355 7.27344H2.90809C1.30146 7.27338 -0.000976562 8.57582 -0.000976562 10.1824V21.8188C-0.000976562 23.4255 1.30146 24.7279 2.90809 24.7279H27.6354C29.242 24.7279 30.5445 23.4255 30.5445 21.8188V18.9098C31.3478 18.9098 31.999 18.2585 31.999 17.4552V14.5461C31.9991 13.7428 31.3478 13.0916 30.5445 13.0916ZM29.09 14.5461V21.8188C29.09 22.6222 28.4388 23.2734 27.6355 23.2734H2.90809C2.10478 23.2734 1.45353 22.6222 1.45353 21.8188V10.1824C1.45353 9.37913 2.10478 8.72788 2.90809 8.72788H27.6354C28.4387 8.72788 29.09 9.37913 29.09 10.1824L29.09 14.5461Z" fill="url(#paint1_linear_4045_16041)" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16041" x1="2.9082" y1="16.0018" x2="21.8173" y2="16.0018" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_16041" x1="-0.000976562" y1="16.0007" x2="31.999" y2="16.0007" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_4045_16041">
|
|
|
<rect width="32" height="32" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Зарядка телефона'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_4045_16581)">
|
|
|
<path d="M16.9414 24.4688H32.0002V28.2335H16.9414V24.4688ZM16.9414 30.1158H18.8238V31.9982H16.9414V30.1158ZM30.1179 30.1158H32.0002V31.9982H30.1179V30.1158Z" fill="url(#paint0_linear_4045_16581)" />
|
|
|
<path d="M24.4706 0H13.1765V28.2353H15.0588V22.5882H24.4706V0ZM20.7059 16.9412H18.8235V15.0588H20.7059V16.9412ZM21.6471 13.1765H16V11.2941H21.6471V13.1765ZM21.6471 9.41177H16V7.52941H21.6471V9.41177ZM21.6471 5.64706H16V3.76471H21.6471V5.64706ZM0 28.2353H11.2941V0H0V28.2353ZM7.52941 16.9412H5.64706V15.0588H7.52941V16.9412ZM2.82353 3.76471H8.47059V5.64706H2.82353V3.76471ZM2.82353 7.52941H8.47059V9.41177H2.82353V7.52941ZM2.82353 11.2941H8.47059V13.1765H2.82353V11.2941Z" fill="url(#paint1_linear_4045_16581)" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16581" x1="16.9414" y1="28.2335" x2="32.0002" y2="28.2335" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_16581" x1="0" y1="14.1176" x2="24.4706" y2="14.1176" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_4045_16581">
|
|
|
<rect width="32" height="32" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Раздевалки с душевыми'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M32 10.3125H30.125V5.625H24.5V10.3125H22.625V1.875H20.75V10.3125H11.25V1.875H9.375V10.3125H7.5V5.625H1.875V10.3125H0V12.1875H1.875V16.875H7.5V12.1875H9.375V17.8125H11.25V12.1875H20.75V17.8125H22.625V12.1875H24.5V16.875H30.125V12.1875H32V10.3125ZM20.75 28.25H18.8125V25.3125H13.1875V28.25H11.25V25.3125H9.375V28.25H5.625V30.125H26.375V28.25H22.625V25.3125H20.75V28.25ZM9.375 19.6875C8.33944 19.6875 7.5 20.5269 7.5 21.5625V23.4375H24.5V21.5625C24.5 20.5269 23.6606 19.6875 22.625 19.6875H9.375Z" fill="url(#paint0_linear_4045_11035)" />
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_11035" x1="0" y1="16" x2="32" y2="16" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Функциональная зона'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M9.61233 9.35569C9.93212 9.16782 10.2959 9.06774 10.6667 9.06555C10.7126 9.06555 15.2673 9.04209 16.9899 7.29915C17.1318 7.15411 17.3068 7.04568 17.4999 6.98316C17.6929 6.92065 17.8982 6.90591 18.0982 6.94022C18.3125 6.976 18.5152 7.06241 18.6894 7.19228C18.8636 7.32214 19.0043 7.49171 19.0998 7.68688C19.2842 8.11314 19.5938 8.47327 19.9875 8.71949C20.3813 8.96572 20.8407 9.08641 21.3046 9.06555C21.6859 9.06977 22.0595 9.17366 22.3883 9.36689C22.3312 7.71174 21.6339 6.14337 20.4434 4.99216C19.2528 3.84095 17.6619 3.19677 16.0057 3.19531C14.3496 3.19386 12.7576 3.83525 11.565 4.98438C10.3724 6.1335 9.67235 7.70064 9.61233 9.35569ZM4.0982 30.9322H7.335C6.87519 30.5352 6.50611 30.0441 6.25278 29.4919C5.99945 28.9398 5.86779 28.3397 5.86673 27.7322C5.86594 26.7553 6.191 25.806 6.79047 25.0346C7.31092 24.2894 7.75207 23.4918 8.10673 22.6549L6.831 23.0997C6.17259 23.3243 5.58896 23.7262 5.14441 24.2613C4.69986 24.7964 4.41165 25.4438 4.31153 26.1322L3.73607 30.5376C3.72999 30.5858 3.73432 30.6348 3.74876 30.6813C3.76321 30.7277 3.78743 30.7706 3.8198 30.8069C3.85462 30.8464 3.89747 30.878 3.94547 30.8996C3.99348 30.9212 4.04555 30.9323 4.0982 30.9322Z" fill="url(#paint0_linear_4045_10906)" />
|
|
|
<path d="M6.93359 27.7342C6.93952 28.5875 7.28361 29.4035 7.8904 30.0034C8.49719 30.6033 9.31714 30.938 10.1704 30.9342H21.8285C22.6821 30.9385 23.5024 30.6039 24.1096 30.004C24.7167 29.404 25.061 28.5877 25.0669 27.7342C25.0647 26.9965 24.8198 26.28 24.3699 25.6953C23.6204 24.602 23.0047 23.423 22.5357 22.1833L19.5821 21.1523C19.6219 21.6381 19.5642 22.1268 19.4123 22.5899C19.2605 23.053 19.0176 23.481 18.6979 23.8489C18.3722 24.2233 17.9717 24.5252 17.5221 24.7351C17.0725 24.9451 16.5838 25.0583 16.0877 25.0675H15.9107C15.4152 25.0579 14.9273 24.9445 14.4784 24.7347C14.0295 24.5249 13.6295 24.2233 13.3043 23.8494C12.9846 23.4816 12.7416 23.0535 12.5898 22.5905C12.4379 22.1274 12.3802 21.6386 12.42 21.1529L9.46639 22.1838C8.99728 23.4237 8.38134 24.603 7.63173 25.6963C7.18167 26.2806 6.93635 26.9967 6.93359 27.7342Z" fill="url(#paint1_linear_4045_10906)" />
|
|
|
<path d="M16.9217 19.5733C16.3254 19.7859 15.6739 19.7859 15.0775 19.5733C14.6191 19.4097 14.1745 19.21 13.7479 18.976L13.4881 21.1381C13.4452 21.4976 13.4781 21.862 13.5847 22.208C13.6914 22.554 13.8694 22.8737 14.1073 23.1466C14.333 23.4099 14.6121 23.6222 14.9262 23.7693C15.2402 23.9164 15.5819 23.9951 15.9287 24H16.0684C16.4155 23.9953 16.7576 23.9168 17.072 23.7696C17.3864 23.6225 17.6659 23.4101 17.8919 23.1466C18.1297 22.8739 18.3076 22.5543 18.4143 22.2085C18.5209 21.8627 18.5539 21.4985 18.5111 21.1392L18.2513 18.977C17.8246 19.2107 17.38 19.4101 16.9217 19.5733ZM18.3692 2.52528C18.148 2.0866 17.8093 1.71794 17.391 1.46037C16.9726 1.20279 16.4909 1.06641 15.9996 1.06641C15.5083 1.06641 15.0266 1.20279 14.6083 1.46037C14.1899 1.71794 13.8512 2.0866 13.63 2.52528C15.1665 2.00277 16.8327 2.00277 18.3692 2.52528ZM28.1799 30.808C28.2127 30.7719 28.2374 30.7291 28.2523 30.6827C28.2672 30.6362 28.272 30.5871 28.2663 30.5386L27.6903 26.128C27.5893 25.4402 27.3005 24.7937 26.8557 24.2596C26.4109 23.7255 25.8273 23.3245 25.1692 23.1007L23.8929 22.656C24.2476 23.4927 24.6888 24.2901 25.2092 25.0352C25.8088 25.8067 26.1339 26.7562 26.1329 27.7333C26.1321 28.3406 26.0007 28.9407 25.7476 29.4928C25.4946 30.0449 25.1258 30.5362 24.6663 30.9333H27.9031C27.9555 30.9332 28.0072 30.9219 28.0549 30.9003C28.1026 30.8787 28.1452 30.8472 28.1799 30.808ZM20.8028 12.8559C20.795 12.7816 20.8028 12.7065 20.8259 12.6354C20.849 12.5643 20.8867 12.4988 20.9367 12.4433C20.9867 12.3877 21.0478 12.3433 21.116 12.3128C21.1843 12.2824 21.2582 12.2667 21.3329 12.2666C21.4801 12.2666 21.6257 12.2362 21.7606 12.1772C21.8954 12.1182 22.0166 12.0319 22.1165 11.9238C22.2164 11.8157 22.2928 11.6881 22.341 11.549C22.3892 11.41 22.408 11.2624 22.3964 11.1157C22.3651 10.8456 22.2358 10.5965 22.033 10.4154C21.8302 10.2343 21.568 10.134 21.2961 10.1333C20.6344 10.1526 19.9817 9.97544 19.4205 9.62425C18.8592 9.27306 18.4146 8.76354 18.1425 8.15995C18.1222 8.11697 18.092 8.07943 18.0544 8.05041C18.0167 8.02139 17.9727 8.00172 17.926 7.99302C17.8939 7.98695 17.8608 7.989 17.8297 7.99896C17.7986 8.00893 17.7705 8.0265 17.7479 8.05008C15.7127 10.1098 10.8716 10.1333 10.6663 10.1333C10.3834 10.1333 10.1121 10.2457 9.91203 10.4457C9.71199 10.6457 9.59961 10.9171 9.59961 11.1999C9.59961 11.4828 9.71199 11.7542 9.91203 11.9542C10.1121 12.1542 10.3834 12.2666 10.6663 12.2666C10.741 12.2667 10.8149 12.2824 10.8832 12.3128C10.9514 12.3433 11.0126 12.3877 11.0625 12.4433C11.1125 12.4988 11.1503 12.5643 11.1733 12.6354C11.1964 12.7065 11.2043 12.7816 11.1964 12.8559C11.1793 13.0266 10.8391 16.9258 15.4364 18.5695C15.8007 18.6992 16.1985 18.6992 16.5628 18.5695C21.1633 16.9248 20.8193 13.0213 20.8028 12.8559Z" fill="url(#paint2_linear_4045_10906)" />
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_10906" x1="3.7334" y1="17.0638" x2="22.3883" y2="17.0638" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_10906" x1="6.93359" y1="26.0433" x2="25.0669" y2="26.0433" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint2_linear_4045_10906" x1="9.59961" y1="15.9998" x2="28.2686" y2="15.9998" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Вводный инструктаж'
|
|
|
],
|
|
|
|
|
|
];
|
|
|
}
|
|
|
|
|
|
|
|
|
foreach ($card_include as $card) {
|
|
|
$card_svg = $card['svg'];
|
|
|
$card_heading = $card['heading'];
|
|
|
?>
|
|
|
<div class="max-[768px]:px-[16px] max-[768px]:max-w-full small-shadow w-full bg-[#f8f8f8] rounded-[12px] border border-[#fff] h-[78px] max-w-[301px] px-[24px] flex items-center gap-[12px]">
|
|
|
<div class="[&>svg]:min-w-fit"> <?php echo $card_svg; ?></div>
|
|
|
<div class="flex items-center gap-[8px] text-[16px] font-[600] leading-[145%] text-[#222]">
|
|
|
<?php echo $card_heading; ?>
|
|
|
</div>
|
|
|
</div>
|
|
|
<?php
|
|
|
}
|
|
|
?>
|
|
|
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</section>
|
|
|
|
|
|
<?php
|
|
|
$additional_services = [
|
|
|
[
|
|
|
'svg' => '<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M33.6458 2.375H4.35417C3.19963 2.37584 2.09262 2.83485 1.27623 3.65123C0.459849 4.46762 0.00083875 5.57463 0 6.72917L0 26.5208C0.00083875 27.6754 0.459849 28.7824 1.27623 29.5988C2.09262 30.4152 3.19963 30.8742 4.35417 30.875H33.6458C34.8004 30.8742 35.9074 30.4152 36.7238 29.5988C37.5401 28.7824 37.9992 27.6754 38 26.5208V6.72917C37.9992 5.57463 37.5401 4.46762 36.7238 3.65123C35.9074 2.83485 34.8004 2.37584 33.6458 2.375ZM11.875 8.70833C14.0568 8.70833 15.8333 10.4848 15.8333 12.6667C15.8333 14.8485 14.0568 16.625 11.875 16.625C9.69317 16.625 7.91667 14.8485 7.91667 12.6667C7.91667 10.4848 9.69317 8.70833 11.875 8.70833ZM19 23.3542C19 23.6691 18.8749 23.9712 18.6522 24.1939C18.4295 24.4166 18.1274 24.5417 17.8125 24.5417H5.9375C5.62256 24.5417 5.32051 24.4166 5.09781 24.1939C4.87511 23.9712 4.75 23.6691 4.75 23.3542V22.5625C4.75084 21.408 5.20985 20.3009 6.02623 19.4846C6.84262 18.6682 7.94963 18.2092 9.10417 18.2083H14.6458C15.8004 18.2092 16.9074 18.6682 17.7238 19.4846C18.5402 20.3009 18.9992 21.408 19 22.5625V23.3542ZM32.0625 24.5417H23.3542C23.0392 24.5417 22.7372 24.4166 22.5145 24.1939C22.2918 23.9712 22.1667 23.6691 22.1667 23.3542C22.1667 23.0392 22.2918 22.7372 22.5145 22.5145C22.7372 22.2918 23.0392 22.1667 23.3542 22.1667H32.0625C32.3774 22.1667 32.6795 22.2918 32.9022 22.5145C33.1249 22.7372 33.25 23.0392 33.25 23.3542C33.25 23.6691 33.1249 23.9712 32.9022 24.1939C32.6795 24.4166 32.3774 24.5417 32.0625 24.5417ZM32.0625 18.2083H23.3542C23.0392 18.2083 22.7372 18.0832 22.5145 17.8605C22.2918 17.6378 22.1667 17.3358 22.1667 17.0208C22.1667 16.7059 22.2918 16.4038 22.5145 16.1811C22.7372 15.9584 23.0392 15.8333 23.3542 15.8333H32.0625C32.3774 15.8333 32.6795 15.9584 32.9022 16.1811C33.1249 16.4038 33.25 16.7059 33.25 17.0208C33.25 17.3358 33.1249 17.6378 32.9022 17.8605C32.6795 18.0832 32.3774 18.2083 32.0625 18.2083ZM32.0625 11.875H23.3542C23.0392 11.875 22.7372 11.7499 22.5145 11.5272C22.2918 11.3045 22.1667 11.0024 22.1667 10.6875C22.1667 10.3726 22.2918 10.0705 22.5145 9.84781C22.7372 9.62511 23.0392 9.5 23.3542 9.5H32.0625C32.3774 9.5 32.6795 9.62511 32.9022 9.84781C33.1249 10.0705 33.25 10.3726 33.25 10.6875C33.25 11.0024 33.1249 11.3045 32.9022 11.5272C32.6795 11.7499 32.3774 11.875 32.0625 11.875Z" fill="url(#paint0_linear_4045_16137)" />
|
|
|
<mask id="mask0_4045_16137" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="19" y="17" width="19" height="20">
|
|
|
<path d="M19 17.8125H38V36.8125H19V17.8125Z" fill="white" />
|
|
|
</mask>
|
|
|
<g mask="url(#mask0_4045_16137)">
|
|
|
<path d="M36.4163 26.5195H33.1151L35.6801 23.9545L34.5638 22.8304L30.8747 26.5195H29.2913V24.9362L32.9805 21.247L31.8563 20.1308L29.2913 22.6958V19.3945H27.708V22.6958L25.143 20.1308L24.0188 21.247L27.708 24.9362V26.5195H26.1247L22.4355 22.8304L21.3193 23.9545L23.8843 26.5195H20.583V28.1029H23.8843L21.3193 30.6679L22.4355 31.792L26.1247 28.1029H27.708V29.6862L24.0188 33.3754L25.143 34.4916L27.708 31.9266V35.2279H29.2913V31.9266L31.8563 34.4916L32.9805 33.3754L29.2913 29.6862V28.1029H30.8747L34.5638 31.792L35.6801 30.6679L33.1151 28.1029H36.4163V26.5195Z" fill="#E21E24" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16137" x1="0" y1="16.625" x2="38" y2="16.625" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Заморозка карты',
|
|
|
'description' => 'Услуга временно приостановить членство в фитнес-центре, и таким образом перенести действие карты на более удобный период. От 10 до 30 дней для клубных карт на 6 месяцев и от 10 до 60 дней для карт на 12 месяцев.'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_2252_3481)">
|
|
|
<path d="M19 6.67969C20.8445 6.67969 22.3398 5.18439 22.3398 3.33984C22.3398 1.4953 20.8445 0 19 0C17.1555 0 15.6602 1.4953 15.6602 3.33984C15.6602 5.18439 17.1555 6.67969 19 6.67969Z" fill="url(#paint0_linear_2252_3481)" />
|
|
|
<path d="M19 27.4609C20.8445 27.4609 22.3398 25.9656 22.3398 24.1211C22.3398 22.2765 20.8445 20.7812 19 20.7812C17.1555 20.7812 15.6602 22.2765 15.6602 24.1211C15.6602 25.9656 17.1555 27.4609 19 27.4609Z" fill="url(#paint1_linear_2252_3481)" />
|
|
|
<path d="M36.8867 14.1016C36.2719 14.1016 35.7734 14.6 35.7734 15.2148V18.5547H32.5025C32.8955 19.2309 33.1022 19.9992 33.1016 20.7812H35.7734V24.1211C35.7734 24.7359 36.2719 25.2344 36.8867 25.2344C37.5015 25.2344 38 24.7359 38 24.1211V15.2148C38 14.6 37.5015 14.1016 36.8867 14.1016ZM2.22656 15.2148C2.22656 14.6 1.72811 14.1016 1.11328 14.1016C0.498453 14.1016 0 14.6 0 15.2148V24.1211C0 24.7359 0.498453 25.2344 1.11328 25.2344C1.72811 25.2344 2.22656 24.7359 2.22656 24.1211V20.7812H4.89844C4.89782 19.9992 5.10453 19.2309 5.49753 18.5547H2.22656V15.2148ZM24.7944 18.5547H13.2056C13.5986 19.2309 13.8053 19.9992 13.8047 20.7812H24.1953C24.1947 19.9992 24.4014 19.2309 24.7944 18.5547Z" fill="#E21E24" />
|
|
|
<path d="M28.6488 18.5557C27.419 18.5557 26.4222 19.5525 26.4222 20.7822V27.4619H23.4504C22.4338 28.813 20.8175 29.6885 19.0003 29.6885C17.1832 29.6885 15.5668 28.813 14.5503 27.4619H11.5785V20.7822C11.5785 19.5526 10.5816 18.5557 9.3519 18.5557C8.12217 18.5557 7.12534 19.5525 7.12534 20.7822V27.4619C7.12534 29.9213 9.11907 31.9151 11.5785 31.9151H13.805V36.8877C13.805 37.5025 14.3035 38.001 14.9183 38.001H23.0824C23.6972 38.001 24.1956 37.5025 24.1956 36.8877V31.9151H26.4222C28.8816 31.9151 30.8753 29.9213 30.8753 27.4619V20.7822C30.8753 19.5525 29.8785 18.5557 28.6488 18.5557ZM10.2711 16.4251C10.4132 16.3361 10.5447 16.2314 10.6633 16.1129L13.7979 12.9784V16.3291H24.2028V12.9783L27.3373 16.1129C27.4559 16.2313 27.5875 16.336 27.7296 16.425C28.0318 16.3613 28.3399 16.3291 28.6488 16.3291C29.0945 16.3291 29.5249 16.3958 29.9313 16.5182C30.1361 16.4127 30.3234 16.276 30.4862 16.1129C31.3558 15.2434 31.3558 13.8336 30.4862 12.964L25.9419 8.41971C25.2066 7.68521 24.2915 7.15659 23.2879 6.88672C22.266 8.12016 20.7234 8.90725 19.0003 8.90725C17.2773 8.90725 15.7346 8.12016 14.7128 6.88672C13.7092 7.15659 12.794 7.68521 12.0588 8.41971L7.51446 12.964C6.64492 13.8336 6.64492 15.2434 7.51446 16.1129C7.67733 16.276 7.86455 16.4127 8.0694 16.5182C8.48534 16.3928 8.91745 16.329 9.3519 16.3291C9.66696 16.3291 9.97437 16.3625 10.2711 16.4251Z" fill="url(#paint2_linear_2252_3481)" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_2252_3481" x1="15.6602" y1="3.33984" x2="22.3398" y2="3.33984" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_2252_3481" x1="15.6602" y1="24.1211" x2="22.3398" y2="24.1211" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint2_linear_2252_3481" x1="6.8623" y1="22.4439" x2="31.1384" y2="22.4439" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_2252_3481">
|
|
|
<rect width="38" height="38" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Персональные тренировки',
|
|
|
'description' => 'Высококвалифицированные специалисты в области фитнеса готовы предоставить свою помощь новичкам, а так же тем, кто хочет получить максимальный результат от тренировок.'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_4045_15053)">
|
|
|
<path d="M34.6602 22.4141H24.6406V32.4336C24.6406 34.2782 26.1359 35.7734 27.9805 35.7734H31.3203V36.8867C31.3203 37.5021 31.8182 38 32.4336 38C33.0489 38 33.5469 37.5021 33.5469 36.8867V35.7734H34.6602C36.5047 35.7734 38 34.2782 38 32.4336V25.7539C38 23.9093 36.5047 22.4141 34.6602 22.4141ZM2.22656 29.0938C0.996832 29.0938 0 30.0906 0 31.3203C0 32.5499 0.996832 33.5469 2.22656 33.5469H4.45312V36.8867C4.45312 37.5021 4.95106 38 5.56641 38C6.18175 38 6.67969 37.5021 6.67969 36.8867V33.5469H22.4141V29.0938H2.22656Z" fill="#E21E24" />
|
|
|
<path d="M5.56641 26.8672C7.41095 26.8672 8.90625 25.3719 8.90625 23.5273C8.90625 21.6828 7.41095 20.1875 5.56641 20.1875C3.72186 20.1875 2.22656 21.6828 2.22656 23.5273C2.22656 25.3719 3.72186 26.8672 5.56641 26.8672Z" fill="url(#paint0_linear_4045_15053)" />
|
|
|
<path d="M11.1325 22.4149C11.0934 22.4149 11.0608 22.4352 11.0222 22.4372C11.0927 22.7904 11.1325 23.1546 11.1325 23.5282C11.1338 24.6361 10.8026 25.7188 10.1816 26.6364C10.5095 26.7934 10.6889 26.8496 11.3552 26.8681L22.4138 26.8634V22.4149H11.1325ZM27.3279 7.48132C26.8996 7.053 26.3299 6.84096 25.534 6.83984C25.206 6.87141 24.8891 6.97583 24.6066 7.14549C24.3241 7.31515 24.0831 7.54577 23.9011 7.8205L19.7763 14.0077L15.8537 15.969C14.7503 16.5195 14.3041 17.8603 14.8567 18.9587C15.3937 20.0285 16.7668 20.4939 17.8432 19.9535L22.2984 17.7258C22.6437 17.5519 22.9381 17.2916 23.1531 16.9703L25.9319 12.8009C27.2724 14.8818 27.9802 17.3051 27.9802 19.8068V20.1884H32.4333V19.8068C32.4333 15.1503 30.6199 10.7733 27.3279 7.48132Z" fill="url(#paint1_linear_4045_15053)" />
|
|
|
<path d="M17.9609 3.41406C17.9609 1.5724 19.4591 0 21.3008 0C23.1424 0 24.6406 1.5724 24.6406 3.41406C24.6406 5.25573 23.1424 6.82812 21.3008 6.82812C19.4591 6.82812 17.9609 5.25573 17.9609 3.41406Z" fill="#2B2C35" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_15053" x1="2.22656" y1="23.5273" x2="8.90625" y2="23.5273" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_15053" x1="10.1816" y1="16.854" x2="32.4333" y2="16.854" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_4045_15053">
|
|
|
<rect width="38" height="38" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Массаж и SPA',
|
|
|
'description' => 'Прекрасная возможность расслабиться и поправить свое здоровье.'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M33.8044 37.0329H19.6624C21.1159 37.0217 22.4779 36.5631 23.2888 35.7521C23.3126 35.728 23.3394 35.7071 23.3687 35.69C23.3687 35.69 23.3734 35.69 23.3734 35.6856L23.3778 35.6813C23.5155 35.5526 24.0307 34.8423 24.2569 34.5314L30.0679 26.2116C31.5637 24.1294 31.1069 22.491 30.707 21.044C30.4803 20.2184 30.2583 19.4325 30.4138 18.6734C29.6084 18.6648 28.8248 18.4108 28.1675 17.9453C27.9498 18.4337 27.6083 18.7355 27.2352 18.9489L27.2261 18.9536C27.2966 18.9869 27.3579 19.0371 27.4044 19.0997C27.451 19.1622 27.4814 19.2353 27.493 19.3124C27.5104 19.4395 27.4767 19.5683 27.3992 19.6705C27.3217 19.7727 27.2068 19.8399 27.0797 19.8574C27.0478 19.8617 24.8351 20.1627 22.2322 20.3492V23.0196C23.9875 23.0373 26.103 23.0917 27.5841 23.239C27.711 23.2526 27.8273 23.3157 27.9078 23.4148C27.9883 23.5138 28.0264 23.6406 28.0138 23.7676C28.0012 23.8945 27.939 24.0114 27.8406 24.0927C27.7422 24.1739 27.6157 24.2131 27.4887 24.2015C26.1189 24.0655 24.1473 24.011 22.455 23.9907L22.4541 23.9925C21.8902 25.4132 21.3931 26.1723 21.0909 26.5454L21.8573 27.8024C21.8931 27.8566 21.9175 27.9175 21.9292 27.9813C21.941 28.0452 21.9397 28.1108 21.9255 28.1741C21.9113 28.2375 21.8845 28.2974 21.8467 28.3502C21.8089 28.403 21.7609 28.4476 21.7054 28.4814C21.65 28.5152 21.5883 28.5376 21.5241 28.547C21.4599 28.5565 21.3944 28.5529 21.3315 28.5366C21.2687 28.5202 21.2098 28.4913 21.1584 28.4517C21.1069 28.4121 21.064 28.3625 21.0321 28.3059L20.08 26.7462L20.0744 26.7406C20.07 26.7315 20.0653 26.7272 20.061 26.7185L18.2629 23.9173L17.8112 23.8755L12.518 23.3845C12.9174 25.1558 13.5215 26.9759 13.8674 28.0015L13.9693 28.3167C14.0804 28.6474 14.1388 28.9934 14.1425 29.3423L14.1913 32.1124C14.231 34.3544 15.7588 36.2945 17.9071 36.8274C18.443 36.9634 18.9953 37.0286 19.5363 37.0338H7.68684C7.56222 37.039 7.44445 37.0923 7.35814 37.1823C7.27182 37.2723 7.22363 37.3922 7.22363 37.517C7.22363 37.6417 7.27182 37.7616 7.35814 37.8517C7.44445 37.9417 7.56222 37.9949 7.68684 38.0002H33.804C33.9322 38.0002 34.0553 37.9493 34.146 37.8587C34.2368 37.768 34.2878 37.645 34.2878 37.5168C34.2879 37.3885 34.237 37.2655 34.1463 37.1747C34.0557 37.084 33.9327 37.033 33.8044 37.0329Z" fill="url(#paint0_linear_4045_16661)" />
|
|
|
<path d="M18.6239 22.9783L19.0756 23.0193L19.2591 23.0184C19.6037 23.015 20.3374 23.0094 21.2645 23.0124V20.4133C21.1341 20.4206 21.0054 20.4271 20.8776 20.4318C20.1297 20.4714 19.381 20.4921 18.6321 20.494H18.6235L17.7918 20.4789L6.17421 20.2764H6.16514L5.89612 20.2634L5.70439 20.2557C5.664 20.2548 5.62359 20.2569 5.58348 20.2617C5.56923 20.263 5.55498 20.2634 5.54116 20.2656C5.50535 20.2714 5.47 20.2798 5.43537 20.2906C5.42285 20.2945 5.40989 20.2967 5.3978 20.301C5.36456 20.3131 5.33211 20.3272 5.30064 20.3433C5.28898 20.3494 5.27646 20.3537 5.26523 20.3602C5.23501 20.377 5.20737 20.3969 5.17973 20.4172C5.16851 20.4254 5.15642 20.4323 5.14605 20.4409C5.12026 20.463 5.09589 20.4866 5.07308 20.5117C5.06358 20.5217 5.05321 20.5303 5.04414 20.5411C5.02144 20.5687 5.00066 20.5979 4.98196 20.6283C4.97548 20.6383 4.96771 20.6473 4.96167 20.6577C4.93995 20.6959 4.92146 20.736 4.90639 20.7773C4.90467 20.7812 4.90251 20.7846 4.90121 20.7885C4.88101 20.8461 4.86768 20.9058 4.86149 20.9664C4.85933 20.9975 4.86278 21.0269 4.86451 21.0571C4.8658 21.086 4.86796 21.115 4.87228 21.143C4.87573 21.1638 4.88135 21.1841 4.88653 21.2044C4.89258 21.229 4.89862 21.2532 4.90726 21.2765C4.91589 21.2994 4.92669 21.3214 4.93705 21.3434C4.94655 21.3628 4.95519 21.3827 4.96598 21.4013C4.97764 21.4211 4.99189 21.4388 5.00528 21.4574C5.01996 21.4773 5.03378 21.498 5.05062 21.5161C5.06444 21.5317 5.07998 21.5451 5.09467 21.5589C5.11194 21.5753 5.12878 21.5926 5.14735 21.6073C5.21817 21.6625 5.29935 21.7057 5.38916 21.7329L5.39478 21.7351C5.44185 21.7489 5.49064 21.7584 5.5416 21.7631L18.6239 22.9783ZM35.3996 13.021H35.3819C35.2896 13.0212 35.2008 13.0568 35.1339 13.1204C35.067 13.184 35.027 13.2708 35.0222 13.363L34.9557 14.4905C34.9525 14.5378 34.9588 14.5852 34.9741 14.6301C34.9894 14.6749 35.0134 14.7163 35.0448 14.7518C35.0762 14.7873 35.1144 14.8162 35.157 14.8369C35.1997 14.8576 35.246 14.8696 35.2933 14.8722C35.3891 14.8766 35.4827 14.8432 35.5541 14.7792C35.6255 14.7153 35.6689 14.6259 35.6751 14.5302L35.7416 13.4027C35.7442 13.355 35.7373 13.3073 35.7213 13.2623C35.7053 13.2173 35.6805 13.1759 35.6483 13.1406C35.5838 13.0703 35.4948 13.0275 35.3996 13.021ZM4.9798 10.2155C5.03767 10.3355 5.09078 10.4599 5.14864 10.5929L7.65275 9.34538C7.47527 9.07463 7.31075 8.81252 7.16005 8.57286C7.11125 8.49297 7.05814 8.41309 7.00934 8.33752C6.97825 8.27966 6.94241 8.22654 6.907 8.17343C6.78544 7.98211 6.66568 7.78966 6.54773 7.59609C6.4143 7.37414 6.29468 7.18759 6.20141 7.03214C6.17024 6.97665 6.1377 6.92193 6.10382 6.86805C6.04613 6.77795 5.99126 6.68607 5.9393 6.59255C5.89646 6.52119 5.87199 6.44034 5.86805 6.35721L5.7791 1.76268C5.77104 1.37845 5.6484 1.00539 5.4269 0.691328C5.2054 0.37727 4.89513 0.136537 4.53589 0L2.32974 6.19743C2.2291 6.47342 2.23573 6.77713 2.34832 7.04845C2.46092 7.31978 2.67127 7.53895 2.93774 7.66259L3.1286 7.75154C3.1774 7.77357 3.24865 7.80941 3.34624 7.87591C3.38165 7.90268 3.42181 7.93377 3.46585 7.96918C3.47924 7.97825 3.49263 7.98688 3.50126 8.00027C3.53667 8.02704 3.57251 8.05813 3.60792 8.09354C3.60792 8.09786 3.61224 8.09786 3.61224 8.09786C3.68349 8.16868 3.76337 8.24856 3.84758 8.34659C3.8519 8.35091 3.85665 8.35997 3.86097 8.36429C3.90544 8.41741 3.94992 8.47095 3.99871 8.53313C4.02074 8.56422 4.04319 8.59531 4.06996 8.6264L4.14553 8.72831C4.19433 8.79956 4.24312 8.8747 4.29624 8.95459C4.32301 8.99431 4.34935 9.03879 4.37612 9.07895L4.45601 9.21195C4.48235 9.25642 4.50912 9.30522 4.54021 9.35402C4.59808 9.45161 4.65119 9.55395 4.70905 9.66017C4.76217 9.76683 4.82003 9.88213 4.88221 10.0022C4.9133 10.0691 4.94871 10.1399 4.9798 10.2155ZM31.5905 14.5172C31.5149 14.6684 31.4929 14.8459 31.5283 15.0143L32.0923 17.2606C32.4075 17.0709 32.6858 16.8257 32.9136 16.5369C32.9404 16.5014 32.9667 16.4704 32.9892 16.4345C33.0738 16.3235 33.1446 16.2035 33.2111 16.0839L33.611 15.3114C33.611 15.307 33.611 15.307 33.6153 15.3023L33.6952 15.1335C33.744 15.0225 33.7885 14.9072 33.8239 14.7915C33.9526 14.1342 33.9616 14.0103 33.9616 13.8859C33.9616 13.7395 33.9526 13.5975 33.9305 13.4597C33.9257 13.4164 33.9183 13.3735 33.9085 13.331C33.9027 13.2798 33.8923 13.2293 33.8774 13.1799C33.8635 13.1012 33.8427 13.0239 33.8152 12.9489C33.7844 12.8511 33.7488 12.7548 33.7086 12.6604C33.7086 12.6561 33.7086 12.6518 33.7043 12.647C33.6645 12.5581 33.6201 12.4739 33.5756 12.3897C33.5267 12.3013 33.4734 12.2154 33.4158 12.1323C33.4111 12.1237 33.4067 12.1146 33.3981 12.1056C33.3484 12.0308 33.2934 11.9597 33.2336 11.8927C33.1775 11.8219 33.1166 11.7551 33.0514 11.6927C33.0423 11.6841 33.0336 11.675 33.0203 11.666C32.8805 11.5265 32.7257 11.4029 32.5586 11.2976C32.4746 11.2406 32.3872 11.1887 32.297 11.1422C32.2922 11.1422 32.2922 11.1422 32.2879 11.1379C31.7557 10.8646 31.156 10.7505 30.5606 10.8092C30.5075 10.8136 30.454 10.8183 30.4052 10.8269C30.3296 10.836 30.2545 10.8537 30.1789 10.8714C30.1742 10.8714 30.1698 10.8714 30.1655 10.8757C30.0918 10.8902 30.0191 10.9096 29.9479 10.9336C29.8997 10.9473 29.8522 10.9635 29.8058 10.9824C29.7584 10.9955 29.7124 11.0133 29.6685 11.0355C29.6154 11.0575 29.5618 11.08 29.5087 11.1068C29.4556 11.1335 29.4025 11.1599 29.349 11.191C29.2647 11.2398 29.1801 11.2886 29.1002 11.3464L30.8759 12.2653C31.2684 12.47 31.5639 12.8218 31.6978 13.2438C31.8318 13.6658 31.7932 14.1236 31.5905 14.5172ZM6.08094 13.2343C6.73384 15.4543 8.09234 17.4964 10.121 19.3078L15.3464 19.3834L14.4185 17.9407C14.3472 17.8245 14.2588 17.7197 14.1563 17.6298C12.1674 15.8762 9.85026 12.6617 8.18518 10.1533L5.50791 11.4941C5.71963 12.0671 5.91076 12.6476 6.08094 13.2343Z" fill="url(#paint1_linear_4045_16661)" />
|
|
|
<path d="M31.0706 17.6519C31.1108 17.6476 31.1462 17.6385 31.1864 17.6299L30.5913 15.2458C30.5913 15.2415 30.587 15.2415 30.587 15.2372C30.4974 14.8447 30.5477 14.4333 30.7291 14.0739C30.8147 13.9083 30.8314 13.7156 30.7757 13.5377C30.72 13.3598 30.5963 13.2111 30.4315 13.1239L28.3713 12.0586C28.2808 12.1885 28.1978 12.3234 28.1226 12.4628L27.7189 13.2439C27.4339 13.8094 27.3309 14.4492 27.4239 15.0756C27.5169 15.7019 27.8014 16.2842 28.2383 16.7425L31.0706 17.6519Z" fill="url(#paint2_linear_4045_16661)" />
|
|
|
<path d="M5.14864 10.5929C5.09078 10.4599 5.03767 10.3355 4.9798 10.2155C4.94871 10.1399 4.9133 10.0691 4.88221 10.0022C4.82003 9.88213 4.76217 9.76683 4.70905 9.66017C4.65119 9.55395 4.59808 9.45161 4.54021 9.35402C4.50912 9.30522 4.48235 9.25642 4.45601 9.21195L4.37612 9.07895C4.34935 9.03879 4.32301 8.99431 4.29624 8.95459C4.24312 8.8747 4.19433 8.79956 4.14553 8.72831L4.06996 8.6264C4.04319 8.59531 4.02074 8.56422 3.99871 8.53313C3.94992 8.47095 3.90544 8.41741 3.86097 8.36429C3.85665 8.35997 3.8519 8.35091 3.84758 8.34659C3.76337 8.24856 3.68349 8.16868 3.61224 8.09786C3.61224 8.09786 3.60792 8.09786 3.60792 8.09354C3.57251 8.05813 3.53667 8.02704 3.50126 8.00027C3.49307 7.98757 3.4806 7.97915 3.46792 7.97058L3.46585 7.96918C3.42181 7.93377 3.38165 7.90268 3.34624 7.87591C3.24865 7.80941 3.1774 7.77357 3.1286 7.75154L2.93774 7.66259C2.67127 7.53895 2.46092 7.31978 2.34832 7.04845C2.23573 6.77713 2.2291 6.47342 2.32974 6.19743L4.53589 0C4.89513 0.136537 5.2054 0.37727 5.4269 0.691328C5.6484 1.00539 5.77104 1.37845 5.7791 1.76268L5.86805 6.35721C5.87199 6.44034 5.89646 6.52119 5.9393 6.59255C5.99126 6.68607 6.04613 6.77795 6.10382 6.86805C6.1377 6.92193 6.17024 6.97665 6.20141 7.03214C6.29468 7.18759 6.4143 7.37414 6.54773 7.59609C6.66568 7.78966 6.78544 7.98211 6.907 8.17343L6.91248 8.18165C6.94609 8.23203 6.97985 8.28264 7.00934 8.33752C7.05814 8.41309 7.11125 8.49297 7.16005 8.57286L7.17746 8.60055C7.3234 8.83265 7.48208 9.08502 7.65275 9.34538L5.14864 10.5929Z" fill="url(#paint3_linear_4045_16661)" />
|
|
|
<path d="M19.6624 37.0312H33.8044C33.9327 37.0313 34.0557 37.0823 34.1463 37.1731C34.237 37.2638 34.2879 37.3868 34.2878 37.5151C34.2878 37.6434 34.2368 37.7664 34.146 37.857C34.0553 37.9477 33.9322 37.9986 33.804 37.9985H7.68684C7.56222 37.9932 7.44445 37.94 7.35814 37.85C7.27182 37.76 7.22363 37.64 7.22363 37.5153C7.22363 37.3906 7.27182 37.2707 7.35814 37.1806C7.44445 37.0906 7.56222 37.0374 7.68684 37.0321H19.5363L19.6624 37.0312Z" fill="url(#paint4_linear_4045_16661)" />
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16661" x1="7.22363" y1="27.9727" x2="34.2878" y2="27.9727" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_16661" x1="2.25879" y1="11.5096" x2="35.7421" y2="11.5096" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint2_linear_4045_16661" x1="27.3906" y1="14.8553" x2="31.1864" y2="14.8553" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint3_linear_4045_16661" x1="2.25879" y1="5.29645" x2="7.65275" y2="5.29645" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.394231" stop-color="#E21E24" />
|
|
|
<stop offset="0.929023" stop-color="#FF2F35" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint4_linear_4045_16661" x1="7.22363" y1="37.5149" x2="34.2878" y2="37.5149" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.394231" stop-color="#E21E24" />
|
|
|
<stop offset="0.929023" stop-color="#FF2F35" />
|
|
|
</linearGradient>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Мастер-классы',
|
|
|
'description' => 'Мы регулярно приглашаем знаменитостей в нашей фитнес-центр. Мастер-классы проходят как бесплатно, так и за символическую стоимость.'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M33.1016 0H13.0625C11.2209 0 9.72266 1.49825 9.72266 3.33984H31.9883C32.6031 3.33984 33.1016 3.8383 33.1016 4.45312V33.5469C33.1016 34.1617 32.6031 34.6602 31.9883 34.6602H9.72266C9.72266 36.5017 11.2209 38 13.0625 38H33.1016C34.9432 38 36.4414 36.5017 36.4414 34.6602V3.33984C36.4414 1.49825 34.9432 0 33.1016 0Z" fill="#E21E24" />
|
|
|
<path d="M23.4531 5.56641H26.0508V32.4336H23.4531V5.56641ZM28.2773 5.56641H30.875V32.4336H28.2773V5.56641ZM18.0298 32.4336H21.2266V5.56641H18.0298C18.4228 6.24259 18.6295 7.01087 18.6289 7.79297V30.207C18.6295 30.9891 18.4228 31.7574 18.0298 32.4336ZM16.4023 30.207V7.79297C16.4023 6.56324 15.4055 5.56641 14.1758 5.56641H3.78516C2.55543 5.56641 1.55859 6.56324 1.55859 7.79297V30.207C1.55859 31.4368 2.55543 32.4336 3.78516 32.4336H14.1758C15.4055 32.4336 16.4023 31.4368 16.4023 30.207ZM7.125 21.2266C7.125 21.8414 6.62655 22.3398 6.01172 22.3398C5.39689 22.3398 4.89844 21.8414 4.89844 21.2266V16.7734C4.89844 16.1586 5.39689 15.6602 6.01172 15.6602C6.62655 15.6602 7.125 16.1586 7.125 16.7734V21.2266Z" fill="url(#paint0_linear_4045_15619)" />
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_15619" x1="1.55859" y1="19" x2="30.875" y2="19" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Солярии',
|
|
|
'description' => 'Вместе с красивым цветом кожи вы получите хорошую порцию эндорфинов и витамина D. Так же, у нас большой выбор косметики для загара.'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<path d="M24.9935 21.6691C25.1016 21.5731 25.1881 21.4553 25.2472 21.3234C25.3064 21.1915 25.3369 21.0486 25.3366 20.9041V20.1925H13.001V20.9041C13.001 21.0488 13.0318 21.192 13.0915 21.3239C13.1511 21.4558 13.2382 21.5735 13.347 21.6691L13.721 22.0009C13.7552 22.0286 13.7794 22.0666 13.79 22.1092C13.8007 22.1518 13.7972 22.1967 13.7801 22.2372C13.7657 22.2806 13.7376 22.3183 13.7002 22.3446C13.6627 22.371 13.6178 22.3846 13.572 22.3834C13.5098 22.3836 13.4495 22.4044 13.4004 22.4425C13.2757 22.5374 13.1747 22.66 13.1054 22.8005C13.0361 22.9411 13.0004 23.0958 13.001 23.2525V26.6556C13.0012 26.8047 13.034 26.952 13.0972 27.0871C13.1603 27.2222 13.2523 27.3418 13.3667 27.4375L13.4848 27.5387C13.5367 27.5802 13.5786 27.6329 13.6073 27.6928C13.636 27.7526 13.6509 27.8183 13.6507 27.8847C13.651 27.9522 13.6359 28.0189 13.6067 28.0798C13.5775 28.1407 13.5348 28.1942 13.482 28.2362L13.3695 28.3319C13.2531 28.4285 13.1598 28.5498 13.096 28.687C13.0323 28.8242 12.9999 28.9738 13.001 29.125V34.2494C12.9998 34.7761 13.1512 35.2919 13.437 35.7344C13.6876 36.1233 14.032 36.443 14.4384 36.6641C14.8448 36.8852 15.3002 37.0007 15.7629 37H22.5776C22.9402 37.0011 23.2995 36.9305 23.6348 36.7922C23.97 36.654 24.2746 36.4508 24.531 36.1944C24.7874 35.9379 24.9906 35.6333 25.1289 35.2981C25.2672 34.9628 25.3378 34.6036 25.3366 34.2409V29.125C25.338 28.9759 25.3062 28.8284 25.2434 28.6931C25.1807 28.5579 25.0886 28.4383 24.9738 28.3431L24.8557 28.2419C24.8044 28.1994 24.7631 28.1461 24.7348 28.0858C24.7064 28.0255 24.6917 27.9597 24.6917 27.8931C24.6917 27.8265 24.7064 27.7607 24.7348 27.7004C24.7631 27.6401 24.8044 27.5869 24.8557 27.5444L24.9682 27.4487C25.0834 27.3531 25.1759 27.2331 25.2391 27.0975C25.3023 26.9618 25.3347 26.8137 25.3338 26.6641V23.2525C25.3351 23.0953 25.2997 22.9399 25.2304 22.7988C25.1611 22.6577 25.0597 22.5347 24.9345 22.4397C24.885 22.4026 24.8247 22.3828 24.7629 22.3834C24.7335 22.3834 24.7044 22.3776 24.6772 22.3663C24.6501 22.3549 24.6255 22.3383 24.6048 22.3174C24.5841 22.2964 24.5678 22.2716 24.5568 22.2443C24.5458 22.2171 24.5403 22.1879 24.5407 22.1584C24.5417 22.1277 24.5492 22.0974 24.5628 22.0698C24.5764 22.0421 24.5957 22.0177 24.6195 21.9981L24.9935 21.6691ZM25.3366 10.4613V12.0869H13.001V10.495C12.9997 10.4838 12.9997 10.4725 13.001 10.4613C13.406 7.24658 16.0948 5.90502 16.8373 5.58721V5.07533H21.5004V5.58721C22.2626 5.90502 24.9288 7.24658 25.3366 10.4613ZM22.2626 1.63284V3.88283C22.263 3.96557 22.247 4.04756 22.2157 4.12414C22.1844 4.20072 22.1383 4.27038 22.0801 4.32914C22.0218 4.3879 21.9526 4.43461 21.8763 4.46662C21.8 4.49862 21.7181 4.51528 21.6354 4.51565H16.7107C16.627 4.5164 16.544 4.50047 16.4666 4.46879C16.3891 4.43711 16.3188 4.39032 16.2596 4.33115C16.2004 4.27198 16.1536 4.20161 16.122 4.12415C16.0903 4.04669 16.0743 3.9637 16.0751 3.88002V1.63002C16.0751 1.54682 16.0916 1.46443 16.1236 1.38763C16.1556 1.31082 16.2025 1.24112 16.2616 1.18255C16.3207 1.12397 16.3908 1.07768 16.4679 1.04636C16.545 1.01503 16.6275 0.999282 16.7107 1.00003H21.6298C21.713 0.999653 21.7954 1.01577 21.8724 1.04744C21.9493 1.07911 22.0192 1.12571 22.0781 1.18454C22.1369 1.24338 22.1835 1.31329 22.2152 1.39023C22.2468 1.46717 22.263 1.54963 22.2626 1.63284ZM18.1676 16.7753C18.1604 16.9115 18.181 17.0476 18.2281 17.1756C18.2752 17.3035 18.3479 17.4205 18.4417 17.5194C18.5355 17.6183 18.6485 17.6971 18.7738 17.7509C18.899 17.8047 19.0339 17.8325 19.1702 17.8325C19.3066 17.8325 19.4415 17.8047 19.5667 17.7509C19.692 17.6971 19.805 17.6183 19.8988 17.5194C19.9926 17.4205 20.0653 17.3035 20.1124 17.1756C20.1595 17.0476 20.1801 16.9115 20.1729 16.7753C20.1729 16.3928 19.6273 15.4675 19.1717 14.8066C18.716 15.4675 18.1676 16.3928 18.1676 16.7753Z" fill="url(#paint0_linear_4045_16267)" />
|
|
|
<path d="M13.043 12.6476V19.631H25.2942V12.6476C22.0345 12.6279 16.3027 12.6279 13.043 12.6476ZM19.1686 18.3429C18.7533 18.3421 18.3553 18.1769 18.0617 17.8832C17.7681 17.5896 17.6028 17.1916 17.602 16.7763C17.602 16.0141 18.727 14.4504 18.9408 14.1466C18.967 14.1108 19.0012 14.0817 19.0408 14.0616C19.0804 14.0416 19.1242 14.0312 19.1686 14.0313C19.2125 14.0317 19.2557 14.0423 19.2948 14.0623C19.3338 14.0823 19.3677 14.1112 19.3936 14.1466C19.6186 14.4504 20.7323 16.0141 20.7323 16.7763C20.7316 17.1911 20.5667 17.5887 20.2737 17.8822C19.9807 18.1758 19.5833 18.3414 19.1686 18.3429Z" fill="url(#paint1_linear_4045_16267)" />
|
|
|
<path d="M18.2215 27.2177L17.8273 27.6123C17.6331 27.8032 17.4249 27.9795 17.2046 28.1396L17.2932 28.2286C17.3168 28.2506 17.3357 28.277 17.3488 28.3065C17.362 28.3359 17.369 28.3677 17.3696 28.3999C17.3701 28.4322 17.3642 28.4642 17.3521 28.4941C17.3401 28.5239 17.3221 28.5511 17.2993 28.5739C17.2765 28.5967 17.2494 28.6146 17.2195 28.6267C17.1896 28.6388 17.1576 28.6447 17.1254 28.6441C17.0932 28.6436 17.0614 28.6365 17.0319 28.6234C17.0025 28.6103 16.976 28.5914 16.954 28.5678L16.8408 28.4548C16.8267 28.4407 16.819 28.4238 16.8094 28.4075C16.5438 28.5707 16.268 28.7163 15.9774 28.8324L15.2728 29.1147C15.1774 29.1529 15.0986 29.2237 15.0505 29.3145C15.0024 29.4053 14.9881 29.5103 15.0101 29.6106L15.1781 30.377C15.2142 30.5425 15.3435 30.6718 15.5092 30.7082L16.363 30.8954C16.5288 30.9319 16.658 31.0612 16.6942 31.227L16.8808 32.0794C16.9169 32.2452 17.0462 32.3745 17.212 32.4109L18.0657 32.5981C18.2315 32.6343 18.3607 32.7639 18.3969 32.9293L18.5844 33.7834C18.6206 33.9488 18.7499 34.0781 18.9156 34.1146L19.77 34.3021C19.9354 34.3386 20.0647 34.4676 20.1012 34.633L20.29 35.4896C20.3262 35.6547 20.4554 35.784 20.6206 35.8202L21.3886 35.9898C21.4891 36.0119 21.5942 35.9976 21.6852 35.9494C21.7761 35.9013 21.847 35.8223 21.8852 35.7267L22.1674 35.0224C22.2839 34.7319 22.4295 34.456 22.5924 34.1904C22.5764 34.1808 22.5591 34.1728 22.545 34.1591L22.4317 34.0458C22.4088 34.0237 22.3906 33.9972 22.378 33.9679C22.3654 33.9386 22.3588 33.9071 22.3586 33.8752C22.3583 33.8434 22.3644 33.8118 22.3765 33.7823C22.3886 33.7528 22.4064 33.726 22.4289 33.7035C22.4515 33.6809 22.4783 33.6631 22.5078 33.6511C22.5373 33.639 22.5689 33.633 22.6007 33.6333C22.6326 33.6336 22.6641 33.6402 22.6934 33.6528C22.7227 33.6654 22.7491 33.6837 22.7713 33.7066L22.8602 33.7952C23.0204 33.5749 23.1966 33.3668 23.3876 33.1725L26.9568 29.603L18.2215 27.2177ZM18.2459 29.5207C18.2009 29.5657 18.1399 29.5909 18.0763 29.5909C18.0127 29.5909 17.9517 29.5657 17.9067 29.5207L17.6683 29.2823C17.6447 29.2604 17.6258 29.2339 17.6127 29.2044C17.5995 29.175 17.5925 29.1432 17.5919 29.111C17.5914 29.0788 17.5973 29.0467 17.6093 29.0169C17.6214 28.987 17.6394 28.9598 17.6622 28.937C17.685 28.9143 17.7121 28.8963 17.742 28.8842C17.7719 28.8721 17.8039 28.8662 17.8361 28.8668C17.8683 28.8674 17.9001 28.8744 17.9296 28.8875C17.959 28.9006 17.9855 28.9196 18.0075 28.9431L18.2459 29.1812C18.2908 29.2262 18.316 29.2872 18.316 29.3508C18.316 29.4144 18.2908 29.4757 18.2459 29.5207ZM19.1985 30.4734C19.1535 30.5183 19.0925 30.5435 19.0289 30.5435C18.9653 30.5435 18.9043 30.5183 18.8593 30.4734L18.6212 30.2353C18.5976 30.2133 18.5787 30.1868 18.5656 30.1574C18.5525 30.1279 18.5454 30.0962 18.5449 30.0639C18.5443 30.0317 18.5502 29.9997 18.5623 29.9698C18.5744 29.9399 18.5923 29.9128 18.6151 29.89C18.6379 29.8672 18.6651 29.8492 18.6949 29.8372C18.7248 29.8251 18.7568 29.8192 18.7891 29.8197C18.8213 29.8203 18.8531 29.8274 18.8825 29.8405C18.9119 29.8536 18.9384 29.8725 18.9604 29.8961L19.1985 30.1342C19.2434 30.1792 19.2687 30.2402 19.2687 30.3038C19.2687 30.3674 19.2434 30.4284 19.1985 30.4734ZM20.1514 31.4263C20.1064 31.4713 20.0454 31.4965 19.9818 31.4965C19.9182 31.4965 19.8572 31.4713 19.8122 31.4263L19.5738 31.1879C19.5509 31.1658 19.5326 31.1393 19.52 31.11C19.5074 31.0808 19.5008 31.0493 19.5005 31.0174C19.5002 30.9855 19.5063 30.9539 19.5183 30.9244C19.5304 30.8949 19.5482 30.8681 19.5707 30.8456C19.5932 30.823 19.62 30.8052 19.6495 30.7931C19.679 30.781 19.7106 30.775 19.7425 30.7752C19.7743 30.7755 19.8058 30.7821 19.8351 30.7946C19.8644 30.8072 19.8909 30.8255 19.913 30.8484L20.1514 31.0868C20.1964 31.1318 20.2216 31.1928 20.2216 31.2564C20.2216 31.32 20.1964 31.3813 20.1514 31.4263ZM21.1041 32.3786C21.0591 32.4236 20.9981 32.4488 20.9345 32.4488C20.8709 32.4488 20.8099 32.4236 20.7649 32.3786L20.5265 32.1405C20.5029 32.1186 20.484 32.0921 20.4709 32.0626C20.4578 32.0332 20.4507 32.0014 20.4501 31.9692C20.4496 31.937 20.4555 31.905 20.4676 31.8751C20.4796 31.8452 20.4976 31.818 20.5204 31.7953C20.5432 31.7725 20.5703 31.7545 20.6002 31.7424C20.6301 31.7304 20.6621 31.7244 20.6943 31.725C20.7265 31.7256 20.7583 31.7326 20.7878 31.7457C20.8172 31.7589 20.8437 31.7778 20.8657 31.8013L21.1041 32.0394C21.149 32.0844 21.1743 32.1454 21.1743 32.209C21.1743 32.2726 21.149 32.3336 21.1041 32.3786ZM22.057 33.3316C22.0347 33.3539 22.0083 33.3716 21.9791 33.3836C21.95 33.3957 21.9188 33.4019 21.8873 33.4019C21.8557 33.4019 21.8245 33.3957 21.7954 33.3836C21.7663 33.3716 21.7398 33.3539 21.7175 33.3316L21.4791 33.0935C21.4555 33.0715 21.4366 33.045 21.4235 33.0156C21.4104 32.9861 21.4033 32.9544 21.4028 32.9221C21.4022 32.8899 21.4081 32.8579 21.4202 32.828C21.4323 32.7981 21.4502 32.771 21.473 32.7482C21.4958 32.7254 21.523 32.7074 21.5528 32.6954C21.5827 32.6833 21.6147 32.6774 21.647 32.6779C21.6792 32.6785 21.711 32.6856 21.7404 32.6987C21.7698 32.7118 21.7963 32.7307 21.8183 32.7543L22.057 32.9921C22.102 33.0371 22.1272 33.0981 22.1272 33.1617C22.1272 33.2253 22.102 33.2866 22.057 33.3316ZM18.6126 26.827L27.3479 29.2126L31.3869 25.1729L22.6519 22.7874L18.6126 26.827ZM34.9894 22.3886L34.8201 21.6206C34.8023 21.5397 34.7617 21.4655 34.7032 21.4069C34.6446 21.3483 34.5705 21.3076 34.4895 21.2898L33.6329 21.101C33.5519 21.0831 33.4778 21.0425 33.4191 20.9839C33.3605 20.9252 33.3199 20.8511 33.302 20.7701L33.1145 19.9157C33.0967 19.8346 33.0561 19.7603 32.9974 19.7016C32.9387 19.6429 32.8644 19.6023 32.7833 19.5845L31.9289 19.397C31.8479 19.3792 31.7737 19.3385 31.715 19.2798C31.6564 19.2211 31.6158 19.1468 31.598 19.0658L31.4109 18.212C31.393 18.1309 31.3523 18.0566 31.2936 17.9979C31.2348 17.9392 31.1605 17.8986 31.0793 17.8808L30.2269 17.6943C30.1457 17.6766 30.0714 17.6359 30.0126 17.5772C29.9538 17.5185 29.9131 17.4442 29.8953 17.3631L29.7081 16.5093C29.6904 16.4283 29.6497 16.354 29.591 16.2953C29.5323 16.2366 29.458 16.1959 29.377 16.1781L28.6109 16.0101C28.5105 15.9881 28.4055 16.0023 28.3146 16.0503C28.2237 16.0984 28.1528 16.1771 28.1146 16.2725L27.8323 16.9775C27.7145 17.2664 27.5723 17.5447 27.4074 17.8095C27.4234 17.8191 27.4403 17.8268 27.4544 17.8408L27.5677 17.9538C27.5913 17.9758 27.6102 18.0023 27.6233 18.0317C27.6364 18.0612 27.6435 18.0929 27.644 18.1252C27.6446 18.1574 27.6387 18.1894 27.6266 18.2193C27.6145 18.2492 27.5966 18.2763 27.5738 18.2991C27.551 18.3219 27.5238 18.3398 27.494 18.3519C27.4641 18.364 27.4321 18.3699 27.3998 18.3693C27.3676 18.3688 27.3358 18.3617 27.3064 18.3486C27.277 18.3355 27.2505 18.3166 27.2285 18.293L27.1399 18.2044C26.9795 18.4248 26.803 18.6331 26.6119 18.8274L23.0429 22.3966L31.7779 24.7825L32.1724 24.388C32.3668 24.197 32.575 24.0208 32.7955 23.8606L32.7065 23.7717C32.6829 23.7497 32.664 23.7232 32.6509 23.6938C32.6378 23.6643 32.6307 23.6325 32.6302 23.6003C32.6296 23.5681 32.6355 23.5361 32.6476 23.5062C32.6597 23.4763 32.6776 23.4492 32.7004 23.4264C32.7232 23.4036 32.7504 23.3856 32.7802 23.3736C32.8101 23.3615 32.8421 23.3556 32.8744 23.3561C32.9066 23.3567 32.9384 23.3637 32.9678 23.3769C32.9972 23.39 33.0237 23.4089 33.0457 23.4325L33.159 23.5454C33.1731 23.5592 33.1808 23.5765 33.1904 23.5928C33.456 23.4296 33.7318 23.284 34.0223 23.1678L34.7267 22.8856C34.9241 22.8069 35.0351 22.5963 34.9894 22.3886ZM28.5203 19.2463C28.4753 19.2912 28.4143 19.3165 28.3507 19.3165C28.2871 19.3165 28.2261 19.2912 28.1811 19.2463L27.943 19.0079C27.9195 18.9859 27.9006 18.9594 27.8874 18.93C27.8743 18.9005 27.8673 18.8687 27.8667 18.8365C27.8661 18.8043 27.8721 18.7723 27.8841 18.7424C27.8962 18.7125 27.9142 18.6854 27.937 18.6626C27.9597 18.6398 27.9869 18.6218 28.0168 18.6098C28.0467 18.5977 28.0787 18.5918 28.1109 18.5923C28.1431 18.5929 28.1749 18.6 28.2043 18.6131C28.2338 18.6262 28.2603 18.6451 28.2822 18.6687L28.5203 18.9068C28.5653 18.9518 28.5905 19.0128 28.5905 19.0764C28.5905 19.14 28.5653 19.201 28.5203 19.246V19.2463ZM29.4733 20.1989C29.4283 20.2438 29.3673 20.2691 29.3037 20.2691C29.2401 20.2691 29.1791 20.2438 29.1341 20.1989L28.8957 19.9608C28.8721 19.9389 28.8532 19.9124 28.8401 19.8829C28.827 19.8535 28.8199 19.8217 28.8193 19.7895C28.8188 19.7572 28.8247 19.7252 28.8368 19.6954C28.8488 19.6655 28.8668 19.6383 28.8896 19.6155C28.9124 19.5927 28.9395 19.5748 28.9694 19.5627C28.9993 19.5506 29.0313 19.5447 29.0635 19.5453C29.0957 19.5458 29.1275 19.5529 29.157 19.566C29.1864 19.5791 29.2129 19.598 29.2349 19.6216L29.4733 19.8594C29.5182 19.9044 29.5435 19.9654 29.5435 20.029C29.5435 20.0926 29.5182 20.1539 29.4733 20.1989ZM30.4256 21.1515C30.3806 21.1965 30.3196 21.2217 30.256 21.2217C30.1924 21.2217 30.1314 21.1965 30.0864 21.1515L29.8483 20.9131C29.8046 20.8679 29.7804 20.8072 29.781 20.7443C29.7816 20.6814 29.8069 20.6212 29.8514 20.5767C29.8959 20.5322 29.9561 20.507 30.019 20.5065C30.082 20.506 30.1426 20.5302 30.1878 20.5739L30.4259 20.8123C30.4708 20.8573 30.4961 20.9183 30.4961 20.9819C30.4961 21.0455 30.4705 21.1065 30.4256 21.1515ZM31.3785 22.1042C31.3335 22.1491 31.2725 22.1744 31.2089 22.1744C31.1453 22.1744 31.0843 22.1491 31.0393 22.1042L30.8009 21.8661C30.7774 21.8441 30.7584 21.8176 30.7453 21.7882C30.7322 21.7587 30.7252 21.727 30.7246 21.6947C30.724 21.6625 30.7299 21.6305 30.742 21.6006C30.7541 21.5707 30.7721 21.5436 30.7948 21.5208C30.8176 21.498 30.8448 21.48 30.8747 21.468C30.9045 21.4559 30.9366 21.45 30.9688 21.4505C31.001 21.4511 31.0328 21.4582 31.0622 21.4713C31.0917 21.4844 31.1182 21.5033 31.1401 21.5269L31.3785 21.7646C31.4235 21.8096 31.4487 21.8706 31.4487 21.9342C31.4487 21.9978 31.4235 22.0592 31.3785 22.1042ZM32.3312 23.0568C32.2862 23.1017 32.2252 23.127 32.1616 23.127C32.098 23.127 32.037 23.1017 31.992 23.0568L31.7539 22.8187C31.7303 22.7967 31.7114 22.7702 31.6983 22.7408C31.6852 22.7114 31.6781 22.6796 31.6775 22.6474C31.677 22.6151 31.6829 22.5831 31.695 22.5532C31.707 22.5234 31.725 22.4962 31.7478 22.4734C31.7706 22.4506 31.7977 22.4327 31.8276 22.4206C31.8575 22.4085 31.8895 22.4026 31.9217 22.4032C31.954 22.4037 31.9857 22.4108 32.0152 22.4239C32.0446 22.437 32.0711 22.4559 32.0931 22.4795L32.3312 22.7176C32.3761 22.7626 32.4014 22.8236 32.4014 22.8872C32.4014 22.9508 32.3761 23.0118 32.3312 23.0568Z" fill="url(#paint2_linear_4045_16267)" />
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16267" x1="13" y1="19" x2="25.3367" y2="19" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_16267" x1="13.043" y1="16.1319" x2="25.2942" y2="16.1319" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint2_linear_4045_16267" x1="15" y1="26" x2="34.9996" y2="26" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.394231" stop-color="#E21E24" />
|
|
|
<stop offset="0.929023" stop-color="#FF2F35" />
|
|
|
</linearGradient>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Фитнес-бар',
|
|
|
'description' => 'В нашем баре Вы всегда получите всё необходимое для подъёма тонуса, более эффективных тренировок и хорошего настроения.'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_4045_16805)">
|
|
|
<path d="M30.8973 23.356V17.4476C30.8972 16.8293 30.396 16.3281 29.7777 16.3281H1.20545C0.587211 16.3281 0.0859375 16.8293 0.0859375 17.4476V23.356C0.0859375 28.5768 2.97564 33.1675 7.31403 35.7608H1.20612C0.587879 35.7608 0.0866055 36.262 0.0866055 36.8803C0.0866055 37.4986 0.58773 37.9998 1.20612 37.9998H29.7778C30.3961 37.9998 30.8973 37.4987 30.8973 36.8803C30.8973 36.2621 30.3961 35.7608 29.7778 35.7608H23.6692C28.0075 33.1675 30.8973 28.5768 30.8973 23.356ZM33.1361 18.343V20.6314C34.5972 21.0331 35.6741 22.3726 35.6741 23.9597C35.6741 25.7262 34.34 27.1862 32.6266 27.3872C32.428 28.1594 32.1729 28.9159 31.8632 29.6506H32.2221C35.3601 29.6506 37.9131 27.0976 37.9131 23.9597C37.9131 21.1327 35.841 18.7817 33.1361 18.343Z" fill="url(#paint0_linear_4045_16805)" />
|
|
|
<path d="M25.1105 4.03177C25.0904 4.88224 24.7597 6.14367 23.2989 7.32367C22.6557 7.8432 22.3351 8.36496 22.3189 8.91856C22.2931 9.80005 23.05 10.6864 23.3438 10.9536C23.8058 11.3645 23.845 12.0701 23.4341 12.5321C23.2134 12.7804 22.9064 12.9066 22.5979 12.9066C22.3227 12.9069 22.0569 12.8059 21.8514 12.6227C21.665 12.4569 20.0311 10.9429 20.0803 8.87388C20.1005 8.02341 20.4312 6.76198 21.8919 5.58198C22.5383 5.05985 22.8589 4.53542 22.8722 3.97871C22.8969 2.93378 21.8619 1.96537 21.8514 1.95602C21.3894 1.54507 21.348 0.837545 21.7589 0.375534C22.1698 -0.0864781 22.8774 -0.127892 23.3394 0.282983C23.5259 0.448713 25.1596 1.96278 25.1105 4.03177Z" fill="#E21E24" />
|
|
|
<path d="M18.0075 4.03177C17.9874 4.88224 17.6567 6.14367 16.1959 7.32367C15.5526 7.8432 15.2321 8.36496 15.2158 8.91856C15.1901 9.80005 15.9469 10.6864 16.2408 10.9536C16.7028 11.3645 16.742 12.0701 16.3311 12.5321C16.1104 12.7804 15.8033 12.9066 15.4949 12.9066C15.2196 12.9069 14.9539 12.8059 14.7484 12.6227C14.562 12.4569 12.9282 10.9429 12.9773 8.87388C12.9974 8.02341 13.3281 6.76198 14.7889 5.58198C15.4353 5.05985 15.7559 4.53542 15.7691 3.97871C15.7939 2.93378 14.7589 1.96537 14.7484 1.95602C14.2864 1.54507 14.245 0.837545 14.6558 0.375534C15.0668 -0.0864781 15.7745 -0.127892 16.2363 0.282983C16.4228 0.448713 18.0566 1.96278 18.0075 4.03177Z" fill="#E21E24" />
|
|
|
<path d="M10.9043 4.03185C10.8842 4.88232 10.5535 6.14374 9.0927 7.32374C8.44633 7.8458 8.1257 8.3703 8.11257 8.92702C8.08778 9.97194 9.12283 10.9403 9.1333 10.9497C9.59531 11.3607 9.63672 12.0682 9.22585 12.5302C9.12087 12.6485 8.99198 12.7431 8.8477 12.8078C8.70341 12.8726 8.54703 12.906 8.38888 12.9057C8.11465 12.906 7.84993 12.8053 7.64529 12.6227C7.45885 12.4569 5.82507 10.9429 5.87413 8.87395C5.89424 8.02348 6.22496 6.76206 7.68573 5.58205C8.33211 5.05992 8.65273 4.53549 8.66594 3.97878C8.69073 2.93385 7.65568 1.96545 7.64521 1.9561C7.1832 1.54515 7.14179 0.837545 7.55266 0.375608C7.96361 -0.0864039 8.67121 -0.127818 9.13315 0.283057C9.31966 0.448788 10.9534 1.96285 10.9043 4.03185Z" fill="#E21E24" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16805" x1="0.0859375" y1="27.164" x2="37.9131" y2="27.164" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_4045_16805">
|
|
|
<rect width="38" height="38" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Фитнес-кафе',
|
|
|
'description' => 'Низкокалорийные и полезные блюда. Горячее и закуски, чай и кофе, свежевыжатый сок и десерты - всё это можно попробовать у нас и заказать на вынос.'
|
|
|
],
|
|
|
[
|
|
|
'svg' => '<svg width="38" height="38" viewBox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
|
<g clip-path="url(#clip0_4045_16510)">
|
|
|
<path d="M18.6267 24.6644C18.5681 25.4296 18.3415 26.1724 17.9631 26.8399C17.7542 27.1458 17.3387 27.2277 17.0293 27.024C16.72 26.8203 16.6312 26.4062 16.8298 26.0935C16.8549 26.0521 17.9644 24.2016 16.7545 20.5712C16.4821 19.744 16.3927 18.8674 16.4926 18.0022C16.4282 17.91 16.3704 17.8134 16.3195 17.7131C16.1468 17.3606 16.0519 16.975 16.0413 16.5826C16.0396 16.2078 16.342 15.9026 16.7168 15.901C17.0916 15.8993 17.3968 16.2017 17.3985 16.5765C17.388 16.7074 17.406 16.8391 17.4512 16.9624C17.4964 17.0857 17.5677 17.1978 17.6603 17.291C17.7528 17.3842 17.8644 17.4563 17.9874 17.5023C18.1104 17.5483 18.242 17.5672 18.373 17.5577C19.1937 17.5723 20.0072 17.7149 20.7839 17.9804C20.9154 18.0173 21.056 18.0022 21.1767 17.9384C21.2974 17.8746 21.389 17.7668 21.4325 17.6374C21.4761 17.508 21.4683 17.3668 21.4107 17.243C21.3532 17.1192 21.2502 17.0222 21.1232 16.9721C20.2163 16.6343 19.3953 16.1002 18.719 15.4079C18.656 15.3449 18.606 15.2701 18.5718 15.1878C18.5377 15.1055 18.5201 15.0172 18.5201 14.9281C18.52 14.8389 18.5376 14.7507 18.5717 14.6683C18.6057 14.586 18.6557 14.5111 18.7187 14.4481C18.7817 14.385 18.8565 14.335 18.9388 14.3009C19.0212 14.2667 19.1094 14.2491 19.1986 14.2491C19.2877 14.2491 19.3759 14.2666 19.4583 14.3007C19.5407 14.3348 19.6155 14.3847 19.6785 14.4477C20.0115 14.7809 20.3852 15.0707 20.7907 15.3102L21.8635 14.2374L19.9167 12.3008L15.8724 13.4428C15.2237 15.1155 13.0061 20.7992 11.683 23.6981C11.2474 24.6185 11.0639 25.638 11.151 26.6526C11.2108 27.3951 11.452 28.1116 11.8533 28.7392C11.9281 28.8508 11.968 28.9822 11.968 29.1165V29.8833C11.9672 30.0996 12.0184 30.3129 12.1171 30.5053C12.2158 30.6978 12.3592 30.8637 12.5353 30.9893C12.7107 31.1185 12.9143 31.2039 13.1294 31.2385C13.3444 31.2731 13.5646 31.2558 13.7716 31.1882C13.8692 31.1543 13.9731 31.1423 14.0758 31.1531C14.1786 31.1639 14.2777 31.1972 14.3661 31.2506C17.1686 32.8491 20.4113 33.5027 23.6143 33.1147C26.0228 32.7531 27.8086 30.6902 27.8215 28.2548C27.8215 28.0668 27.8092 27.8849 27.7909 27.6963C27.72 26.9704 27.4832 26.2704 27.0986 25.6506C26.7141 25.0308 26.1923 24.5076 25.5734 24.1216C22.8739 22.493 19.7402 23.3432 18.6267 24.6644ZM13.6304 27.7492C13.5506 27.7891 13.4638 27.8128 13.3749 27.8191C13.2859 27.8254 13.1966 27.8141 13.1121 27.7859C13.0275 27.7576 12.9493 27.713 12.882 27.6546C12.8147 27.5961 12.7595 27.525 12.7197 27.4452C12.4794 26.9246 12.3549 26.3581 12.3549 25.7847C12.3549 25.2113 12.4794 24.6448 12.7197 24.1242C12.8911 23.7976 13.292 23.6677 13.6223 23.8316C13.9527 23.9956 14.0916 24.3935 13.935 24.7274C13.7888 25.0601 13.7133 25.4196 13.7133 25.783C13.7133 26.1464 13.7888 26.5058 13.935 26.8385C13.9749 26.9183 13.9986 27.0052 14.0049 27.0941C14.0111 27.1831 13.9998 27.2724 13.9715 27.357C13.9432 27.4416 13.8985 27.5198 13.84 27.5871C13.7814 27.6544 13.7102 27.7095 13.6304 27.7492ZM25.5142 29.6695C25.5386 29.7553 25.5459 29.845 25.5357 29.9335C25.5254 30.0221 25.4979 30.1077 25.4545 30.1856C25.4112 30.2635 25.3529 30.3321 25.283 30.3875C25.2131 30.4428 25.133 30.4839 25.0473 30.5083C23.735 30.9036 22.3741 31.1142 21.0037 31.1339C19.8575 31.2046 18.7141 30.9579 17.6991 30.4207C17.386 30.2146 17.2992 29.7937 17.5054 29.4805C17.7115 29.1674 18.1324 29.0807 18.4455 29.2868C18.4944 29.3167 20.3904 30.4281 24.6755 29.204C25.0356 29.1012 25.411 29.3095 25.5142 29.6695Z" fill="#E21E24" />
|
|
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.1783 4.74998H27.8212V6.10711H10.1783V4.74998ZM8.82117 3.39286H10.1783V2.03573C10.1783 1.66097 10.4821 1.35713 10.8569 1.35713C11.2317 1.35713 11.5355 1.66091 11.5355 2.03573V3.39286H12.8926V2.03573C12.8926 1.66097 13.1964 1.35713 13.5712 1.35713C13.946 1.35713 14.2498 1.66091 14.2498 2.03573V3.39286H15.6069V2.03573C15.6069 1.66097 15.9107 1.35713 16.2855 1.35713C16.6604 1.35713 16.9641 1.66091 16.9641 2.03573V3.39286H18.3213V2.03573C18.3213 1.66097 18.625 1.35713 18.9999 1.35713C19.3747 1.35713 19.6785 1.66091 19.6785 2.03573V3.39286H21.0356V2.03573C21.0356 1.66097 21.3394 1.35713 21.7142 1.35713C22.089 1.35713 22.3928 1.66091 22.3928 2.03573V3.39286H23.7499V2.03573C23.7499 1.66097 24.0537 1.35713 24.4285 1.35713C24.8033 1.35713 25.1071 1.66091 25.1071 2.03573V3.39286H26.4642V2.03573C26.4642 1.66097 26.768 1.35713 27.1428 1.35713C27.5176 1.35713 27.8214 1.66091 27.8214 2.03573V3.39286H29.1786C29.5533 3.39286 29.8571 3.08908 29.8571 2.71426V0.678596C29.8571 0.303842 29.5534 0 29.1786 0H8.82117C8.44642 0 8.14258 0.303779 8.14258 0.678596V2.71432C8.14258 3.08908 8.44642 3.39286 8.82117 3.39286Z" fill="url(#paint0_linear_4045_16510)" />
|
|
|
<path d="M25.1885 14.9291H33.9284V12.8934C33.9251 9.8967 31.4966 7.46821 28.4999 7.46484H9.49987C6.50314 7.46821 4.07465 9.8967 4.07129 12.8934V14.9291H10.857C11.2318 14.9291 11.5356 15.2329 11.5356 15.6077C11.5356 15.9825 11.2318 16.2863 10.857 16.2863H4.07135V31.2149H9.02491C9.39967 31.2149 9.70351 31.5187 9.70351 31.8935C9.70351 32.2683 9.39973 32.5721 9.02491 32.5721H4.07135V33.9292C4.07359 36.1769 5.89515 37.9984 8.1428 38.0007H29.8571C32.1047 37.9984 33.9263 36.1769 33.9285 33.9292V32.5721H30.366C29.9913 32.5721 29.6874 32.2683 29.6874 31.8935C29.6874 31.5187 29.9912 31.2149 30.366 31.2149H33.9285V16.2863H25.1885C24.8137 16.2863 24.5099 15.9826 24.5099 15.6077C24.5099 15.233 24.8137 14.9291 25.1885 14.9291ZM9.49987 10.1792C8.00079 10.1792 6.78561 11.3944 6.78561 12.8934C6.78561 13.2682 6.48183 13.572 6.10701 13.572C5.73226 13.572 5.42842 13.2682 5.42842 12.8934C5.43066 10.6458 7.25221 8.82422 9.49987 8.82197C9.87462 8.82197 10.1785 9.12575 10.1785 9.50057C10.1785 9.87539 9.87469 10.1792 9.49987 10.1792ZM26.2722 22.958C27.071 23.4531 27.7452 24.1254 28.2426 24.9229C28.74 25.7203 29.0472 26.6215 29.1405 27.5567C29.1642 27.7976 29.1785 28.0222 29.1785 28.2549C29.1626 31.3602 26.8881 33.9915 23.8177 34.4564C23.1258 34.5583 22.4272 34.6089 21.7277 34.6077C18.9924 34.5809 16.3064 33.8759 13.9106 32.5557C13.513 32.6379 13.1022 32.6308 12.7077 32.5348C12.3132 32.4388 11.945 32.2564 11.6297 32.0006C11.3143 31.7449 11.0598 31.4223 10.8844 31.0562C10.709 30.69 10.6171 30.2895 10.6155 29.8835V29.3149C10.1606 28.5448 9.88379 27.6828 9.80527 26.7919C9.69336 25.539 9.9158 24.2788 10.4499 23.1398C11.7609 20.2695 13.9656 14.617 14.6102 12.9524C14.6859 12.7587 14.8047 12.5848 14.9575 12.4437C15.1103 12.3026 15.2932 12.1981 15.4923 12.1381L19.5332 10.9934C19.7684 10.9277 20.0167 10.9255 20.2529 10.987C20.4892 11.0485 20.7049 11.1715 20.8782 11.3435L22.8243 13.2828C22.9517 13.4095 23.0526 13.5603 23.121 13.7265C23.1894 13.8927 23.2239 14.0708 23.2226 14.2505C23.2219 14.4286 23.1856 14.6047 23.1156 14.7685C23.0457 14.9322 22.9436 15.0803 22.8154 15.2039L22.0602 15.9591C22.3807 16.1941 22.618 16.5251 22.7377 16.9041C22.8574 17.2831 22.8533 17.6903 22.7259 18.0668C22.6004 18.443 22.36 18.7703 22.0386 19.0026C21.7172 19.2348 21.331 19.3604 20.9344 19.3615C20.7404 19.3615 20.5475 19.3307 20.3631 19.2705C19.721 19.0508 19.0492 18.9307 18.3708 18.9143C18.1828 18.9136 17.9955 18.8936 17.8116 18.8546C17.8264 19.293 17.9034 19.7271 18.0403 20.1439C18.346 21.0394 18.5457 21.9677 18.6354 22.9097C20.9941 21.5124 23.9314 21.5309 26.2722 22.958Z" fill="url(#paint1_linear_4045_16510)" />
|
|
|
</g>
|
|
|
<defs>
|
|
|
<linearGradient id="paint0_linear_4045_16510" x1="8.14258" y1="3.05356" x2="29.8571" y2="3.05356" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<linearGradient id="paint1_linear_4045_16510" x1="4.07129" y1="22.7328" x2="33.9285" y2="22.7328" gradientUnits="userSpaceOnUse">
|
|
|
<stop offset="0.673077" stop-color="#2B2C35" />
|
|
|
<stop offset="0.929023" stop-color="#4F5870" />
|
|
|
</linearGradient>
|
|
|
<clipPath id="clip0_4045_16510">
|
|
|
<rect width="38" height="38" fill="white" />
|
|
|
</clipPath>
|
|
|
</defs>
|
|
|
</svg>',
|
|
|
'heading' => 'Магазин спортивного питания',
|
|
|
'description' => 'Для спортсменов на территории клуба так же находится магазин спортивного питания. Широкий ассортимент порадует даже профессионалов и не даст уйти с пустыми руками!'
|
|
|
]
|
|
|
];
|
|
|
|
|
|
$excluded_for_gym = [2, 3, 4];
|
|
|
|
|
|
$current_room = get_current_room();
|
|
|
|
|
|
if ($current_room === 'gym') {
|
|
|
foreach (array_reverse($excluded_for_gym) as $index) {
|
|
|
unset($additional_services[$index]);
|
|
|
}
|
|
|
$additional_services = array_values($additional_services);
|
|
|
}
|
|
|
if ($current_room === 'fitness') {
|
|
|
?>
|
|
|
<section class="max-[768px]:py-[45px] py-[90px]">
|
|
|
<div class="container mx-auto">
|
|
|
<div class="max-[768px]:grid-cols-1 max-[1300px]:grid-cols-2 mt-[24px] grid grid-cols-3 gap-[24px]">
|
|
|
<div class="max-[768px]:px-[20px] max-[1050px]:h-auto h-[305px]">
|
|
|
<div class="max-[768px]:mt-0 flex flex-col h-full gap-[16px] [&>img]:w-[294px] max-[768px]:[&>img]:w-fit mt-[20px]">
|
|
|
<?php display_icon(get_current_room() === 'gym' ? 'dark_logo_name_gym' : 'light_logo_name'); ?>
|
|
|
<h2 class="max-[1050px]:text-[36px] max-[768px]:max-[768px]:text-[24px] text-[40px] leading-[120%] font-[500]">
|
|
|
<strong>Дополнительные</strong> услуги</h2>
|
|
|
</div>
|
|
|
</div>
|
|
|
<?php foreach ($additional_services as $service): ?>
|
|
|
<div class="max-[768px]:px-[20px] max-[1050px]:h-auto bg-[#ffffff] rounded-[12px] p-[28px] pb-[16px] h-[305px] shadow-[0_2px_32px_0_rgba(16,_15,_15,_0.03)]">
|
|
|
<div class="flex flex-col h-full gap-[12px]">
|
|
|
<div class="max-[768px]:gap-[16px] flex flex-col gap-[24px]">
|
|
|
<div class="max-[768px]:mx-0 overflow-hidden [&>svg]:min-w-fit w-[76px] h-[76px] grid place-items-center rounded-[12px] radial-gradient small-shadow">
|
|
|
<?php echo $service['svg']; ?>
|
|
|
</div>
|
|
|
<h3 class="max-[768px]:text-[20px] text-[24px] font-[600] leading-[125%]">
|
|
|
<?php echo esc_html($service['heading']); ?>
|
|
|
</h3>
|
|
|
</div>
|
|
|
|
|
|
<div class="max-[768px]:text-[15px] text-[16px] leading-[145%] font-[500] text-[#6c6b6b]">
|
|
|
<?php echo esc_html($service['description']); ?>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<?php endforeach; ?>
|
|
|
</div>
|
|
|
</div>
|
|
|
</section>
|
|
|
<?php
|
|
|
|
|
|
}
|
|
|
?>
|
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|