@charset "UTF-8";
/** Стили от Amiroff.az */
/** Подключение шрифтов локально из папки "./src/fonts" */
@font-face {
  font-family: Mulish;
  font-display: swap;
  src: url("../fonts/Mulish-Bold.woff2") format("woff2"), url("../fonts/Mulish-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Mulish;
  font-display: swap;
  src: url("../fonts/Mulish-Medium.woff2") format("woff2"), url("../fonts/Mulish-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Mulish;
  font-display: swap;
  src: url("../fonts/Mulish-Regular.woff2") format("woff2"), url("../fonts/Mulish-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Mulish;
  font-display: swap;
  src: url("../fonts/Mulish-SemiBold.woff2") format("woff2"), url("../fonts/Mulish-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
/** Подключение переменных */
/**************************\
  Media Queries Configuration

  Usage Examples:

  // Desktop first (max-width by pixel value)
  @include max-576 {
    display: none;
  }

  // Custom breakpoint
  @include media-up(1024px) {
    width: 100%;
  }

  // Between breakpoints
  @include media-between(768px, 1024px) {
    padding: 20px;
  }
\**************************/
/**************************\
  Max-width Breakpoints
\**************************/
/**************************\
  Custom Breakpoint Mixins
\**************************/
/**************************\
  Orientation & Special Queries
\**************************/
/**************************\
  Quick Reference Guide

  Breakpoints:
  - 480px  (Extra small devices)
  - 576px  (Small devices)
  - 768px  (Medium devices)
  - 992px  (Large devices)
  - 1200px (Extra large devices)
  - 1400px (Extra extra large devices)

  Max-width Examples:
  @include max-480 {  }
  @include max-576 {  }
  @include max-768 {  }
  @include max-992 {  }
  @include max-1200 {  }
  @include max-1400 {  }

  Only Range Examples:
  @include only-576 { ... }  // 576px - 767px
  @include only-768 { ... }  // 768px - 991px
  @include only-992 { ... }  // 992px - 1199px

  Custom Examples:
  @include media-up(900px) { ... }
  @include media-down(900px) { ... }
  @include media-between(768px, 1024px) { ... }

  Special:
  @include landscape { ... }
  @include retina { ... }
  @include dark-mode { ... }
\**************************/
:root {
  --mainFont: Mulish, Public Sans, Segoe UI, Noto Sans, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
  --mainWeight: 400;
  --white: #ffffff;
  --black: #000000;
  --large: 1200px;
  --tablet: 768px;
  --mobile: 480px;
  --colors-red: #DF363CFF;
  --colors-black: #383333FF;
  --colors-gray_text: #666666FF;
  --colors-input_text: #666666FF;
  --colors-product_bg: #F8F8F8FF;
  --colors-border_color: #DFDFDFFF;
  --colors-nav_color: #F9FBFBFF;
  --colors-white: #FFFFFFFF;
  --colors-text: #666666FF;
  --colors-input_border: #E9E9E9FF;
  --numbers-paddings-section_x_paddings: 15px;
  --numbers-border_radius-br_button: 8px;
  --numbers-border_radius-br_input: 8px;
  --numbers-border_radius-br_photo: 16px;
  --numbers-paddings-section_padding_default: 60px;
  --numbers-paddings-section_padding_X2: 120px;
  --numbers-paddings-half_of_section_padding: 30px;
  /* Text-size styles */
  /* base size: base (10px) */
  --f23: 2.3rem;
  --f22: 2.2rem;
  --f21: 2.1rem;
  --f20: 2rem;
  --f19: 1.9rem;
  --f18: 1.8rem;
  --f17: 1.7rem;
  --f16: 1.6rem;
  --f15: 1.5rem;
  --f14: 1.4rem;
  --f13: 1.3rem;
  --f12: 1.2rem;
  --h1: 5.4rem;
  --h2: 4.8rem;
  --h3: 3.2rem;
  --h4: 2.4rem;
  --h5: 2rem;
  --h6: 1.8rem;
  --mobile--h1: 4rem;
  --mobile--h2: 3.2rem;
  --mobile--h3: 2.8rem;
  --mobile--h4: 2rem;
  --mobile--h5: 1.8rem;
  --mobile--h6: 1.7rem;
  --component-title-01: 4.8rem;
  --component--title-02: 2.4rem;
  /* Effect styles */
  --icon_shadow: 0px 5px 8.600000381469727px rgba(0, 0, 0, 0.12);
  --menu_shadow: 0px 6px 11.5px rgba(0, 0, 0, 0.05);
  --input_height: 51px;
}

/** Подключение sass function и mixins и extends стилей */
/* Шаблоны (заготовки)
* @extend %имя шаблона;
*/
/** Подключение custom scrollbar для всего сайта */
* {
  scrollbar-width: thin;
  scrollbar-color: #DDD #f0f0f0;
}
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}
*::-webkit-scrollbar-thumb {
  background: var(--colors-red, #DDD);
  border-radius: 4px;
  transition: background 0.3s ease;
}
*::-webkit-scrollbar-thumb:hover {
  background: #DDD;
}
*::-webkit-scrollbar-thumb:active {
  background: #DDD;
}

.submenu_list_holder::-webkit-scrollbar,
.search_dropdown_menu::-webkit-scrollbar,
.lang_dropdown_menu::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.submenu_list_holder::-webkit-scrollbar-thumb,
.search_dropdown_menu::-webkit-scrollbar-thumb,
.lang_dropdown_menu::-webkit-scrollbar-thumb {
  background: rgba(221, 221, 221, 0.5);
}
.submenu_list_holder::-webkit-scrollbar-thumb:hover,
.search_dropdown_menu::-webkit-scrollbar-thumb:hover,
.lang_dropdown_menu::-webkit-scrollbar-thumb:hover {
  background: rgba(221, 221, 221, 0.8);
}

/** Библиотеки */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.row {
  justify-content: center;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.row > * {
  width: 100%;
}

/** Обнуление */
/** Подключение переменных */
* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
  color: --main-color;
}

*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

a:focus {
  outline-width: 0;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-family: "Mulish", "Public Sans", "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 400;
  line-height: 1;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button:focus {
  outline: none;
}

a,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  cursor: pointer;
  outline: none !important;
}

a:focus {
  color: white;
}

a {
  background: transparent;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

img {
  vertical-align: top;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.2em;
}

sup {
  color: inherit;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

button {
  background: transparent;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

ol, ul {
  margin-top: 0;
  margin-bottom: 10px;
}

ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0;
}

.ul {
  padding-left: 0;
  list-style: none;
}

.li {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dd, dt {
  line-height: 1.42857143;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

/** Общие параметры БЕМ блоки (кнопки, breadcrumbs, nav pills) используемые во всё проекте */
/** Подключение переменных */
html *,
html *::after,
html *::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
  padding: 0;
}

html {
  position: relative;
}

:host,
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  scroll-snap-type: y proximity;
  scroll-snap-stop: normal;
  scroll-snap-align: start;
  scroll-padding: 50px;
  scroll-padding-top: 80px;
  scroll-padding-bottom: 80px;
  scroll-padding-left: 20px;
  scroll-padding-right: 20px;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
  width: 100%;
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  font-family: var(--mainFont);
  font-weight: var(--mainWeight);
  font-style: normal;
  color: var(--black);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  min-height: 100vh;
  position: relative;
}

main {
  position: relative;
  padding-bottom: var(--numbers-paddings-half_of_section_padding, 30px);
  padding-top: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}
a:focus, a:hover {
  text-decoration: none;
  color: inherit;
}

p {
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.d_flex {
  display: flex;
}

.d_column {
  flex-direction: column;
}

.d_align_center {
  align-items: center;
}

.d_justify_center {
  justify-content: center;
}

.white {
  color: white;
}

.red {
  color: var(--colors-red);
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.line {
  width: 100%;
  height: 1px;
  background: #EDEDED;
}

.no_scroll {
  overflow: hidden;
}

/** Подключение переменных */
/** Подключение sass function и mixins и extends стилей */
/**************************\
  Global Imports

  This file contains all the utilities that should be
  available globally in all SCSS files without explicit imports.

  Usage: @use "config/global" as *;
\**************************/
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: var(--colors-black, #383333);
  border-color: var(--colors-border_color, #DFDFDF);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn .btn_holder {
  display: flex;
  padding: 15px 25px;
  min-height: var(--input_height);
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-width: 1px;
  border-style: solid;
  border-radius: var(--numbers-border_radius-br_button, 8px);
  border-color: inherit;
  background-color: var(--colors-white, #FFF);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  justify-content: center;
  text-align: center;
}
.btn .btn_holder .btn_title {
  color: inherit;
  font-size: var(--f14);
  font-style: normal;
  font-weight: 600;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: 2;
  pointer-events: none;
}
.btn:hover::before {
  left: 100%;
}
.btn:active {
  scale: 0.99;
}
.btn.btn_white {
  color: var(--colors-white, #fff);
  border-color: var(--colors-border_color, #DFDFDF);
}
.btn.btn_white .btn_holder {
  background-color: transparent;
}
.btn.btn_white:hover {
  color: var(--colors-black, #383333);
}
.btn.btn_white:hover .btn_holder {
  background-color: #f5f5f5;
}
.btn.btn__red_bg {
  color: var(--colors-white, #FFF);
  border-color: var(--colors-red, #DF363C);
}
.btn.btn__red_bg .btn_holder {
  background-color: var(--colors-red, #DF363C);
}
.btn.btn__red_bg:hover .btn_holder {
  background-color: #c42e33;
}
.btn.btn__black_bg {
  color: var(--colors-white, #FFF);
  border-color: var(--colors-black, #383333);
}
.btn.btn__black_bg .btn_holder {
  background-color: var(--colors-black, #383333);
}
.btn.btn__black_bg:hover .btn_holder {
  background-color: #2a2626;
}
.btn.btn__white_border {
  color: var(--colors-black, #383333);
  border-color: var(--colors-border_color, #DFDFDF);
}
.btn.btn__white_border .btn_holder {
  background-color: var(--colors-white, #FFF);
}
.btn.btn__white_border:hover .btn_holder {
  background-color: #f5f5f5;
}
.btn.btn__white_border::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: transparen;
  transition: left 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

.slider_wrapper {
  --swiper-theme-color: #DF363CFF;
  --swiper-navigation-sides-offset: -50px;
  --swiper-navigation-size: 16px;
}
.slider_wrapper:hover .swiper-button-prev,
.slider_wrapper:hover .swiper-button-next {
  background-color: #f0f0f0;
  border-color: #e6e6e6;
}
.slider_wrapper .swiper-button-prev,
.slider_wrapper .swiper-button-next {
  width: 86px;
  height: 86px;
  background-color: var(--colors-nav_color, #F9FBFB);
  border-color: var(--colors-white, #fff);
  border-width: 6px;
  border-style: solid;
  border-radius: 100%;
  transition: all 0.3s ease;
}
@media (max-width: 1199px) {
  .slider_wrapper .swiper-button-prev,
  .slider_wrapper .swiper-button-next {
    --swiper-navigation-sides-offset: 10px;
    width: 50px;
    height: 50px;
  }
}
.slider_wrapper .swiper-button-prev::after,
.slider_wrapper .swiper-button-next::after {
  transition: all 0.3s ease;
  color: var(--colors-red, #DF363C);
}
@media (max-width: 767px) {
  .slider_wrapper .swiper-button-prev,
  .slider_wrapper .swiper-button-next {
    display: none;
  }
}
.slider_wrapper .swiper-button-prev:hover:after {
  transform: translateX(-2px);
}
.slider_wrapper .swiper-button-next:hover:after {
  transform: translateX(2px);
}
.slider_wrapper .swiper-pagination {
  --swiper-pagination-bottom: -40px;
  --swiper-pagination-bullet-width: 16px;
  --swiper-pagination-bullet-height: 16px ;
}

/**************************\
  Form Styles
\**************************/
.form-group {
  margin-bottom: 20px;
}
.form-group:last-of-type {
  margin-bottom: 30px;
}

.default_form {
  display: flex;
  flex-direction: column;
}

.default_field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.default_field.default_field--full {
  width: 100%;
}

.default_form_row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 575px) {
  .default_form_row {
    grid-template-columns: 1fr;
  }
}

.default_success {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1c9b5c;
  font-size: var(--f13);
  font-weight: 500;
  margin-top: 20px;
}

.default_success_icon {
  display: inline-flex;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--f14);
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
  color: var(--colors-black, #383333);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}
.form-input::placeholder {
  color: #b3b3b3;
}
.form-input:focus {
  outline: none;
  border-color: #d0d0d0;
  box-shadow: 0 0 0 2px rgba(223, 54, 60, 0.08);
}
.form-input.error, .form-input.error-validate {
  border-color: #dc3545;
}
.form-input.success {
  border-color: #28a745;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-error,
.label-error {
  display: block;
  font-size: 12px;
  color: #dc3545;
  margin-top: 5px;
  min-height: 18px;
}

.form-error:empty,
.label-error:empty {
  display: none;
}

.success_icon {
  display: flex;
  width: 68px;
  height: 68px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 58px;
  border: 8px solid var(--Success-50, #ECFDF3);
  background: var(--Success-100, #D1FADF);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
h1 .with_line,
h2 .with_line,
h3 .with_line,
h4 .with_line,
h5 .with_line,
h6 .with_line {
  position: relative;
  display: inline-block;
}
h1 .with_line::after,
h2 .with_line::after,
h3 .with_line::after,
h4 .with_line::after,
h5 .with_line::after,
h6 .with_line::after {
  content: "";
  position: absolute;
  bottom: 3px;
  z-index: 0;
  left: 2px;
  width: 100px;
  height: 10px;
  background: linear-gradient(90deg, rgba(223, 54, 60, 0.63) 0%, rgba(255, 255, 255, 0.22) 100%);
}

h1 {
  font-size: var(--h1);
}
@media (max-width: 767px) {
  h1 {
    font-size: var(--mobile--h1);
  }
}

h2 {
  font-size: var(--h2);
}
@media (max-width: 767px) {
  h2 {
    font-size: var(--mobile--h2);
  }
}

h3 {
  font-size: var(--h3);
}
@media (max-width: 767px) {
  h3 {
    font-size: var(--mobile--h3);
  }
}

h4 {
  font-size: var(--h4);
}
@media (max-width: 767px) {
  h4 {
    font-size: var(--mobile--h4);
  }
}

h5 {
  font-size: var(--h5);
}
@media (max-width: 767px) {
  h5 {
    font-size: var(--mobile--h5);
  }
}

h6 {
  font-size: var(--h6);
}
@media (max-width: 767px) {
  h6 {
    font-size: var(--mobile--h6);
  }
}

p {
  font-size: var(--f14);
}

.small_text {
  font-size: var(--f12);
}

.mobile--small_text {
  font-size: var(--f12);
}

.bold_text {
  font-weight: 700;
}

.medium_text {
  font-weight: 500;
}

.regular_text {
  font-weight: 400;
}

.italic_text {
  font-style: italic;
}

.underline_text {
  text-decoration: underline;
}

.uppercase_text {
  text-transform: uppercase;
}

.capitalize_text {
  text-transform: capitalize;
}

.lowercase_text {
  text-transform: lowercase;
}

.center_text {
  text-align: center;
}

.right_text {
  text-align: right;
}

.left_text {
  text-align: left;
}

.justify_text {
  text-align: justify;
}

.no_wrap_text {
  white-space: nowrap;
}

.truncate_text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line_height_1 {
  line-height: 1;
}

.line_height_15 {
  line-height: 1.5;
}

.line_height_2 {
  line-height: 2;
}

.line_height_25 {
  line-height: 2.5;
}

.line_height_3 {
  line-height: 3;
}

/** Подключение стилей отдельных блоков и секций */
.home header {
  box-shadow: none;
}

.header {
  display: flex;
  padding: 0 var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--colors-white, #FFF);
  /* menu_shadow */
  box-shadow: 0 6px 11.5px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .header {
    display: none;
  }
}
.header .header__wrapper {
  display: flex;
  padding: 20px 0 0 0;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}
.header .header__wrapper .header__logo {
  display: flex;
  width: 101px;
  height: 100px;
  padding: 0.368px 0 0.247px 0;
  justify-content: center;
  align-items: center;
  aspect-ratio: 53/52;
}
.header .header__wrapper .right_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex: 1 0 0;
}
.header .header__wrapper .right_block .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.header .header__wrapper .right_block .top .registration_and_call {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .header__wrapper .right_block .top .registration_and_call .call_us {
  display: flex;
  height: var(--input_height);
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: var(--numbers-border_radius-br_button, 8px);
  border: 1px solid var(--colors-border_color, #DFDFDF);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .header__wrapper .right_block .top .registration_and_call .call_us::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(223, 54, 60, 0.1), transparent);
  transition: left 0.6s ease;
}
.header .header__wrapper .right_block .top .registration_and_call .call_us:hover {
  border-color: var(--colors-red, #DF363C);
  box-shadow: 0 4px 12px rgba(223, 54, 60, 0.15);
  transform: translateY(-2px);
}
.header .header__wrapper .right_block .top .registration_and_call .call_us:hover::before {
  left: 100%;
}
.header .header__wrapper .right_block .top .registration_and_call .call_us:hover .icon_holder svg {
  animation: phoneRing 0.6s ease;
}
.header .header__wrapper .right_block .top .registration_and_call .call_us:hover .call_us_number {
  color: var(--colors-red, #DF363C);
}
@keyframes phoneRing {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(-6deg);
  }
  20%, 40% {
    transform: rotate(6deg);
  }
  50% {
    transform: rotate(0deg);
  }
}
.header .header__wrapper .right_block .top .registration_and_call .call_us .holder {
  display: flex;
  padding: 0 10px 0 33px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: var(--numbers-border_radius-br_button, 8px);
  height: 100%;
}
.header .header__wrapper .right_block .top .registration_and_call .call_us .holder .phone_container {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}
.header .header__wrapper .right_block .top .registration_and_call .call_us .holder .phone_container .text_and_number {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
  height: 100%;
  padding: 6px 0;
}
.header .header__wrapper .right_block .top .registration_and_call .call_us .holder .phone_container .text_and_number .call_us_text {
  color: var(--colors-black, #383333);
  text-align: right;
  font-size: var(--f12);
  font-style: normal;
}
.header .header__wrapper .right_block .top .registration_and_call .call_us .holder .phone_container .text_and_number .call_us_number {
  color: var(--colors-black, #383333);
  text-align: right;
  font-family: Mulish;
  font-size: var(--f17);
  font-weight: 700;
  transition: color 0.3s ease;
}
.header .header__wrapper .right_block .top .registration_and_call .call_us .holder .phone_container .icon_holder {
  position: absolute;
  left: 2px;
  bottom: 0;
  width: 50px;
  height: 47px;
  aspect-ratio: 50/47;
}
.header .header__wrapper .right_block .top .registration_and_call .call_us .holder .phone_container .icon_holder svg {
  color: var(--colors-red);
  transition: transform 0.3s ease;
}
.header .header__wrapper .right_block .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.header .header__wrapper .right_block .bottom .header__nav {
  display: flex;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item {
  display: flex;
  padding: 0 8px 20px 8px;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .header__nav-link {
  display: flex;
  padding: 10px 0;
  justify-content: center;
  align-items: center;
  gap: 4px;
  position: relative;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--colors-red, #DF363C);
  transition: width 0.3s ease;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .header__nav-link:hover::after {
  width: 100%;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .header__nav-link .header__nav-text {
  color: var(--colors-black, #383333);
  font-size: var(--f14);
  font-weight: 700;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .header__nav-link__yellow .header__nav-text {
  color: #EE9300;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item.active .header__nav-link::after {
  width: 100%;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--colors-white, #FFF);
  border: none;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 8px;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder:hover {
  border-bottom-right-radius: 0;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder.opened {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list {
  display: flex;
  flex-direction: column;
  overflow: auto;
  height: 100%;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item .submenu_list__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  color: var(--colors-text, #666);
  font-size: var(--f14);
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: var(--numbers-border_radius-br_input, 8px);
  gap: 10px;
  line-height: 1.3;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item .submenu_list__link:hover {
  background-color: #f5f5f5;
  color: var(--colors-black, #383333);
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item .submenu_list__link .menu_title {
  flex: 1;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item .submenu_list__link .menu_icon {
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
  display: none;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item .submenu_list__link .menu_icon svg {
  width: 12px;
  height: 12px;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item .submenu_list_holder {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: var(--colors-white, #FFF);
  border: none;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px;
  margin-left: 0px;
  height: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item .submenu_list_holder .submenu_list__item .submenu_list_holder {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: var(--colors-white, #FFF);
  border: none;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px;
  margin-left: 0px;
  height: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item .submenu_list_holder .submenu_list__item:hover {
  border-bottom-right-radius: 0;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item .submenu_list_holder .submenu_list__item.opened > .submenu_list_holder {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item.opened > .submenu_list_holder {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item:hover > .submenu_list__link .menu_icon {
  transform: rotate(0deg);
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item:hover .submenu_list_holder {
  border-bottom-right-radius: 0;
}
.header .header__wrapper .right_block .bottom .header__nav .header__nav-list .header__nav-item .top_parent_menu_list_holder .submenu_list .submenu_list__item.has_submenu_inside > .submenu_list__link .menu_icon {
  display: block;
}

.header_mobile {
  position: relative;
  z-index: 2;
  display: none;
  height: 75px;
  align-items: flex-start;
  gap: var(--numbers-paddings-section_x_paddings, 15px);
  align-self: stretch;
  box-shadow: 0 6px 11.5px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .header_mobile {
    display: flex;
  }
}
.header_mobile .mob_header__wrapper {
  display: flex;
  padding: var(--numbers-paddings-section_x_paddings, 15px);
}
.header_mobile .mob_header__wrapper .mob_header__logo {
  padding-right: 10px;
}
.header_mobile .mob_header__wrapper .mob_header__logo img {
  display: flex;
  width: 46px;
  height: 45px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 46/45;
}
.header_mobile .mob_header__wrapper .right_elements_colelction {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  flex: 1 0 0;
  align-self: stretch;
}
.header_mobile .mob_header__wrapper .right_elements_colelction .registration_button .btn_holder {
  --input_height: 32px;
  display: flex;
  padding: 10px 13px;
  align-items: center;
  gap: 5.487px;
  align-self: stretch;
  border-radius: 5.487px;
  background: var(--colors-red, #DF363C);
}
.header_mobile .mob_header__wrapper .right_elements_colelction .registration_button .btn_holder .btn_title {
  font-size: 1.2rem;
}
.header_mobile .mob_header__wrapper .right_elements_colelction .burger_menu {
  display: flex;
  width: 24px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  gap: 3px;
}
.header_mobile .mob_header__wrapper .right_elements_colelction .burger_menu .burger_line {
  display: flex;
  gap: 3px;
  align-items: center;
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}
.header_mobile .mob_header__wrapper .right_elements_colelction .burger_menu .burger_line* {
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}
.header_mobile .mob_header__wrapper .right_elements_colelction .burger_menu .burger_line .line {
  height: 2px;
  background-color: var(--colors-black, #383333);
  border-radius: 2px;
}
.header_mobile .mob_header__wrapper .right_elements_colelction .burger_menu .burger_line .burger_line {
  display: flex;
  gap: 1px;
}
.header_mobile .mob_header__wrapper .right_elements_colelction .burger_menu .burger_line .small_line {
  width: 14px;
}
.header_mobile .mob_header__wrapper .right_elements_colelction .burger_menu .burger_line .big_line {
  width: 100%;
}
.header_mobile .mob_header__wrapper .right_elements_colelction .burger_menu .burger_line .full_line {
  width: 100%;
}
.header_mobile .mob_header__wrapper .right_elements_colelction .burger_menu.opened .burger_line {
  gap: 0;
}
.header_mobile .mob_header__wrapper .right_elements_colelction .burger_menu.opened .burger_line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 5px);
}
.header_mobile .mob_header__wrapper .right_elements_colelction .burger_menu.opened .burger_line:nth-child(2) {
  opacity: 0;
}
.header_mobile .mob_header__wrapper .right_elements_colelction .burger_menu.opened .burger_line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

.mobile_nav_panel {
  position: fixed;
  left: 0;
  top: 75px;
  z-index: 2;
  height: 100%;
  width: 100%;
  border-top: 1px solid var(--colors-border_color, #DFDFDF);
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transform: translateX(100%);
  background: var(--colors-white, #FFF);
  overflow-y: auto;
}
.mobile_nav_panel.opened {
  transform: translateX(0);
}
.mobile_nav_panel .top_nav {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-bottom: 1px solid var(--colors-border_color, #DFDFDF);
  background: var(--colors-white, #FFF);
  opacity: 1;
  max-height: 600px;
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transform: translateY(0);
}
.mobile_nav_panel .top_nav .back_icon {
  display: flex;
  width: 54px;
  padding: var(--numbers-paddings-section_x_paddings, 15px) 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: black;
  border-right: 1px solid var(--colors-border_color, #DFDFDF);
}
.mobile_nav_panel .top_nav .back_icon svg {
  transform: rotate(-180deg);
  color: #666161;
}
.mobile_nav_panel .top_nav .back_title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  color: var(--colors-black, #383333);
  font-size: var(--f16);
  font-weight: 600;
  line-height: 1.8rem;
}
.mobile_nav_panel .menu_mob {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  padding: var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-half_of_section_padding, 30px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  background: var(--colors-white, #FFF);
}
.mobile_nav_panel .menu_mob .menu_mob_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item {
  display: flex;
  padding: 0px 0 0px 5px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .header__nav-link {
  display: flex;
  padding: 14px 0;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .header__nav-link .header__nav-text {
  color: var(--colors-black, #383333);
  font-size: var(--f18);
  font-weight: 600;
  line-height: 1.8rem;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .header__nav-link__yellow .header__nav-text {
  color: #EE9300;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .header__nav-link .name_and_icon {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .header__nav-link svg {
  transform: rotate(-90deg);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .submenu_list_holder {
  display: none;
  position: absolute;
  transform: translateX(100%);
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--colors-white, #FFF);
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-half_of_section_padding, 30px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
  flex: 1 0 0;
  align-self: stretch;
  z-index: 3;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .submenu_list_holder .submenu_list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .submenu_list_holder .submenu_list .submenu_list__item {
  display: flex;
  padding: 8px 0;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .submenu_list_holder .submenu_list .submenu_list__item .submenu_list__link {
  display: flex;
  padding: 6px 0;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .submenu_list_holder .submenu_list .submenu_list__item .submenu_list__link .menu_title {
  color: var(--colors-black, #383333);
  font-size: var(--f18);
  font-weight: 600;
  line-height: 150%;
  display: inline-block;
  width: 100%;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .submenu_list_holder .submenu_list .submenu_list__item .submenu_list__link .menu_icon {
  display: none;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .submenu_list_holder .submenu_list .submenu_list__item .submenu_list__link .menu_icon svg {
  color: var(--colors-black, #383333);
  transform: rotate(-90deg);
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item .submenu_list_holder .submenu_list .submenu_list__item.has_submenu_inside > .submenu_list__link .menu_icon {
  display: block;
}

.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item.has_submenu_inside .header__nav-link svg {
  transform: rotate(270deg);
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item.has_submenu_inside .submenu_list_holder {
  display: flex;
}
.mobile_nav_panel .menu_mob .menu_mob_inner .header__nav .header__nav-list .header__nav-item.has_submenu_inside .submenu_list_holder.slided_in {
  transform: translateX(0);
}
.mobile_nav_panel[data-level="0"] .top_nav, .mobile_nav_panel[data-level="1"] .top_nav {
  opacity: 0;
  transform: translateY(-100%);
  max-height: 0;
  overflow: hidden;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.footer .footer_top {
  background: var(--colors-black, #383333);
  display: flex;
  width: 100%;
  padding: var(--numbers-paddings-section_padding_default, 60px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer .footer_top .footer_top_holder {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  align-self: stretch;
}
@media (max-width: 767px) {
  .footer .footer_top .footer_top_holder {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.footer .footer_top .footer_top_holder .footer_top_text {
  display: flex;
  width: 100%;
  max-width: 623px;
  flex-direction: column;
  align-items: flex-start;
  gap: 29px;
  animation: fadeInUp 0.8s ease-out;
}
@media (max-width: 991px) {
  .footer .footer_top .footer_top_holder .footer_top_text {
    max-width: 450px;
  }
}
@media (max-width: 767px) {
  .footer .footer_top .footer_top_holder .footer_top_text {
    max-width: 100%;
  }
}
.footer .footer_top .footer_top_holder .footer_top_text .footer_top_text_f {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.footer .footer_top .footer_top_holder .footer_top_text .footer_top_text_f .footer_top_text__heading {
  color: var(--colors-white);
}
.footer .footer_top .footer_top_holder .footer_top_text .footer_top_text_f p {
  color: #FFF;
  font-family: Mulish;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 2.6rem */
}
.footer .footer_top .footer_top_holder .fab_elem {
  width: 377px;
  height: 1px;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 767px) {
  .footer .footer_top .footer_top_holder .fab_elem {
    width: 100%;
  }
}
.footer .footer_top .footer_top_holder .fab_elem img {
  aspect-ratio: 87/86;
  object-fit: contain;
  flex-shrink: 0;
  position: absolute;
  bottom: -160px;
  animation: floatImage 3s ease-in-out infinite;
}
@media (max-width: 767px) {
  .footer .footer_top .footer_top_holder .fab_elem img {
    top: -80px;
    width: 229px;
    height: 207px;
    aspect-ratio: 89/88;
  }
}
@media (max-width: 575px) {
  .footer .footer_top .footer_top_holder .fab_elem img {
    top: -50px;
    width: 179px;
    height: 177px;
    aspect-ratio: 89/88;
  }
}
.footer .footer_center {
  width: 100%;
  display: flex;
  padding: var(--numbers-paddings-section_padding_default, 60px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--colors-red, #DF363C);
  padding-bottom: var(--numbers-paddings-section_x_paddings, 15px);
}
.footer .footer_center .footer_center_holder {
  display: flex;
  padding-right: 23vw;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}
@media (max-width: 991px) {
  .footer .footer_center .footer_center_holder {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .footer .footer_center .footer_center_holder {
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }
}
.footer .footer_center .footer_center_holder .footer_center_column {
  max-width: 217px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  color: var(--White, #FFF);
  animation: fadeInUp 0.6s ease-out backwards;
}
.footer .footer_center .footer_center_holder .footer_center_column:nth-child(1) {
  animation-delay: 0.1s;
}
.footer .footer_center .footer_center_holder .footer_center_column:nth-child(2) {
  animation-delay: 0.2s;
}
.footer .footer_center .footer_center_holder .footer_center_column:nth-child(3) {
  animation-delay: 0.3s;
}
.footer .footer_center .footer_center_holder .footer_center_column:first-child {
  display: flex;
  width: 189px;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .footer .footer_center .footer_center_holder .footer_center_column:first-child {
    width: 100%;
    max-width: 100%;
  }
}
.footer .footer_center .footer_center_holder .footer_center_column:first-child .footer_center_list {
  padding-left: 0;
}
.footer .footer_center .footer_center_holder .footer_center_column:first-child .footer_center_list .footer_center_item {
  display: inline-block;
}
@media (max-width: 767px) {
  .footer .footer_center .footer_center_holder .footer_center_column:first-child .footer_center_list .footer_center_item {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer .footer_center .footer_center_holder .footer_center_column {
    width: 100%;
    max-width: 100%;
  }
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_center_title {
  font-size: var(--f20);
  font-style: normal;
  font-weight: 400;
}
.footer .footer_center .footer_center_holder .footer_center_column .line {
  width: 100%;
  height: 3px;
  background: var(--colors-white, #FFF);
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_center_list {
  padding-left: 15px;
  margin-top: 10px;
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_center_list .footer_center_item {
  display: list-item;
  margin-bottom: 20px;
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_center_list .footer_center_item .footer_center_link {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  align-self: stretch;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_center_list .footer_center_item .footer_center_link:hover {
  transform: translateX(5px);
  opacity: 0.8;
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_center_list .footer_center_item .footer_center_link:before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%) scaleX(0);
  width: 8px;
  height: 2px;
  background: var(--colors-white);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .footer .footer_center .footer_center_holder .footer_center_column .footer_center_list .footer_center_item .footer_center_link:before {
    display: none;
  }
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_center_list .footer_center_item .footer_center_link:hover:before {
  transform: translateY(-50%) scaleX(1);
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_center_list .footer_center_item .footer_center_link .footer_center_item__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  flex: 1 0 0;
  font-size: var(--f16);
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer .footer_center .footer_center_holder .footer_center_column .footer_center_list .footer_center_item .footer_center_link .footer_center_item__title {
    gap: 8px;
  }
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_center_list .footer_center_item .footer_center_link .footer_center_item__title .big_number {
  font-size: var(--f20);
  font-style: normal;
  font-weight: 700;
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_socials {
  display: flex;
  padding-top: 0px;
  align-items: flex-start;
  gap: 15px;
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_socials .footer_social_link {
  display: flex;
  width: 50px;
  height: 50px;
  padding: 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background: var(--colors-red, #DF363C);
  /* icon_shadow */
  box-shadow: 0 5px 8.6px 0 rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_socials .footer_social_link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
  background: var(--colors-white);
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_socials .footer_social_link:hover svg {
  color: var(--colors-red);
}
.footer .footer_center .footer_center_holder .footer_center_column .footer_socials .footer_social_link svg {
  flex-shrink: 0;
  aspect-ratio: 6/11;
  transition: color 0.3s ease;
}
.footer .footer_bottom {
  width: 100%;
  display: flex;
  padding: 15px var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--colors-red, #DF363C);
}
.footer .footer_bottom .footer_bottom_holder {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  color: var(--White, #FFF);
}
@media (max-width: 767px) {
  .footer .footer_bottom .footer_bottom_holder {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.footer .footer_bottom .footer_bottom_holder .footer_copyrights {
  font-size: var(--f16);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 2.4rem */
}
.footer .footer_bottom .footer_bottom_holder .footer_developer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.footer .footer_bottom .footer_bottom_holder .footer_developer .developer_link {
  transition: all 0.3s ease;
}
.footer .footer_bottom .footer_bottom_holder .footer_developer .developer_link:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatImage {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes flipImage {
  0%, 71% {
    transform: rotateY(0deg);
  }
  85% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.prosduct_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  align-self: stretch;
}
@media (max-width: 1200px) {
  .prosduct_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .prosduct_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product_item {
  display: flex;
  width: 100%;
  max-width: 288.75px;
  flex-direction: column;
  align-items: center;
}
.product_item .product_image_holder {
  display: flex;
  width: 100%;
  padding: 66px 39px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: var(--numbers-border_radius-br_photo, 16px);
  background: var(--colors-product_bg, #F8F8F8);
  position: relative;
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}
.product_item .product_image_holder .product_image {
  width: 186.712px;
  height: 186.712px;
  aspect-ratio: 1/1;
  mix-blend-mode: multiply;
  object-fit: contain;
  -webkit-transition: 0.2s cubic-bezier(0.12, 0, 0.39, 0);
  -moz-transition: 0.2s cubic-bezier(0.12, 0, 0.39, 0);
  -ms-transition: 0.2s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.2s cubic-bezier(0.12, 0, 0.39, 0);
}
@media (max-width: 575px) {
  .product_item .product_image_holder .product_image {
    width: 143px;
    height: 143px;
    max-width: 100%;
    flex-shrink: 1;
  }
}
.product_item .product_image_holder .badge_holder {
  position: absolute;
  top: 0px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.product_item .product_image_holder .badge_holder .text_badge {
  display: flex;
  padding: 7px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 0 16px;
  background: var(--colors-red, #DF363C);
  color: var(--colors-white, #FFF);
  text-align: center;
  font-size: var(--f14);
  font-style: normal;
  font-weight: 600;
  line-height: 1.6rem;
  /* 114.286% */
}
.product_item .product_image_holder .badge_holder .img_badge {
  width: 51px;
  height: 52.799px;
}
.product_item .product_image_holder .badge_holder .img_badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 575px) {
  .product_item .product_image_holder .badge_holder .img_badge {
    width: 40px;
    height: 41px;
  }
}
.product_item .product_description {
  display: flex;
  padding: 15px 0 30px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  align-self: stretch;
}
.product_item .product_description .product_name {
  color: var(--colors-black, #383333);
  font-size: var(--h5);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.product_item .product_description .price_block {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  align-self: stretch;
}
@media (max-width: 767px) {
  .product_item .product_description .price_block {
    justify-content: center;
  }
}
.product_item .product_description .price_block .new_price {
  color: var(--colors-red, #DF363C);
  font-size: var(--f22);
  font-style: normal;
  font-weight: 700;
}
.product_item .product_description .price_block .old_price {
  color: var(--colors-gray_text, #666);
  font-size: var(--f16);
  font-style: normal;
  font-weight: 400;
  text-decoration-line: line-through;
}
.product_item:hover .product_image_holder {
  box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.2s cubic-bezier(0.12, 0, 0.39, 0);
  -moz-transition: 0.2s cubic-bezier(0.12, 0, 0.39, 0);
  -ms-transition: 0.2s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.2s cubic-bezier(0.12, 0, 0.39, 0);
}
.product_item:hover .product_image_holder .product_image {
  transform: translateY(-2px);
}

p.info_text {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  background: rgba(255, 78, 0, 0.168627451);
  padding: 5px;
  gap: 5px;
  border-radius: 10px;
  margin: 5px 0;
  line-height: 1.6;
}

p.info_text svg {
  width: 20px;
}

@media (max-width: 768px) {
  p.info_text {
    align-items: center;
    font-size: 12px;
    line-height: 1.3;
  }
  p.info_text svg {
    width: 28px;
  }
}
.breadcrumb_section {
  display: flex;
  padding: var(--numbers-paddings-section_padding_default, 60px) var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-section_x_paddings, 15px);
  padding-top: calc(var(--numbers-paddings-section_padding_default, 60px) - 20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--colors-white, #FFF);
}
@media (max-width: 767px) {
  .breadcrumb_section {
    padding: 15px var(--numbers-paddings-section_x_paddings, 15px);
  }
}
.breadcrumb_section .breadcrumb_wrapper {
  width: 100%;
}
.breadcrumb_section .breadcrumb_list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb_section .breadcrumb_list.breadcrumb_list__centered {
  justify-content: center;
}
.breadcrumb_section .breadcrumb_list.breadcrumb_list__left {
  justify-content: flex-start;
}
.breadcrumb_section .breadcrumb_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--f14);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.breadcrumb_section .breadcrumb_item:not(:last-child)::after {
  content: "/";
  color: var(--colors-gray_text, #666);
  margin-left: 8px;
}
.breadcrumb_section .breadcrumb_item--active .breadcrumb_text {
  color: var(--colors-red, #DF363C);
  font-weight: 500;
}
.breadcrumb_section .breadcrumb_link {
  color: var(--colors-gray_text, #666);
  text-decoration: none;
  transition: all 0.3s ease;
}
.breadcrumb_section .breadcrumb_link:hover {
  color: var(--colors-red, #DF363C);
  text-decoration: underline;
}
.breadcrumb_section .breadcrumb_text {
  color: var(--colors-gray_text, #666);
}

/**************************\
  Basic Modal Styles
\**************************/
.modal {
  font-family: inherit;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 0px;
  max-width: 100vw;
  height: auto;
  width: 100vw;
  height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
.modal__container.full_height {
  max-height: 100vh;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
  color: #667085;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(15%);
  }
}
.micromodal-slide {
  display: none;
  position: relative;
  z-index: 15;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/**************************\
  Registration Modal Styles
\**************************/
.modal-registration {
  max-width: 400px;
  width: 90%;
  height: auto;
  padding: 24px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .modal-registration {
    padding: 30px 20px;
  }
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease;
}
.modal__close:hover {
  color: #000;
}
.modal__close:before {
  font-size: 24px;
}

.users_icon {
  margin: 0 auto 20px;
  display: flex;
  width: 48px;
  height: 48px;
  padding: 12px;
  justify-content: center;
  align-items: center;
  fill: var(--colors-black, #383333);
  border-radius: var(--numbers-border_radius-br_input, 8px);
  background: var(--colors-product_bg, #F8F8F8);
}
.users_icon svg {
  width: 24px;
  height: 24px;
}

.modal__header {
  text-align: center;
  margin-bottom: 30px;
  flex-direction: column;
}
.modal__header .icon {
  margin-bottom: 16px;
}

.modal__title {
  margin: 0 0 10px;
  color: var(--colors-black, #383333);
  text-align: center;
  font-size: var(--v18, 1.8rem);
  font-weight: 700;
}

.modal__subtitle {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.modal__content {
  margin-top: 0;
  margin-bottom: 0;
}

.modal__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .modal__footer {
    flex-direction: column-reverse;
  }
}

.modal__btn[data-micromodal-close] * {
  pointer-events: none;
}

.title_section {
  display: flex;
  padding: 0 var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-half_of_section_padding, 30px) var(--numbers-paddings-section_x_paddings, 15px);
}
@media (max-width: 767px) {
  .title_section {
    padding-bottom: var(--numbers-paddings-section_x_paddings, 15px);
  }
}

.title_component_wrapper {
  display: flex;
  justify-content: center;
}
.title_component_wrapper.title_component__center {
  justify-content: center;
}
.title_component_wrapper.title_component__left {
  justify-content: flex-start;
}
.title_component_wrapper .title_component {
  display: flex;
  max-width: 900px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.title_component_wrapper .title_component .subtitle {
  color: var(--colors-black, #383333);
  text-align: center;
  font-size: var(--f16);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 100%;
  max-width: 623px;
  /* 2.4rem */
}
.title_component_wrapper .title_component .subtitle:empty {
  display: none;
}
.title_component_wrapper .title_component.__center {
  text-align: center;
}
.title_component_wrapper .title_component.__center .title_component__title {
  text-transform: uppercase;
  width: 100%;
  display: inline-block;
}
.title_component_wrapper .title_component p {
  text-align: center;
}

.title_with_link {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--colors-light-gray, #E0E0E0);
}
@media (max-width: 767px) {
  .title_with_link {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--colors-red, #FF0000);
  }
}
.title_with_link .title_heading {
  color: var(--colors-black, #383333);
  font-size: var(--h4);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  padding-bottom: 16px;
  position: relative;
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}
@media (max-width: 767px) {
  .title_with_link .title_heading {
    padding-bottom: 0px;
  }
}
.title_with_link .title_heading:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--colors-red, #FF0000);
  transition: height 0.6s ease;
}
@media (max-width: 767px) {
  .title_with_link .title_heading:before {
    height: 0px;
  }
}
.title_with_link .title_link_holder {
  display: flex;
  align-items: center;
  gap: 6px;
}
.title_with_link .title_link_holder .title_link__text {
  color: var(--heading, #222);
  text-align: right;
  font-size: var(--f16);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 2.4rem */
}
.title_with_link .title_link_holder .right_icon {
  transform: rotate(-90deg);
  color: var(--colors-red);
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}
.title_with_link .title_link_holder:hover .right_icon {
  transform: translateX(3px) rotate(-90deg);
}

.lang_switcher {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.lang_switcher .lang_dropdown {
  display: flex;
  flex-direction: column;
  position: relative;
}
.lang_switcher .lang_dropdown .lang_dropdown_trigger {
  display: flex;
  padding: 10px 8px 10px 10px;
  align-items: center;
  gap: 6px;
  border-radius: var(--numbers-border_radius-br_input, 8px);
  border: 1px solid var(--colors-border_color, #DFDFDF);
  color: var(--colors-black, #383333);
  font-size: var(--f14);
  font-weight: 400;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.lang_switcher .lang_dropdown .lang_dropdown_trigger .lang_title {
  text-transform: uppercase;
}
.lang_switcher .lang_dropdown .lang_dropdown_trigger .lang_dropdown_icon {
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
}
.lang_switcher .lang_dropdown .lang_dropdown_menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: var(--colors-white, #FFF);
  border: 1px solid var(--colors-border_color, #DFDFDF);
  border-radius: var(--numbers-border_radius-br_input, 8px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.lang_switcher .lang_dropdown .lang_dropdown_menu .lang_dropdown_item {
  display: flex;
  padding: 10px;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  color: var(--colors-black, #383333);
  font-size: var(--f14);
}
.lang_switcher .lang_dropdown .lang_dropdown_menu .lang_dropdown_item:hover {
  background-color: #f5f5f5;
}
.lang_switcher .lang_dropdown .lang_dropdown_menu .lang_dropdown_item .lang_title {
  text-transform: uppercase;
}
.lang_switcher .lang_dropdown.open .lang_dropdown_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search_component {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.search_component .search_category {
  display: flex;
  width: auto;
  align-items: center;
  transition: all 0.2s ease;
}
.search_component .search_category .search_dropdown {
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 135px;
  transition: all 0.2s ease;
}
.search_component .search_category .search_dropdown .search_dropdown_trigger {
  display: flex;
  gap: 10px;
  padding: 15px 16px;
  height: var(--input_height);
  justify-content: space-between;
  align-items: center;
  border-radius: var(--numbers-border_radius-br_input, 8px);
  border: 1px solid #E9E9E9;
  background: var(--colors-white, #FFF);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}
.search_component .search_category .search_dropdown .search_dropdown_trigger .search_title {
  color: var(--colors-text, #666);
  text-align: right;
  font-size: var(--f14, 1.4rem);
}
.search_component .search_category .search_dropdown .search_dropdown_trigger .search_dropdown_icon {
  color: var(--colors-red, #DF363C);
}
.search_component .search_category .search_dropdown .search_dropdown_menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: var(--colors-white, #FFF);
  border: 1px solid #E9E9E9;
  border-radius: var(--numbers-border_radius-br_input, 8px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.search_component .search_category .search_dropdown .search_dropdown_menu .search_dropdown_item {
  display: flex;
  padding: 15px 16px;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}
.search_component .search_category .search_dropdown .search_dropdown_menu .search_dropdown_item:hover {
  background-color: #f5f5f5;
}
.search_component .search_category .search_dropdown .search_dropdown_menu .search_dropdown_item .search_title {
  color: var(--colors-text, #666);
  font-size: var(--f14, 1.4rem);
}
.search_component .search_category .search_dropdown.open .search_dropdown_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search_component .search_container {
  display: flex;
  height: var(--input_height);
  gap: 10px;
  width: calc(100% - 30px);
  min-width: 340px;
  max-width: 400px;
  padding: 15px 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--numbers-border_radius-br_input, 8px);
  border: 1px solid #E9E9E9;
  position: relative;
}
.search_component .search_container input {
  width: 100%;
  border: none;
  outline: none;
  font-size: var(--f14);
  color: var(--colors-black, #666);
}
.search_component .search_container input::placeholder {
  color: var(--colors-input_text, #666);
}
.search_component .search_container .search_button svg {
  color: var(--colors-red);
}
.search_component .search_container .search_clear {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.search_component .search_container .search_clear:hover {
  background-color: #f5f5f5;
}
.search_component .search_container .search_clear svg {
  color: var(--colors-text, #666);
  transition: color 0.2s ease;
}
.search_component .search_container .search_clear:hover svg {
  color: var(--colors-red, #DF363C);
}
.search_component .search_container .search_results {
  display: flex;
  width: 100%;
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: absolute;
  z-index: 100;
  left: 0;
  top: calc(100% + 5px);
  border-radius: var(--numbers-border_radius-br_input, 8px);
  border: 1px solid var(--colors-border_color, #DFDFDF);
  background: var(--colors-white, #FFF);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 300px;
  overflow: auto;
}
.search_component .search_container .search_results[data-opened=true] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search_component .search_container .search_results .search_element {
  display: flex;
  padding: 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: var(--numbers-border_radius-br_input, 8px);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.search_component .search_container .search_results .search_element:hover {
  background: var(--colors-nav_color, #F9FBFB);
}
.search_component .search_container .search_results .search_element img {
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
}
.search_component .search_container .search_results .search_element .product_name {
  color: var(--colors-black, #383333);
  font-size: var(--f15);
  font-weight: 600;
  line-height: 130%;
}
.search_component .search_container .search_results .partner_element {
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 8px;
  align-self: stretch;
  border-radius: var(--numbers-border_radius-br_input, 8px);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.search_component .search_container .search_results .partner_element:hover {
  background: var(--colors-nav_color, #F9FBFB);
}
.search_component .search_container .search_results .partner_element .partner_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.search_component .search_container .search_results .partner_element .partner_header .partner_name {
  font-size: var(--f18);
  font-weight: 600;
  margin: 0;
  color: #000;
  font-weight: 700;
  line-height: 2.8rem;
}
.search_component .search_container .search_results .partner_element .partner_header .partner_distance {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--colors-text, #666);
  font-size: var(--f12);
}
.search_component .search_container .search_results .partner_element .partner_header .partner_distance svg {
  color: var(--colors-red, #DF363C);
}
.search_component .search_container .search_results .partner_element .partner_address {
  color: var(--colors-text, #666);
  font-size: var(--f13);
  margin: 0;
  line-height: 1.4;
}
.search_component .search_container .search_results .partner_element .partner_actions {
  display: flex;
  justify-content: flex-start;
  gap: 17px;
  align-items: center;
  width: 100%;
  margin-top: 4px;
}
.search_component .search_container .search_results .partner_element .partner_actions .partner_phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--colors-black, #383333);
  font-size: var(--f13);
  font-weight: 500;
}
.search_component .search_container .search_results .partner_element .partner_actions .partner_phone svg {
  color: var(--colors-text, #666);
}
.search_component .search_container .search_results .partner_element .partner_actions .partner_buttons {
  display: flex;
  gap: 8px;
}
.search_component .search_container .search_results .partner_element .partner_actions .partner_buttons .partner_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.search_component .search_container .search_results .partner_element .partner_actions .partner_buttons .partner_btn--map {
  background: #4285F4;
}
.search_component .search_container .search_results .partner_element .partner_actions .partner_buttons .partner_btn--map svg {
  color: white;
}
.search_component .search_container .search_results .partner_element .partner_actions .partner_buttons .partner_btn--map:hover {
  background: #3367d6;
}
.search_component .search_container .search_results .partner_element .partner_actions .partner_buttons .partner_btn--message {
  background: #00D9FF;
}
.search_component .search_container .search_results .partner_element .partner_actions .partner_buttons .partner_btn--message svg {
  color: white;
}
.search_component .search_container .search_results .partner_element .partner_actions .partner_buttons .partner_btn--message:hover {
  background: #00c4e6;
}

/**************************\
  Media Query Mixins
\**************************/
@media (max-width: 991px) {
  .search_component_mobile_holder {
    position: absolute;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transform: translateY(-100%);
    -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
    -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
    -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
    transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
    width: 100%;
    padding: var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-section_x_paddings, 15px) 25px var(--numbers-paddings-section_x_paddings, 15px);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-top: 1px solid var(--colors-border_color, #DFDFDF);
    background: var(--colors-white, #FFF);
  }
  .search_component_mobile_holder.active {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    transform: translateY(0);
  }
  .search_component_mobile_holder .search_component {
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
  }
  .search_component_mobile_holder .search_component .search_category_and_close_button {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .search_component_mobile_holder .search_component .search_category_and_close_button .close_search {
    display: flex;
    height: 51px;
    align-items: center;
  }
  .search_component_mobile_holder .search_component .search_category_and_close_button .close_search .close_search_inner {
    display: flex;
    padding: 15px 16px;
    align-items: center;
    gap: 10px;
    border-radius: var(--numbers-border_radius-br_input, 8px);
    border: 1px solid #E9E9E9;
    background: var(--colors-white, #FFF);
  }
  .search_component_mobile_holder .search_component .search_category_and_close_button .close_search .close_search_inner .close_search_text {
    color: var(--colors-text, #666);
    font-size: var(--f14);
    font-weight: 400;
  }
  .search_component_mobile_holder .search_component .search_category_and_close_button .close_search .close_search_inner .search_close_icon {
    color: var(--colors-red, #DF363C);
  }
  .search_component_mobile_holder .search_component .search_container {
    max-width: 100%;
  }
}
.locator_item {
  display: flex;
  padding: 20px 50px 20px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-bottom: 1px solid var(--colors-border_color, #DFDFDF);
}
.locator_item .locator_title {
  color: var(--colors-black, #383333);
}
.locator_item .locator_address {
  color: var(--colors-black, #383333);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.locator_item .locator_bottom {
  display: flex;
  padding: 5px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.locator_item .locator_bottom .contact_km {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.locator_item .locator_bottom .contact_km .km {
  display: flex;
  padding: 5px 9px;
  align-items: center;
  gap: 4px;
  border-radius: var(--numbers-border_radius-br_button, 8px);
  background: #F9F9F9;
}
.locator_item .locator_bottom .contact_km .km .location_icon {
  width: 19px;
  height: 19px;
  aspect-ratio: 1/1;
}
.locator_item .locator_bottom .contact_km .km span {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 2.1rem */
}
.locator_item .locator_bottom .contact_km .contact_phone {
  display: flex;
  padding: 5px 9px;
  align-items: center;
  gap: 4px;
  border-radius: var(--numbers-border_radius-br_button, 8px);
  background: #F9F9F9;
}
.locator_item .locator_bottom .contact_km .contact_phone .phone_icon {
  width: 19px;
  height: 19px;
  aspect-ratio: 1/1;
}
.locator_item .locator_bottom .contact_km .contact_phone .phone_icon a {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 2.1rem */
}
.locator_item .locator_bottom .locator_directions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.locator_item .locator_bottom .locator_directions .partner_btn {
  display: flex;
  padding: 7px 15px;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}
.locator_item .locator_bottom .locator_directions .partner_btn span {
  color: var(--colors-white, #FFF);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  /* 1.82rem */
}
.locator_item .locator_bottom .locator_directions .partner_btn.google {
  border-radius: var(--numbers-border_radius-br_button, 8px);
  background: #4285F4;
}
.locator_item .locator_bottom .locator_directions .partner_btn.waze {
  border-radius: var(--numbers-border_radius-br_button, 8px);
  background: #33CCFF;
}
.locator_item.locator_item__map_inner {
  padding: 0px 10px 10px 10px;
  max-width: 310px;
  gap: 6px;
}
.locator_item.locator_item__map_inner .locator_bottom .contact_km .km .location_icon, .locator_item.locator_item__map_inner .locator_bottom .contact_km .contact_phone .phone_icon, .locator_item.locator_item__map_inner .locator_bottom .locator_directions .partner_btn svg {
  width: 16px;
  height: 16px;
}
.locator_item.locator_item__map_inner .locator_bottom .contact_km .km span, .locator_item.locator_item__map_inner .locator_bottom .contact_km .contact_phone a, .locator_item.locator_item__map_inner .locator_bottom .locator_directions .partner_btn span {
  font-size: 1.2rem;
  line-height: 150%;
}

.slider_section {
  display: flex;
  padding: var(--numbers-paddings-section_x_paddings, 15px) 15px var(--numbers-paddings-section_padding_default, 60px) 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
@media (max-width: 767px) {
  .slider_section {
    padding-top: 0;
  }
}
.slider_section .slider_wrapper {
  position: relative;
}
.slider_section .big-slider {
  border-radius: var(--numbers-border_radius-br_photo, 16px);
}
.slider_section .big-slider picture {
  display: block;
}
.slider_section .big-slider picture img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: inherit;
}
@media (max-width: 767px) {
  .slider_section .big-slider picture img {
    width: 100%;
    height: auto;
    border-radius: inherit;
  }
}

.map_section {
  display: flex;
  padding: 15px var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-section_padding_default, 60px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.map_holder {
  width: 100%;
  max-width: 774px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
}
@media (max-width: 767px) {
  .map_holder {
    padding: 10px;
  }
}

.map {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
@media (max-width: 767px) {
  .map {
    min-height: 300px;
  }
}
@media (max-width: 479px) {
  .map {
    min-height: 250px;
  }
}

.map_image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
@media (max-width: 992px) {
  .map_image {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .map_image {
    max-width: 100%;
  }
}

.map_svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.map_region {
  transition: fill 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}
.map_region:hover {
  opacity: 0.9;
}
.map_region:active {
  opacity: 0.8;
}

.map_filter {
  margin-top: 24px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .map_filter {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 5px;
  }
}
.map_filter_label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.map_filter_label svg {
  color: #DF363C;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .map_filter_label {
    font-size: 14px;
  }
}
.map_filter_select {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23333' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.map_filter_select:hover {
  border-color: #DF363C;
}
.map_filter_select:focus {
  outline: none;
  border-color: #DF363C;
  box-shadow: 0 0 0 3px rgba(223, 54, 60, 0.1);
}
@media (max-width: 767px) {
  .map_filter_select {
    width: 100%;
    min-width: auto;
  }
}

.partner_list_container {
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .partner_list_container {
    margin-top: 24px;
  }
}

.partner_list_title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 24px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #DF363C;
}
@media (max-width: 767px) {
  .partner_list_title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.partner_list {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.partner_list_empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}
.partner_list_empty svg {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  color: #ddd;
}
.partner_list_empty p {
  font-size: 16px;
  margin: 0;
}

.partner_table {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .partner_table {
    box-shadow: none;
    background: transparent;
  }
}

.partner_table_header {
  display: grid;
  grid-template-columns: 93px 1.2fr 1fr 1.5fr 140px 140px;
  gap: 0;
  background: #f8f9fa;
  border-bottom: 2px solid #e0e0e0;
}
@media (max-width: 991px) {
  .partner_table_header {
    grid-template-columns: 93px 1.2fr 1fr 1fr 1fr;
  }
}
.partner_table_header .partner_table_cell {
  font-weight: 700;
}
@media (max-width: 767px) {
  .partner_table_header {
    display: none;
  }
}

.partner_table_body {
  display: flex;
  flex-direction: column;
}

.partner_table_row {
  display: grid;
  grid-template-columns: 93px 1.2fr 1fr 1.5fr 140px 140px;
  gap: 0;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s ease;
  position: relative;
}
@media (max-width: 991px) {
  .partner_table_row {
    grid-template-columns: 93px 1.2fr 1fr 1fr 1fr;
  }
}
.partner_table_row:last-child {
  border-bottom: none;
}
.partner_table_row:hover {
  background-color: #f8f9fa;
}
@media (max-width: 767px) {
  .partner_table_row {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  .partner_table_row:hover {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
}

.partner_table_cell {
  padding: 16px;
  font-size: 14px;
  color: #333;
  border-right: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  word-break: break-word;
}
.partner_table_cell:last-child {
  border-right: none;
}
.partner_table_cell.header_cell {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--colors-black);
  padding: 14px 16px;
  line-height: 1.2;
}
.partner_table_cell.cell_number {
  justify-content: center;
  color: var(--colors-black);
}
@media (max-width: 991px) {
  .partner_table_cell.cell_number {
    display: none;
  }
}
@media (max-width: 767px) {
  .partner_table_cell.cell_number {
    display: flex;
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: #DF363C;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
  }
}
.partner_table_cell.cell_name {
  color: #333;
}
@media (max-width: 767px) {
  .partner_table_cell.cell_name {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.partner_table_cell.cell_phone a {
  color: #DF363C;
  text-decoration: none;
  transition: color 0.2s ease;
}
.partner_table_cell.cell_phone a:hover {
  color: #b82a2f;
  text-decoration: underline;
}
.partner_table_cell.cell_address {
  color: var(--colors-black);
  line-height: 1.5;
}
.partner_table_cell.cell_map, .partner_table_cell.cell_waze {
  justify-content: center;
  padding: 12px;
}
@media (max-width: 767px) {
  .partner_table_cell {
    border-right: none;
    padding: 8px 0;
    position: relative;
    align-items: center;
    gap: 20px;
  }
  .partner_table_cell::before {
    content: attr(data-label) ":";
    font-weight: 600;
    color: var(--colors-black);
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: -1px;
  }
  .partner_table_cell.cell_number::before {
    display: none;
  }
  .partner_table_cell.cell_map, .partner_table_cell.cell_waze {
    padding: 8px 0;
    justify-content: flex-start;
  }
  .partner_table_cell.cell_map::before, .partner_table_cell.cell_waze::before {
    margin-bottom: 3px;
    white-space: nowrap;
  }
}
@media (max-width: 479px) {
  .partner_table_cell {
    padding: 10px 0;
    gap: 7px;
    flex-direction: column;
  }
}

.map_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  max-width: 120px;
}
.map_button.google_map_btn {
  background: #4285F4;
  color: #fff;
}
.map_button.google_map_btn:hover {
  background: #3367D6;
  box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}
.map_button.waze_map_btn {
  background: #33CCFF;
  color: #fff;
}
.map_button.waze_map_btn:hover {
  background: #00B8E6;
  box-shadow: 0 2px 8px rgba(51, 204, 255, 0.3);
}
@media (max-width: 767px) {
  .map_button {
    max-width: 100%;
  }
}

.map_tooltip {
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  pointer-events: none;
  z-index: 9999;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.map_tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid rgba(0, 0, 0, 0.85);
}

.partner_modal {
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  animation: fadeIn 0.3s ease;
}
.partner_modal.active {
  display: flex;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.partner_modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
.partner_modal_content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 1200px;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px 24px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 1;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.partner_modal_content {
  z-index: 1;
}
@media (max-width: 767px) {
  .partner_modal_content {
    padding: 24px 16px 16px;
  }
}
.partner_modal_close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner_modal_close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #DF363C;
}
.partner_modal_close svg {
  width: 24px;
  height: 24px;
}
.partner_modal_title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px 0;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .partner_modal_title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.partner_modal_empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--colors-black);
  font-size: 16px;
}

@media (max-width: 767px) {
  .partner_modal_table {
    border: none;
  }
}
@media (max-width: 767px) {
  .partner_modal_table .partner_table_row {
    margin-bottom: 12px;
  }
  .partner_modal_table .partner_table_row:last-child {
    margin-bottom: 0;
  }
}

.index_section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--colors-red);
  height: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}
.index_section .list_holder,
.index_section .content_holder {
  max-width: 600px;
  height: 400px;
  background-color: var(--colors-white);
  border-radius: var(--numbers-border_radius-br_photo);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 10px;
}
.index_section .list_holder .wrapper,
.index_section .content_holder .wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.index_section .list_holder .wrapper ul,
.index_section .content_holder .wrapper ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  flex-wrap: wrap;
}
.index_section .list_holder .wrapper ul li,
.index_section .content_holder .wrapper ul li {
  margin: 5px 5px;
  flex: 1 1 calc(50% - 10px);
  background-color: var(--colors-input_border);
  border-radius: var(--numbers-border_radius-br_input);
  font-size: var(--body1);
  color: var(--colors-black);
}
.index_section .list_holder .wrapper ul li a,
.index_section .content_holder .wrapper ul li a {
  padding: 15px 10px;
  text-decoration: none;
  color: inherit;
  display: inline-block;
  width: 100%;
  font-size: var(--h4);
}

.about_us_section {
  display: flex;
  padding: 0 var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-section_padding_default, 60px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
@media (max-width: 767px) {
  .about_us_section {
    padding-top: 30px;
  }
}
@media (max-width: 575px) {
  .about_us_section {
    padding-bottom: var(--numbers-paddings-section_x_paddings, 15px);
  }
}
.about_us_section .about_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.about_us_section .about_wrapper .title_component_wrapper .title_component {
  gap: 20px;
}
.about_us_section .about_wrapper .title_component_wrapper .title_component .subtitle {
  max-width: 100%;
}
.about_us_section .about_wrapper .image_inner_section {
  display: flex;
  padding-top: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.about_us_section .about_wrapper .image_inner_section .image_row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  gap: 10px;
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 0 10px;
  position: relative;
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block:hover svg {
  opacity: 1;
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block:hover svg path {
  fill-opacity: 0.9;
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block:first-child:hover img {
  transform: translateX(-5px) translateY(-5px);
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block:nth-child(2):hover img {
  transform: translateY(-5px);
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block:last-child {
  padding: 10px 10px 0 0;
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block:last-child:hover img {
  transform: translateX(5px) translateY(-5px);
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block__center {
  margin-top: 70px;
  padding: 0;
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: calc(var(--numbers-border-radius-default, 8px) * 2);
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block svg {
  position: absolute;
  top: 0;
  z-index: 0;
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 77%;
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block svg path {
  fill-opacity: 0.7;
  transition: all 0.4s ease;
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block svg.left_elem {
  left: 0;
  right: unset;
}
.about_us_section .about_wrapper .image_inner_section .image_row .image_block svg.right_elem {
  left: unset;
  right: 0;
}
@media (max-width: 767px) {
  .about_us_section .about_wrapper .image_inner_section .image_row {
    flex-wrap: nowrap;
    overflow: scroll;
    padding-bottom: 30px;
  }
  .about_us_section .about_wrapper .image_inner_section .image_row .image_block {
    width: 350px;
    flex-shrink: 0;
    height: 100%;
  }
  .about_us_section .about_wrapper .image_inner_section .image_row .image_block img {
    height: 100%;
    object-fit: cover;
  }
  .about_us_section .about_wrapper .image_inner_section .image_row .image_block__center {
    margin-top: 0px;
    padding: 10px 10px 0 10px;
  }
}
@media (max-width: 575px) {
  .about_us_section .about_wrapper .image_inner_section .image_row {
    padding-bottom: 30px;
  }
}

.selected_products_section {
  display: flex;
  padding: var(--numbers-paddings-section_padding_default, 60px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
@media (max-width: 575px) {
  .selected_products_section {
    padding-top: var(--numbers-paddings-section_x_paddings, 15px);
  }
}
.selected_products_section .selected_products_row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.catalog_section {
  padding: 0 var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-section_padding_default, 60px) var(--numbers-paddings-section_x_paddings, 15px);
}
.catalog_section .row {
  align-items: flex-start;
  gap: 30px;
  flex-wrap: nowrap;
}
.catalog_section .row > * {
  width: auto;
}
@media (max-width: 991px) {
  .catalog_section .row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .catalog_section .row > * {
    width: 100%;
  }
}

.categorys_filter {
  flex: 0 0 260px;
  max-width: 260px;
}
@media (max-width: 991px) {
  .categorys_filter {
    display: none;
  }
}

.categorys_filter_inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.categorys_filter_title {
  color: var(--colors-black, #383333);
  font-size: var(--f16);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}

.categorys_filter_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.categorys_filter_item {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}
.categorys_filter_item.has_subitems > .categorys_filter_item_head .categorys_filter_icon {
  display: inline-flex;
}
.categorys_filter_item > .categorys_filter_link {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--colors-black, #383333);
  font-size: var(--f14);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}
.categorys_filter_item > .categorys_filter_link:hover {
  background: #f7f7f7;
}
.categorys_filter_item.is-open > .categorys_filter_item_head {
  background: #f5f5f5;
}

.categorys_filter_item_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}
.categorys_filter_item_head:hover, .categorys_filter_item_head.active {
  background: #f7f7f7;
}
.categorys_filter_item_head .categorys_filter_link {
  color: var(--colors-black, #383333);
  font-size: var(--f14);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.categorys_filter_icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}
.categorys_filter_icon .dropdown_icon {
  width: 14px;
  height: 14px;
  color: var(--colors-gray_text, #666666);
  fill: currentColor;
  -webkit-transition: 0.2s cubic-bezier(0.12, 0, 0.39, 0);
  -moz-transition: 0.2s cubic-bezier(0.12, 0, 0.39, 0);
  -ms-transition: 0.2s cubic-bezier(0.12, 0, 0.39, 0);
  transition: 0.2s cubic-bezier(0.12, 0, 0.39, 0);
}

.categorys_filter_item.has_subitems.is-open > .categorys_filter_sublist {
  opacity: 1;
  margin-top: 6px;
}
.categorys_filter_item.has_subitems.is-open > .categorys_filter_item_head .categorys_filter_icon .dropdown_icon {
  transform: rotate(180deg);
}

.categorys_filter_subitem.has_subitems.is-open > .categorys_filter_sublist {
  opacity: 1;
  margin-top: 6px;
}
.categorys_filter_subitem.has_subitems.is-open > .categorys_filter_subitem_head .categorys_filter_icon .dropdown_icon {
  transform: rotate(180deg);
}
.categorys_filter_subitem.has_subitems.is-open > .categorys_filter_subitem_head {
  background: #f5f5f5;
}
.categorys_filter_subitem.has_subitems.is-open > .categorys_filter_subitem_head .categorys_filter_sublink {
  color: var(--colors-black, #383333);
}

.categorys_filter_subitem_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 3px 10px;
  border-radius: 6px;
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}
.categorys_filter_subitem_head:hover, .categorys_filter_subitem_head.active {
  background: #f7f7f7;
}
.categorys_filter_subitem_head:hover .categorys_filter_sublink, .categorys_filter_subitem_head.active .categorys_filter_sublink {
  color: var(--colors-black, #383333);
}
.categorys_filter_subitem_head .categorys_filter_sublink {
  padding: 0;
}
.categorys_filter_subitem_head .categorys_filter_sublink:hover {
  background: transparent;
}

.categorys_filter_sublist {
  list-style: none;
  margin: 0;
  padding: 0 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
}
.categorys_filter_sublist .categorys_filter_subitem.has_subitems > .categorys_filter_subitem_head .categorys_filter_icon {
  display: inline-flex;
}

.categorys_filter_subitem .categorys_filter_sublink {
  display: block;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--colors-gray_text, #666666);
  font-size: var(--f13);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  -webkit-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -moz-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  -ms-transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
  transition: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}
.categorys_filter_subitem .categorys_filter_sublink:hover, .categorys_filter_subitem .categorys_filter_sublink.active {
  background: #f7f7f7;
  color: var(--colors-black, #383333);
}

.products_grid_holder {
  flex: 1 1 auto;
  min-width: 0;
}

.catalog_filter_trigger_holder {
  display: none;
  justify-content: center;
  padding: 10px var(--numbers-paddings-section_x_paddings, 15px) 30px;
  position: fixed;
  bottom: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .catalog_filter_trigger_holder {
    display: flex;
  }
}

.catalog_filter_trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  background: var(--colors-red, #DF363C);
  color: var(--colors-white, #fff);
  font-size: var(--f14);
  font-weight: 600;
  line-height: 140%;
  box-shadow: 0px 6px 11.5px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.catalog_filter_trigger_icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
}
.catalog_filter_trigger_icon::before, .catalog_filter_trigger_icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.catalog_filter_trigger_icon::before {
  top: 4px;
  box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
}

.catalog_filter_popup {
  display: none;
}

@media (max-width: 991px) {
  .catalog_filter_popup {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 25;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .catalog_filter_popup.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .catalog_filter_popup_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
  }
  .catalog_filter_popup_panel {
    position: absolute;
    inset: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .catalog_filter_popup.is-open .catalog_filter_popup_panel {
    transform: translateX(0);
  }
  .catalog_filter_popup_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
  }
  .catalog_filter_popup_title {
    font-size: var(--f16);
    font-weight: 700;
    color: var(--colors-black, #383333);
  }
  .catalog_filter_popup_close {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--colors-gray_text, #666666);
    font-size: 18px;
    line-height: 28px;
    cursor: pointer;
  }
  .catalog_filter_popup_body {
    padding: 12px 18px 24px;
    overflow-y: auto;
    flex: 1 1 auto;
  }
  .catalog_filter_popup .categorys_filter {
    display: block;
    flex: 1 1 auto;
    max-width: 100%;
  }
  .catalog_filter_popup .categorys_filter_title {
    display: none;
  }
}
.catalog_section .prosduct_grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1199px) {
  .catalog_section .prosduct_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.catalog_section[data-has-category-filter=false] .prosduct_grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .catalog_section[data-has-category-filter=false] .prosduct_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .catalog_section[data-has-category-filter=false] .prosduct_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.no_items_holder {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}
.no_items_holder svg {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  color: #ddd;
}
.no_items_holder p {
  font-size: 16px;
  margin: 0;
}

.contact_section {
  position: relative;
  padding: 10px var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-section_padding_default, 60px);
}
@media (max-width: 991px) {
  .contact_section {
    padding-top: 0;
  }
  .contact_section::after {
    display: none;
  }
}

.contact_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.8fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .contact_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact_grid > *:first-child {
    order: 2;
  }
  .contact_grid > *:last-child {
    order: 1;
  }
}

.contact_submit {
  width: fit-content;
}

.contact_submit_icon {
  color: currentColor;
}

.contact_info_block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 10px;
  max-width: 214px;
}

.contact_info_group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact_info_title {
  font-size: var(--f13);
  font-weight: 700;
  color: #8b8b8b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact_info_item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--colors-black, #383333);
  text-decoration: none;
  font-size: var(--f14);
}
.contact_info_item:hover .contact_info_value {
  color: var(--colors-red, #DF363C);
}
.contact_info_item:last-of-type .contact_info_value {
  font-size: var(--f16);
  text-decoration: none;
}

.contact_info_icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact_info_icon .whatsapp_icon {
  color: #4AAC73;
}

.contact_info_label {
  display: block;
  font-size: var(--f12);
  color: var(--colors-black, #383333);
  margin-bottom: 8px;
}

.contact_info_value {
  display: block;
  font-size: var(--f14);
  font-weight: 600;
  color: var(--colors-black, #383333);
  transition: color 0.2s ease;
  text-decoration: underline;
}

.contact_design_elem {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  height: 100%;
  object-fit: cover;
}

.about_banner_section_full {
  display: flex;
  padding: 0 var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
.about_banner_section_full .container_full_width .row .about_banner_holder img {
  border-radius: var(--numbers-border_radius-br_photo, 16px);
  background: lightgray 0px -194.117px/100% 147.872% no-repeat;
}

.about_section_informativ {
  display: flex;
  padding: var(--numbers-paddings-section_padding_default, 120px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--Red-linear-bg, linear-gradient(180deg, #FFF 0%, #FFFAFA 100%));
}
@media (max-width: 767px) {
  .about_section_informativ {
    padding-top: var(--numbers-paddings-section_padding_default, 15px);
    padding-bottom: var(--numbers-paddings-section_padding_x_paddings, 15px);
  }
}
.about_section_informativ .about_informativ_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
@media (max-width: 991px) {
  .about_section_informativ .about_informativ_wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
  }
}
.about_section_informativ .about_informativ_media {
  position: relative;
  flex: 0 0 46%;
  max-width: 436px;
  width: 100%;
  min-height: 420px;
  margin-left: 90px;
}
@media (max-width: 1199px) {
  .about_section_informativ .about_informativ_media {
    flex: 0 0 37%;
    padding-top: 60px;
  }
}
@media (max-width: 991px) {
  .about_section_informativ .about_informativ_media {
    max-width: 100%;
    min-height: 250px;
    flex: 0 0 auto;
    padding: 60px 90px 0 60px;
    margin-left: 30px;
  }
}
@media (max-width: 575px) {
  .about_section_informativ .about_informativ_media {
    min-height: 300px;
    padding: 15px 60px 0 30px;
  }
}
.about_section_informativ .about_section_informativ_big {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--numbers-border-radius-default, 8px) * 2.5);
  transform: rotate(4.279deg);
}
.about_section_informativ .about_section_informativ_small {
  position: absolute;
  left: -60px;
  bottom: 92px;
  width: 100%;
  max-width: 257px;
  height: auto;
  border-radius: calc(var(--numbers-border-radius-default, 8px) * 2);
  transform: rotate(-5.257deg);
}
@media (max-width: 991px) {
  .about_section_informativ .about_section_informativ_small {
    left: 0;
    bottom: -16px;
  }
}
@media (max-width: 575px) {
  .about_section_informativ .about_section_informativ_small {
    width: 50%;
    max-width: 180px;
  }
}
.about_section_informativ .about_informativ_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 60px 10px 60px 100px;
}
@media (max-width: 1199px) {
  .about_section_informativ .about_informativ_content {
    padding: 60px 10px 30px 60px;
  }
}
@media (max-width: 991px) {
  .about_section_informativ .about_informativ_content {
    padding: 0;
  }
}
.about_section_informativ .about_informativ_content p {
  color: var(--colors-black, #383333);
  line-height: 160%;
}
.about_section_informativ .about_informativ_title {
  color: var(--colors-black, #383333);
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 4px;
}
.about_section_informativ[data-orientation=right] .about_informativ_wrapper {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .about_section_informativ[data-orientation=right] .about_informativ_wrapper {
    flex-direction: column-reverse;
  }
}
.about_section_informativ[data-orientation=right] .about_informativ_media {
  margin-left: 0;
  margin-right: 90px;
}
@media (max-width: 991px) {
  .about_section_informativ[data-orientation=right] .about_informativ_media {
    margin-right: 0;
    margin-left: 0;
    padding: 60px 60px 0 90px;
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .about_section_informativ[data-orientation=right] .about_informativ_media {
    padding: 15px 60px 0 30px;
  }
}
.about_section_informativ[data-orientation=right] .about_informativ_media .about_section_informativ_big {
  transform: rotate(-4.279deg);
}
.about_section_informativ[data-orientation=right] .about_informativ_media .about_section_informativ_small {
  left: auto;
  right: -60px;
  transform: rotate(5.257deg);
}
@media (max-width: 991px) {
  .about_section_informativ[data-orientation=right] .about_informativ_media .about_section_informativ_small {
    right: auto;
    left: 0;
  }
}
.about_section_informativ[data-orientation=right] .about_informativ_content {
  padding: 60px 100px 60px 10px;
}
@media (max-width: 1199px) {
  .about_section_informativ[data-orientation=right] .about_informativ_content {
    padding: 60px 60px 30px 10px;
  }
}
@media (max-width: 991px) {
  .about_section_informativ[data-orientation=right] .about_informativ_content {
    padding: 0;
  }
}

.marquee_section {
  display: flex;
  padding: var(--numbers-paddings-section_padding_default, 60px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--colors-white, #FFF);
  overflow: hidden;
  pointer-events: none;
}
@media (max-width: 767px) {
  .marquee_section {
    padding: var(--numbers-paddings-half_of_section_padding, 30px) var(--numbers-paddings-section_x_paddings, 15px);
    padding-top: var(--numbers-paddings-section_padding_default, 60px);
  }
}
.marquee_section .marquee_section_inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  align-self: stretch;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.marquee_section .marquee_section_inner.is-paused .marquee_wrap_block {
  animation-play-state: paused;
}
.marquee_section .marquee_wrap_block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
  flex-shrink: 0;
}
.marquee_section .marquee_wrap_block h1 {
  color: var(--colors-gray_text, #666);
  /*  */
  text-align: center;
}
@media (max-width: 767px) {
  .marquee_section .marquee_wrap_block h1 {
    font-size: 3.2rem;
  }
}
.marquee_section .marquee_wrap_block .eclipce {
  width: 18.64px;
  height: 18.64px;
  border: 1px solid var(--colors-gray_text, #666);
  border-radius: 50%;
}
.marquee_section .marquee_wrap_block {
  animation: marqueeScroll 40s linear infinite;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.our_way_section {
  display: flex;
  padding: var(--numbers-paddings-section_padding_default, 80px) 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--colors-red, #DF363C);
  overflow: hidden;
}
.our_way_section .steps_holder {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.our_way_section .section_title {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}
.our_way_section .section_title .with_line {
  color: #FFF;
}
.our_way_section .section_title .with_line::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.63) 0%, rgba(255, 255, 255, 0.22) 100%);
}
.our_way_section .swiper {
  width: 100%;
  padding: 0 var(--numbers-paddings-section_x_paddings, 15px);
}
.our_way_section .swiper .swiper-wrapper {
  box-sizing: border-box;
}
.our_way_section .way_card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
  width: 100%;
  cursor: grab;
}
@media (max-width: 991px) {
  .our_way_section .way_card {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .our_way_section .way_card {
    height: 350px;
  }
}
.our_way_section .way_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.our_way_section .way_card:hover img {
  transform: scale(1.05);
}
.our_way_section .way_card .way_content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(87, 87, 87, 0.7);
  backdrop-filter: blur(5px);
  padding: 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.our_way_section .way_card .way_content p {
  color: #FFF;
  font-family: inherit;
  font-size: var(--f18);
  font-weight: 700;
  margin: 0;
  line-height: normal;
}

.all_categories_section {
  display: flex;
  padding: var(--numbers-paddings-section_padding_default, 60px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
.all_categories_section .about_informativ_title {
  padding-bottom: 30px;
}
.all_categories_section .categories_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .all_categories_section .categories_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .all_categories_section .categories_grid {
    grid-template-columns: 1fr;
  }
}
.all_categories_section .categories_grid .category_card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.all_categories_section .categories_grid .category_card.large {
  grid-column: span 2;
}
@media (max-width: 991px) {
  .all_categories_section .categories_grid .category_card.large {
    grid-column: span 1;
  }
}
.all_categories_section .categories_grid .category_card.small {
  grid-column: span 1;
}
@media (max-width: 991px) {
  .all_categories_section .categories_grid .category_card.small {
    grid-column: span 1;
  }
}
.all_categories_section .categories_grid .category_card .category_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.all_categories_section .categories_grid .category_card .category_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(0.8);
}
.all_categories_section .categories_grid .category_card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
  transition: opacity 0.3s ease;
}
.all_categories_section .categories_grid .category_card .category_content {
  position: relative;
  z-index: 3;
  padding: 20px;
  text-align: center;
  height: 202px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.all_categories_section .categories_grid .category_card .category_content .category_name {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  text-decoration: underline;
  line-height: 120%;
}
.all_categories_section .categories_grid .category_card:hover .category_bg img {
  transform: scale(1.1);
  filter: brightness(0.6);
}
.all_categories_section .categories_grid .category_card:hover .category_name::after {
  width: 60%;
  background-color: var(--colors-red, #DF363C);
  height: 3px;
}

.product_section {
  display: flex;
  padding: var(--numbers-paddings-half_of_section_padding, 30px) var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-section_padding_default, 60px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
@media (max-width: 991px) {
  .product_section {
    padding-top: 0;
    padding-bottom: var(--numbers-paddings-half_of_section_padding, 30px);
  }
}
.product_section .product_holder {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
}
@media (max-width: 991px) {
  .product_section .product_holder {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.product_section .product_holder .image_block_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 991px) {
  .product_section .product_holder .image_block_wrapper {
    flex-direction: column-reverse;
    gap: 20px;
    width: 100%;
  }
}
.product_section .product_holder .image_block_wrapper .thumbs_slider-container {
  max-width: 66px;
  width: 100%;
  height: 100%;
  max-height: 517px;
  align-self: stretch;
  overflow: hidden;
}
@media (max-width: 991px) {
  .product_section .product_holder .image_block_wrapper .thumbs_slider-container {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}
.product_section .product_holder .image_block_wrapper .thumbs_slider-container .swiper-wrapper {
  flex-direction: column;
  height: auto;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 991px) {
  .product_section .product_holder .image_block_wrapper .thumbs_slider-container .swiper-wrapper {
    flex-direction: row;
    width: 100%;
  }
}
.product_section .product_holder .image_block_wrapper .thumbs_slider-container .swiper-wrapper .thumb_wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: var(--numbers-border_radius-br_photo, 16px);
  border: 2px solid transparent;
  cursor: pointer;
}
@media (max-width: 991px) {
  .product_section .product_holder .image_block_wrapper .thumbs_slider-container .swiper-wrapper .thumb_wrapper {
    width: auto;
    height: 80px;
    width: 80px;
  }
}
.product_section .product_holder .image_block_wrapper .thumbs_slider-container .swiper-wrapper .thumb_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_section .product_holder .image_block_wrapper .thumbs_slider-container .swiper-wrapper .thumb_wrapper.is-active {
  border: 2px solid var(--colors-red, #DF363C);
  border-radius: var(--numbers-border_radius-br_photo, 16px);
}
.product_section .product_holder .image_block_wrapper .thumbs_slider-container .swiper-slide {
  height: auto;
}
.product_section .product_holder .image_block_wrapper .image_block {
  width: 100%;
}
.product_section .product_holder .image_block_wrapper .image_block .product_image_holder {
  position: relative;
  border-radius: var(--numbers-border_radius-br_photo, 16px);
  background: var(--colors-product_bg, #F8F8F8);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product_section .product_holder .image_block_wrapper .image_block .product_image_holder .product_image {
  width: 100%;
  max-width: 437px;
  height: 100%;
  max-height: 437px;
  object-fit: contain;
}
.product_section .product_holder .image_block_wrapper .image_block .product_image_holder .badge_holder {
  position: absolute;
  top: 0px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.product_section .product_holder .image_block_wrapper .image_block .product_image_holder .badge_holder .text_badge {
  display: flex;
  padding: 7px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 0 16px;
  background: var(--colors-red, #DF363C);
  color: var(--colors-white, #FFF);
  text-align: center;
  font-size: var(--f14);
  font-style: normal;
  font-weight: 600;
  line-height: 1.6rem;
  /* 114.286% */
}
@media (max-width: 575px) {
  .product_section .product_holder .image_block_wrapper .image_block .product_image_holder .badge_holder .text_badge {
    font-size: var(--f12);
    padding: 5px 13px;
  }
}
.product_section .product_holder .image_block_wrapper .image_block .product_image_holder .badge_holder .img_badge {
  width: 51px;
  height: 52.799px;
}
.product_section .product_holder .image_block_wrapper .image_block .product_image_holder .badge_holder .img_badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 575px) {
  .product_section .product_holder .image_block_wrapper .image_block .product_image_holder .badge_holder .img_badge {
    width: 40px;
    height: 41px;
  }
}
.product_section .product_holder .product_information_block {
  display: flex;
  padding-left: var(--numbers-paddings-half_of_section_padding, 30px);
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  max-width: 511px;
  width: 100%;
}
@media (max-width: 991px) {
  .product_section .product_holder .product_information_block {
    padding-left: 0;
    align-items: center;
    max-width: 100%;
  }
}
.product_section .product_holder .product_information_block .breadcrumb_section {
  padding-left: 0;
  padding-bottom: 0;
}
.product_section .product_holder .product_information_block .product_title {
  width: 100%;
  text-align: left;
}
.product_section .product_holder .product_information_block .line {
  margin: 10px 0;
}
.product_section .product_holder .product_information_block .price_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
.product_section .product_holder .product_information_block .price_block .price_holder {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex: 1 0 0;
}
.product_section .product_holder .product_information_block .price_block .price_holder .new_price {
  color: var(--colors-red, #DF363C);
  font-size: 3.0188rem;
  font-weight: 700;
  line-height: 2.7563rem;
  /* 91.304% */
}
.product_section .product_holder .product_information_block .price_block .price_holder .new_price span {
  font-size: 2.2313rem;
}
.product_section .product_holder .product_information_block .price_block .price_holder .old_price {
  font-size: 1.8375rem;
  line-height: 2.3rem;
  color: var(--colors-gray_text, #666);
  font-weight: 400;
  text-decoration-line: line-through;
}
.product_section .product_holder .product_information_block .slide_to_map_button {
  width: 100%;
}
.product_section .product_holder .product_information_block .slide_to_map_button .button_holder {
  width: 100%;
}
.product_section .product_holder .product_information_block .slide_to_map_button .button_holder .btn {
  width: 100%;
}
.product_section .product_holder .product_information_block .slide_to_map_button .button_holder .btn .btn_holder {
  background-position: center;
}
.product_section .product_holder .product_information_block .slide_to_map_button .button_holder .btn .btn_icon svg {
  margin-bottom: -2px;
}
.product_section .product_holder .product_information_block .product_description {
  display: flex;
  padding-top: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  flex: 1 0 0;
  align-self: stretch;
}
.product_section .product_holder .product_information_block .product_description .text_editor p {
  margin-bottom: 20px;
}

.product_inner_map_section {
  display: flex;
  padding: 0 var(--numbers-paddings-section_x_paddings, 15px) var(--numbers-paddings-section_padding_default, 60px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
@media (max-width: 991px) {
  .product_inner_map_section {
    padding-bottom: var(--numbers-paddings-half_of_section_padding, 30px);
  }
}
.product_inner_map_section .product_inner_map_holder {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  border-radius: var(--numbers-border_radius-br_photo, 16px);
  border: 1px solid var(--colors-border_color, #DFDFDF);
}
@media (max-width: 991px) {
  .product_inner_map_section .product_inner_map_holder {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder {
  display: flex;
  max-width: 403px;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .product_inner_map_section .product_inner_map_holder .locator_list_holder {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner {
    width: 100%;
  }
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner {
  overflow: auto;
  max-height: 483px;
  width: 100%;
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item {
  display: flex;
  padding: 20px 50px 20px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-bottom: 1px solid var(--colors-border_color, #DFDFDF);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item:hover, .product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item.active {
  background: var(--colors-light_gray_bg, #F5F5F5);
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_title {
  color: var(--colors-black, #383333);
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_address {
  color: var(--colors-black, #383333);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom {
  display: flex;
  padding: 5px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom .contact_km {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom .contact_km .km {
  display: flex;
  padding: 5px 9px;
  align-items: center;
  gap: 4px;
  border-radius: var(--numbers-border_radius-br_button, 8px);
  background: #F9F9F9;
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom .contact_km .km .location_icon {
  width: 19px;
  height: 19px;
  aspect-ratio: 1/1;
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom .contact_km .km span {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 2.1rem */
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom .contact_km .contact_phone {
  display: flex;
  padding: 5px 9px;
  align-items: center;
  gap: 4px;
  border-radius: var(--numbers-border_radius-br_button, 8px);
  background: #F9F9F9;
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom .contact_km .contact_phone .phone_icon {
  width: 19px;
  height: 19px;
  aspect-ratio: 1/1;
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom .contact_km .contact_phone .phone_icon a {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 2.1rem */
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom .locator_directions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom .locator_directions .partner_btn {
  display: flex;
  padding: 7px 15px;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom .locator_directions .partner_btn span {
  color: var(--colors-white, #FFF);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  /* 1.82rem */
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom .locator_directions .partner_btn.google {
  border-radius: var(--numbers-border_radius-br_button, 8px);
  background: #4285F4;
}
.product_inner_map_section .product_inner_map_holder .locator_list_holder .locator_list_inner .locator_item .locator_bottom .locator_directions .partner_btn.waze {
  border-radius: var(--numbers-border_radius-br_button, 8px);
  background: #33CCFF;
}
.product_inner_map_section .product_inner_map_holder .product_map_holder {
  width: 100%;
  flex: 1;
  position: relative;
  min-height: 483px;
  /* Match max-height of locator list */
}
@media (max-width: 991px) {
  .product_inner_map_section .product_inner_map_holder .product_map_holder {
    height: 300px;
    min-height: 300px;
  }
}
.product_inner_map_section .product_inner_map_holder .product_map_holder #product_map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 16px 16px 0;
}
@media (max-width: 991px) {
  .product_inner_map_section .product_inner_map_holder .product_map_holder #product_map {
    border-radius: 0 0 16px 16px;
    position: relative;
  }
}

.similar_products_section {
  display: flex;
  padding: var(--numbers-paddings-section_padding_default, 60px) var(--numbers-paddings-section_x_paddings, 15px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}
@media (max-width: 991px) {
  .similar_products_section {
    padding-top: var(--numbers-paddings-half_of_section_padding, 30px);
  }
}
@media (max-width: 575px) {
  .similar_products_section {
    padding-top: var(--numbers-paddings-section_x_paddings, 15px);
    padding-bottom: var(--numbers-paddings-section_x_paddings, 15px);
  }
}
.similar_products_section .similar_products_row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
.similar_products_section .similar_products_row .product_slider {
  max-width: 100%;
  width: 100%;
}

[data-template="404"] {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(223, 54, 60, 0.12), transparent 60%), radial-gradient(900px 500px at 90% 20%, rgba(56, 51, 51, 0.08), transparent 60%), linear-gradient(180deg, #fff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.error-404 {
  padding: 110px 15px 140px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .error-404 {
    padding: 90px 15px 110px;
  }
}
@media (max-width: 767px) {
  .error-404 {
    padding: 70px 15px 90px;
  }
}

.error-404__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 50px;
  align-items: center;
}
@media (max-width: 991px) {
  .error-404__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.error-404__content {
  padding: 40px 42px;
  border-radius: 22px;
  border: 1px solid rgba(223, 223, 223, 0.7);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}
@media (max-width: 767px) {
  .error-404__content {
    padding: 32px 26px;
  }
}

.error-404__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--f12);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--colors-gray_text, #666666);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(223, 54, 60, 0.08);
  margin-bottom: 18px;
}

.error-404__title {
  font-size: clamp(3.2rem, 4vw, 5.6rem);
  margin-bottom: 12px;
  color: var(--colors-black, #383333);
}

.error-404__text {
  font-size: var(--f16);
  color: var(--colors-text, #666666);
  line-height: 1.6;
  max-width: 520px;
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.error-404__meta {
  margin-top: 18px;
}

.error-404__link {
  font-size: var(--f14);
  color: var(--colors-red, #df363c);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}
.error-404__link:hover {
  color: #c42e33;
}

.error-404__art {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(223, 54, 60, 0.12), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(223, 223, 223, 0.7);
  overflow: hidden;
}

.error-404__ring {
  position: absolute;
  top: 12%;
  right: 12%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px dashed rgba(223, 54, 60, 0.4);
  animation: error404-rotate 18s linear infinite;
}

.error-404__orb {
  position: absolute;
  bottom: 14%;
  left: 10%;
  width: 140px;
  height: 140px;
  border-radius: 150px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, rgba(223, 54, 60, 0.2) 70%);
  box-shadow: 0 20px 40px rgba(223, 54, 60, 0.2);
  animation: error404-float 6s ease-in-out infinite;
}

.error-404__gridline {
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  background-image: linear-gradient(90deg, rgba(56, 51, 51, 0.06) 1px, transparent 1px), linear-gradient(180deg, rgba(56, 51, 51, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  mix-blend-mode: multiply;
  animation: error404-shift 12s ease-in-out infinite;
}

@keyframes error404-float {
  0%, 100% {
    transform: translateY(0px) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}
@keyframes error404-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes error404-shift {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .error-404__ring,
  .error-404__orb,
  .error-404__gridline {
    animation: none;
  }
}/*# sourceMappingURL=style.css.map */