@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto/Roboto-VariableFont_wdth,wght.woff2") format("woff2"), url("/assets/fonts/Roboto/Roboto-VariableFont_wdth,wght.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto/Roboto-Italic-VariableFont_wdth,wght.woff2") format("woff2"), url("/assets/fonts/Roboto/Roboto-Italic-VariableFont_wdth,wght.woff") format("woff");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
.f-e, .f-s, .f-c, .f-b, .f-a {
  display: flex;
}

.f-a {
  justify-content: space-around;
}

.f-b {
  justify-content: space-between;
}

.f-c {
  justify-content: center;
}

.f-s {
  justify-content: flex-start;
}

.f-e {
  justify-content: flex-end;
}

.f-w {
  flex-wrap: wrap;
}

.f-dr {
  flex-direction: column;
}

.f-ai {
  align-items: center;
}

.btn {
  padding: 16px 24px;
  text-decoration: none;
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  border: 2px solid transparent;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.4s;
}
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 0px 0px rgba(0, 0, 0, 0.2);
  color: white;
}
.btn:hover::before {
  left: 100%;
}

@media (max-width: 780px) {
  .btn {
    padding: 14px 14px;
  }
}
.btn-main {
  background: #df2624;
  color: #ffffff;
}
.btn-main::before {
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.btn-white {
  background: #ffffff;
  color: #000000;
}
.btn-white::before {
  background: linear-gradient(120deg, transparent, rgba(0, 0, 0, 0.2), transparent);
}
.btn-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 0px 0px rgba(0, 0, 0, 0.2);
  color: black;
}

.btn-black {
  background: #000000;
  color: #ffffff;
}
.btn-black::before {
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.btn-red {
  background: #df2624;
  display: inline-flex;
  color: #ffffff;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 50px;
  box-sizing: border-box;
  transition: 0.2s;
}
.btn-red::before {
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.btn-red:hover {
  background: transparent;
  color: #df2624;
  border: 1px solid #df2624;
}

.btn-border {
  background: transparent;
  display: inline-flex;
  color: #df2624;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #df2624;
  border-radius: 50px;
  box-sizing: border-box;
  transition: 0.2s;
}
.btn-border::before {
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.btn-border:hover {
  background: #df2624;
  color: #ffffff;
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-out-bck {
  0% {
    transform: translateZ(0);
    opacity: 1;
  }
  100% {
    transform: translateZ(-80px);
    opacity: 0;
  }
}
@keyframes fade-in-top {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-style: normal;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: black;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
  color: #727271;
}
a:hover {
  color: black;
}

h1 {
  font-size: 40px;
  font-weight: 700;
}

h2 {
  font-size: 30px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 700;
}

h4 {
  font-size: 16px;
  font-weight: 700;
}

h5 {
  font-size: 14px;
  font-weight: 700;
}

h6 {
  font-size: 12px;
  font-weight: 700;
}

button {
  font-size: 16px;
  background: none;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.selector_input input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.selector_input label {
  position: relative;
  padding-left: 30px;
  font-weight: 300;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.selector_input label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  box-sizing: border-box;
}
.selector_input label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.selector_input input[type=checkbox]:checked + label::before {
  background: #df2624;
  border-color: #df2624;
}

.selector_input input[type=checkbox]:checked + label::after {
  border-left-color: white;
  border-bottom-color: white;
  opacity: 1;
}

.selector_input input[type=checkbox]:focus + label::before {
  outline: 2px solid #df2624;
  outline-offset: 2px;
}

@media (max-width: 1280px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 21px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 14px;
  }
  h6 {
    font-size: 12px;
  }
}
@media (max-width: 780px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 21px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 14px;
  }
  h6 {
    font-size: 12px;
  }
}
.container {
  margin: 0 auto;
  max-width: 1480px;
  padding: 0 20px;
}

.section_title {
  margin-bottom: 30px;
}
.section_title h2 {
  font-size: 40px;
  margin: 15px 0;
}
.section_title .section_title_lable {
  font-size: 16px;
  font-weight: 400;
  color: #727271;
  display: block;
}

.main_section {
  padding-top: 80px;
  position: relative;
}
.main_section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/assets/img/decor_max.svg) center no-repeat;
  z-index: -1;
  opacity: 0.4;
}

@media (max-width: 1480px) {
  body {
    font-size: 15px;
  }
  button {
    font-size: 15px;
  }
}
@media (max-width: 1280px) {
  .main_section {
    padding-top: 60px;
  }
  .section_title h2 {
    font-size: 36px;
    margin: 15px 0;
  }
}
@media (max-width: 780px) {
  .main_section {
    padding-top: 40px;
  }
  .section_title h2 {
    font-size: 30px;
    margin: 15px 0;
  }
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
  z-index: 8;
}

.header_scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}
.header_scrolled .header_main {
  background: white;
  border-radius: 50px;
  box-shadow: 0px 0 0px 10px white, 0px 2px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  bottom: -5px;
  border: 5px solid white;
  border-left: 10px solid white;
  border-right: 10px solid white;
  animation: fade-in-top 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.header_scrolled .header_logo {
  width: 260px;
  display: flex;
}
.header_scrolled .header_logo .header_logo_city {
  display: none;
}

.header_main {
  gap: 0 24px;
  margin-top: 8px;
  transition: 0.2s;
}

.header_left {
  gap: 24px;
}

.header_logo {
  width: 300px;
  transition: 0.2s;
}
.header_logo img {
  width: 100%;
}
.header_logo:hover {
  filter: brightness(1.4);
}

.header_logo_city {
  align-items: center;
  padding-left: 0;
  color: #df2624;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}

.header_nav {
  gap: 15px;
  min-width: 0;
  position: relative;
}
.header_nav nav {
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 15px;
  flex-shrink: 0;
}

.nav_link {
  text-transform: uppercase;
  font-weight: 500;
  color: black;
  display: inline-block;
  transition: 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
}
.nav_link:hover {
  color: #df2624;
}

.secondary_menu {
  display: none;
  position: absolute;
  margin: 0;
  top: 0px;
  z-index: 1;
  animation: fade-in-bottom 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.secondary_menu .secondary_menu_inner {
  width: 100%;
  background: white;
  padding: 20px 20px;
  border-radius: 6px;
  list-style: none;
  position: relative;
  top: 20px;
  min-width: 160px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  border: none;
}
.secondary_menu .secondary_menu_inner::before {
  position: absolute;
  top: -10px;
  left: 20px;
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -0.125em;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath fill='%23fff' d='M4.659 28.167h30.682L20 7.833z'/%3E%3C/svg%3E");
}
.secondary_menu a {
  display: block;
  text-transform: none;
  padding: 5px 5px;
  margin: 5px 0;
  font-weight: 400;
  color: #727271;
  transition: 0.2s;
  border-radius: 3px;
}
.secondary_menu a:hover {
  color: black;
}
.secondary_menu.open {
  display: block;
}
.secondary_menu.bottom {
  top: auto;
  bottom: 0;
}
.secondary_menu.bottom ul {
  top: auto;
  bottom: 20px;
  min-width: 160px;
}
.secondary_menu.bottom ul::before {
  position: absolute;
  top: auto;
  bottom: -10px;
  left: 20px;
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -0.125em;
  transform: rotate(180deg);
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath fill='%23fff' d='M4.659 28.167h30.682L20 7.833z'/%3E%3C/svg%3E");
}

.header_nav_mob {
  cursor: pointer;
  text-transform: uppercase;
  background: transparent;
  border: none;
  display: none;
  transition: 0.2s;
  position: relative;
  top: 0px;
  z-index: 2;
}
.header_nav_mob .header_nav_burger {
  padding: 4px 10px;
}
.header_nav_mob .header_nav_burger svg {
  width: 40px;
  height: 40px;
  color: #df2624;
  padding: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  transition: 0.2s;
}
.header_nav_mob .header_nav_burger:hover svg {
  width: 40px;
  height: 40px;
  color: black;
  padding: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.header_nav_mob.menu-open {
  position: relative;
  z-index: 3;
}
.header_nav_mob.menu-open .header_nav_burger svg {
  width: 40px;
  height: 40px;
  color: black;
  padding: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.header_right {
  gap: 12px;
}

.header_contacts_block {
  white-space: nowrap;
  font-weight: 500;
  transition: 0.2s;
  cursor: pointer;
}
.header_contacts_block svg {
  margin-left: 8px;
  transition: 0.2s;
}
.header_contacts_block:hover {
  color: #df2624;
}
.header_contacts_block:hover svg {
  margin-left: 8px;
  transform: rotate(-90deg);
}

.header_shop,
.header_search {
  width: 40px;
  height: 40px;
  position: relative;
}

.header_contacts {
  height: 40px;
  margin-right: 10px;
  position: relative;
}
.header_contacts .mobmenu_icon {
  transition: 0.2s;
  display: none;
}
.header_contacts .mobmenu_icon:hover {
  color: #df2624;
}

.header_search-btn,
.header_shop {
  color: black;
  transition: 0.2s;
  cursor: pointer;
}
.header_search-btn:hover,
.header_shop:hover {
  color: #df2624;
}

.header_shop {
  color: black;
}

.header_search-btn {
  color: #727271;
}

.header_order {
  padding: 12px 16px;
  white-space: nowrap;
  font-size: 16px;
}

.secondary--menu {
  display: none;
  width: 100%;
  background: white;
  padding: 20px 20px;
  border-radius: 6px;
  list-style: none;
  position: relative;
  top: -10px;
  min-width: 320px;
  position: absolute;
  right: 0;
  animation: fade-in-bottom 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  box-sizing: border-box;
  overflow: auto;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
.secondary--menu.menu_full {
  top: auto;
  bottom: 0px;
  height: 100dvh;
  position: fixed;
}
.secondary--menu.menu_full svg {
  color: #999999;
}
.secondary--menu::-webkit-scrollbar {
  width: 0.2em;
  height: 0.2em;
}
.secondary--menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.6);
}
.secondary--menu::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.secondary--menu {
  scrollbar-face-color: rgba(0, 0, 0, 0.6);
  scrollbar-track-color: rgba(0, 0, 0, 0.1);
}
.secondary--menu.open {
  display: block;
  z-index: 10;
}

.secondary--menu_close {
  color: #999999;
  display: block;
  position: fixed;
  right: 20px;
  top: 23px;
  display: flex;
  cursor: pointer;
  transition: 0.2s;
  z-index: 1;
}
.secondary--menu_close:hover {
  color: #df2624;
  transform: rotate(360deg);
}

.header_contacts_title {
  font-weight: 700;
  font-size: 18px;
}

.header_contacts_tel {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
}
.header_contacts_tel a {
  color: black;
  transition: 0.2s;
}
.header_contacts_tel a:hover {
  color: #df2624;
}

.header_contacts_btns a {
  display: flex;
  margin: 12px 0px;
  padding: 6px 12px;
}
.header_contacts_btns a span {
  width: 75%;
  text-align: center;
  padding: 6px;
}

.header_contacts_informer {
  margin: 20px 0;
}
.header_contacts_informer span {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
}
.header_contacts_informer p {
  margin: 10px 0;
  font-size: 14px;
}

.header_search_panel {
  color: #727271;
}
.header_search_panel .header_search_input {
  border: none;
  margin: 0 24px;
  font-size: 16px;
  color: black;
}
.header_search_panel .header_search_input:focus-visible {
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: 2px;
}
.header_search_panel .header_search_input:focus:not(:focus-visible) {
  outline: none;
}

.header_search .secondary--menu {
  top: 50px;
  right: 0px;
}
.header_search .secondary--menu::before {
  position: absolute;
  top: -11px;
  right: 15px;
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -0.125em;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath fill='%23727271' d='M4.659 28.167h30.682L20 7.833z'/%3E%3C/svg%3E");
}

.close-block {
  animation: fade-out-bck 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (max-width: 1480px) {
  .header_logo {
    width: 200px;
  }
  .header_nav {
    gap: 10px;
  }
  .header_nav nav {
    gap: 10px;
  }
  .header_right {
    gap: 10px;
  }
  .header_main {
    margin-top: 12px;
  }
  .header_scrolled .header_logo {
    width: 200px;
  }
  .header_scrolled .header_nav_mob .header_nav_burger {
    padding: 4px 4px;
  }
  .header_scrolled .header_contacts {
    margin-right: 0px;
  }
  .header_logo_city {
    font-size: 10px;
  }
}
@media (max-width: 1280px) {
  .header_logo {
    width: 250px;
  }
  .header_nav {
    order: 1;
  }
  .header_logo {
    order: 2;
  }
  .header_nav nav {
    display: none;
    position: absolute;
  }
  .header_nav nav.menu-open {
    display: flex;
    top: 50px;
    flex-direction: column;
    z-index: 9;
    background: white;
    padding: 20px;
    border-radius: 6px;
    align-items: baseline;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.05);
  }
  .header_nav nav.menu-open::before {
    position: absolute;
    top: -10px;
    left: 20px;
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: -0.125em;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath fill='%23fff' d='M4.659 28.167h30.682L20 7.833z'/%3E%3C/svg%3E");
  }
  .header_nav nav.menu-open .nav_link {
    text-transform: none;
    font-weight: 600;
    margin: 5px;
  }
  .header_nav .header_nav_mob {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .header_logo {
    width: 200px;
  }
  .header_left {
    gap: 10px;
  }
}
@media (max-width: 780px) {
  .header_main {
    margin-top: 0px;
  }
  .header_logo {
    width: 160px;
  }
  .header_left {
    gap: 10px;
  }
  .header_nav .header_nav_mob {
    display: none;
  }
  .header_contacts .mobmenu_icon {
    color: #727271;
    display: flex;
    cursor: pointer;
  }
  .header_contacts_block {
    display: none;
  }
  .header_search,
  .header_shop {
    display: none;
  }
  .header_logo_city {
    display: none;
  }
}
@media (max-width: 480px) {
  .header_order {
    display: none;
  }
  .header_contacts {
    position: static;
  }
  .header .secondary--menu {
    width: 100%;
    border-radius: 0;
    height: 100dvh;
    top: 0;
    left: 0;
    right: auto;
  }
}
.hero {
  background-image: -webkit-image-set(url("/assets/img/hero.jpg") 1x, url("/assets/img/hero_big.jpg") 2x);
  background-image: image-set(url("/assets/img/hero.jpg") 1x, url("/assets/img/hero_big.jpg") 2x);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 20%;
  height: 650px;
  overflow: hidden;
}

.hero_container {
  height: 100%;
  padding-top: 120px;
}

.hero_content {
  color: #ffffff;
  max-width: 680px;
  width: auto;
  position: relative;
}
.hero_content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  padding: 50px;
  transform: translate(-50%, -50%);
  border-radius: 300px;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.4) 70%, transparent);
  filter: blur(40px);
}

.hero_block {
  position: relative;
  z-index: 1;
}
.hero_block h1 {
  margin: 0;
  font-weight: 600;
}

.hero_content_info {
  font-size: 21px;
}
.hero_content_info p {
  margin: 15px 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  backdrop-filter: blur(10px);
  letter-spacing: 2px;
}

.hero_btns {
  margin-top: 24px;
  gap: 16px;
}

@media (max-width: 1480px) {
  .hero_content_info {
    font-size: 21px;
  }
}
@media (max-width: 1280px) {
  .hero_content_info {
    font-size: 21px;
  }
}
@media (max-width: 780px) {
  .hero {
    background: url(/assets/img/hero_mob.jpg) center;
    height: 540px;
    background-size: cover;
    background-position: 30% 0%;
  }
  .hero_content {
    max-width: 580px;
  }
  .hero_content_info {
    font-size: 18px;
  }
  .hero_container {
    position: relative;
  }
  .hero_container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(51, 51, 51, 0.4) 40%, rgba(255, 255, 255, 0));
  }
}
@media (max-width: 480px) {
  .hero {
    background: url(/assets/img/hero_mob.jpg) center;
    height: 500px;
    background-size: cover;
    background-position: 30% 0%;
  }
  .hero_block h1 {
    line-height: 140%;
  }
  .hero_btns {
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 10px;
  }
  .hero_btns .btn {
    width: 100%;
  }
}
@media (min-width: 2040px) {
  .hero {
    height: 100dvh;
    min-height: 100%;
    background-position: center center;
  }
}
.mobmenu {
  display: none;
  background: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 8px 0;
  box-shadow: 1px 0px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 10;
}
.mobmenu .secondary--menu {
  right: 0;
  top: 4px;
}
.mobmenu .menu_full {
  top: auto;
  bottom: 0px;
}
.mobmenu .menu_full svg {
  color: #999999;
}

.mobmenu_link {
  font-weight: 500;
  color: #727271;
  transition: 0.2s;
  cursor: pointer;
}
.mobmenu_link span.mobmenu_link_icon {
  height: 32px;
  color: #999999;
}
.mobmenu_link span {
  font-size: 12px;
}
.mobmenu_link svg {
  width: 30px;
}
.mobmenu_link.active span {
  color: #df2624;
}
.mobmenu_link:hover .mobmenu_link_icon,
.mobmenu_link:hover .mobmenu_link_text {
  color: #df2624;
}

.menu_full {
  display: none;
  font-size: 16px;
}
.menu_full .secondary--menu_inner {
  text-align: left;
}
.menu_full .menu_full_logo {
  width: 230px;
}
.menu_full .secondary--menu_close {
  top: 30px;
}
.menu_full .menu_full_nav {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
  margin-top: 24px;
}
.menu_full .btn-main {
  display: flex;
  margin-top: 20px;
}

.menu_full_nav-item {
  font-size: 18px;
  font-weight: 700;
  color: black;
  padding-top: 12px;
  padding-bottom: 12px;
  display: block;
  position: relative;
}
.menu_full_nav-item:hover {
  color: #727271;
}

.spoiler--opener::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 5px;
  width: 18px;
  display: inline-block;
  vertical-align: -0.125em;
  transition: 0.2s;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M10.5 15.808V8.192L14.308 12z'/%3E%3C/svg%3E");
}
.spoiler--opener.open::before {
  transform: rotate(90deg);
}

.menu--spoiler {
  color: #727271;
  font-weight: 500;
  font-size: 16px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease, opacity 0.25s ease;
  opacity: 0;
}
.menu--spoiler.open {
  grid-template-rows: 1fr;
  opacity: 1;
}
.menu--spoiler ul {
  list-style: none;
  padding: 0;
  overflow: hidden;
  margin: 0;
}
.menu--spoiler li {
  margin-top: 20px;
}
.menu--spoiler a {
  color: black;
  font-weight: 400;
}

.menu_full_block {
  margin-top: 20px;
}

.menu_full_link {
  padding: 12px 0;
  color: black;
  position: relative;
  font-weight: 400;
  color: #727271;
}
.menu_full_link svg {
  color: #999999;
  margin-right: 20px;
  position: relative;
  top: 3px;
}

.menu_full_block_bottom {
  padding-top: 20px;
  border-top: 2px solid #e5e5e5;
}

.menu_full_link--tel {
  color: black;
}
.menu_full_link--tel .menu_full_link--text {
  font-size: 18px;
}

.menu_full_link--locate .menu_full_link--text {
  font-size: 16px;
}

.menu_full_link--mail .menu_full_link--text {
  font-size: 16px;
  color: black;
}

.menu_full_link--icon {
  width: 50px;
}

@media (max-width: 780px) {
  .mobmenu {
    display: block;
  }
}
.preim {
  padding: 60px 0;
  background: #f8f8f8;
  gap: 20px;
  position: relative;
}

.preim_block {
  max-width: 315px;
  position: relative;
  z-index: 1;
}
.preim_block.big {
  max-width: 380px;
}

.preim_icon {
  min-width: 40px;
  text-align: center;
}

.preim_content:hover .preim_content_name {
  color: #df2624;
}
.preim_content span {
  display: block;
}
.preim_content {
  margin-left: 10px;
}

.preim_content_name {
  font-size: 20px;
  font-weight: 700;
  transition: 0.2s;
}

.preim_content_desc {
  margin-top: 10px;
  color: #727271;
}

@media (max-width: 1480px) {
  .preim_container {
    flex-wrap: wrap;
  }
  .preim {
    padding: 40px 0;
  }
  .preim_block {
    max-width: 50%;
    width: 50%;
    margin: 20px 0;
  }
  .preim_block.big {
    max-width: 50%;
  }
  .preim_content_name {
    font-size: 18px;
  }
}
@media (max-width: 780px) {
  .preim {
    padding: 30px 0;
  }
  .preim_block {
    max-width: 100%;
    width: 100%;
    margin: 30px 0;
  }
  .preim_block.big {
    max-width: 100%;
  }
  .preim_content_name {
    font-size: 16px;
  }
}
.catalog_blocks {
  gap: 20px;
}

.catalog_item {
  position: relative;
  width: calc(33% - 10px);
  height: 320px;
  overflow: hidden;
  color: white;
  border-radius: 20px;
}
.catalog_item img {
  height: 100%;
  border-radius: inherit;
}
.catalog_item:hover .catalog_content_text {
  grid-template-rows: 1fr;
  opacity: 1;
}
.catalog_item:hover {
  color: white;
}

.catalog_inner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
}

.catalog_content span {
  display: block;
}

.catalog_content_name {
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.catalog_content_col {
  margin-bottom: 10px;
}

.catalog_content_text {
  font-size: 18px;
  font-weight: 400;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease, opacity 0.25s ease;
  opacity: 0;
}
.catalog_content_text p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

@media (max-width: 1480px) {
  .catalog_item img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}
@media (max-width: 1280px) {
  .catalog_item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 1024px) {
  .catalog_content_name {
    font-size: 24px;
  }
  .catalog_content_text {
    font-size: 16px;
  }
  .catalog_blocks {
    gap: 20px;
  }
  .catalog_inner {
    padding: 20px;
    width: 100%;
  }
}
@media (max-width: 780px) {
  .catalog_content_name {
    font-size: 18px;
  }
  .catalog_blocks {
    gap: 10px;
    justify-content: flex-start;
  }
  .catalog_item {
    min-width: 100px;
    height: 200px;
    width: calc(50% - 5px);
  }
  .catalog_content_text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .catalog_item {
    min-width: 100px;
    height: 200px;
    width: 100%;
  }
  .section_title h2 {
    font-size: 24px;
  }
}
.actions {
  padding-bottom: 20px;
}
.actions .scard_item:nth-child(5), .actions .scard_item:nth-child(6) {
  display: none;
}

.scard_blocks {
  gap: 10px;
  margin-bottom: 80px;
}

.scard_item {
  padding: 20px;
  width: calc(33% - 11px);
  box-sizing: border-box;
  border: 1px solid rgba(114, 114, 113, 0.2);
  background: white;
  display: block;
  transition: 0.2s;
  position: relative;
  border-radius: 20px;
}
.scard_item:hover {
  transform: scale(1.05);
  transform-origin: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.scard_bottom {
  background: rgba(0, 0, 0, 0.05);
  padding: 4px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.scard_label {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  border-radius: 10px;
  background: #aba7cf;
  padding: 5px 10px;
  font-weight: 500;
  color: black;
  letter-spacing: 1px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.scard_label.new {
  background: #dae2ff;
}
.scard_label.top {
  background: #daffda;
}

.scard_img {
  margin-bottom: 10px;
  height: 260px;
  max-height: 320px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scard_img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.scard_link {
  color: black;
}

.scard_info_title {
  font-size: 18px;
  margin: 10px 0;
}

.scard_bottom_price {
  font-weight: 600;
  background: white;
  padding: 12px 20px;
  border-radius: 20px;
}
.scard_bottom_price span {
  color: #727271;
  font-size: 14px;
}

.scard_item {
  padding: 15px;
}
.scard_item .btn-border {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-color: #df2624;
  color: #df2624;
  font-size: 16px;
}
.scard_item .btn-border:hover {
  color: white;
  background: #df2624;
}

@media (max-width: 1480px) {
  .scard_item {
    padding: 15px;
  }
  .scard_item .btn-border {
    padding: 12px 20px;
  }
}
@media (max-width: 1280px) {
  .scard_blocks {
    flex-wrap: wrap;
    gap: 20px;
  }
  .scard_item {
    width: calc(50% - 10px);
  }
  .scard_item .btn-border {
    padding: 12px 20px;
  }
  .scard_item img {
    height: 100%;
  }
  .scard_item:nth-child(5), .scard_item:nth-child(6) {
    display: block;
  }
}
@media (max-width: 780px) {
  .scard_bottom {
    flex-wrap: wrap;
    background: transparent;
    border-radius: 0;
    border: none;
  }
  .scard_bottom .btn-border {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
  }
  .scard_bottom_price {
    padding: 0;
    margin: 0 auto;
  }
  .scard_info_title {
    text-align: center;
  }
  .scard_label {
    top: 10px;
    right: 10px;
    font-size: 11px;
  }
  .scard_item .btn-border {
    font-size: 14px;
  }
}
.about {
  background: #df2624;
  padding: 20px 0;
  color: white;
}
.about .section_title_lable {
  color: white;
}
.about h2 {
  width: 90%;
}
.about .btn-white {
  font-weight: 400;
  padding: 14px 50px;
}

.about_content {
  margin-right: 10px;
  max-width: 720px;
}

.about_desc {
  font-size: 18px;
  font-weight: 400;
  margin: 30px 0;
}
.about_desc p {
  margin: 10px 0;
}

.about_img {
  width: 45%;
}
.about_img img {
  width: 100%;
}

.about_btn_full {
  width: 100%;
  display: none;
}

@media (max-width: 1280px) {
  .about {
    padding: 40px 0;
  }
  .about .container {
    align-items: start;
  }
  .about h2 {
    width: 100%;
  }
  .about_desc {
    font-size: 16px;
  }
  .about_img {
    min-width: 40%;
  }
  .about_img img {
    width: 100%;
  }
}
@media (max-width: 780px) {
  .about {
    padding: 30px 0;
  }
  .about .container {
    flex-wrap: wrap;
  }
  .about h2 {
    width: 100%;
  }
  .about_img {
    min-width: 100%;
  }
  .about_img img {
    width: 100%;
  }
  .about_content .btn {
    display: none;
  }
  .about_btn_full {
    display: flex;
  }
}
.partners {
  background: #f8f8f8;
  padding-bottom: 80px;
}
.partners .section_title {
  margin-bottom: 0px;
}
.partners .section_title a {
  color: black;
  font-size: 16px;
  transition: 0.2s;
  white-space: nowrap;
}
.partners .section_title a:hover {
  color: #df2624;
}
.partners .section_title a svg {
  margin-left: 16px;
}

.partners_blocks {
  overflow: auto;
}

.partners_item {
  width: 300px;
  box-sizing: border-box;
  border: 1px solid rgba(114, 114, 113, 0.2);
  background: white;
  height: 254px;
  transition: 0.2s;
}
.partners_item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.partners_item .btn-border {
  padding: 14px 24px;
}

.partners_desc {
  max-width: 1000px;
  font-size: 18px;
}
.partners_desc p {
  margin: 10px 0;
}

.partners_blocks {
  margin-top: 32px;
}

.partners_img {
  width: 190px;
  height: 88px;
  margin-bottom: 24px;
}
.partners_img img {
  width: 100%;
}

@media (max-width: 1280px) {
  .partners_desc {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .partners_blocks {
    justify-content: flex-start;
  }
  .partners_img {
    width: 160px;
    height: 80px;
    margin-bottom: 10px;
  }
  .partners_item {
    height: 200px;
  }
  .partners_item .btn-border {
    padding: 12px 12px;
  }
}
@media (max-width: 780px) {
  .partners .section_title a {
    display: none;
  }
}
.news {
  padding-bottom: 80px;
}
.news .section_title {
  margin-bottom: 0px;
}
.news .section_title a {
  color: black;
  font-size: 16px;
  transition: 0.2s;
  white-space: nowrap;
}
.news .section_title a:hover {
  color: #df2624;
}
.news .section_title a svg {
  margin-left: 16px;
}

.news_blocks {
  gap: 10px;
}

.news_date {
  margin-bottom: 16px;
  display: block;
  color: #727271;
}

.news_title {
  max-width: 335px;
  font-size: 18px;
}
.news_title a {
  color: #000000;
  transition: 0.2s;
}
.news_title a:hover {
  color: #df2624;
}

@media (max-width: 1280px) {
  .news {
    padding-bottom: 60px;
  }
}
@media (max-width: 1024px) {
  .news_blocks {
    flex-wrap: wrap;
    gap: 20px;
  }
  .news_item {
    width: calc(50% - 20px);
  }
  .news_title {
    max-width: 100%;
    font-size: 18px;
  }
}
@media (max-width: 780px) {
  .news_blocks {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    overflow-y: auto;
  }
  .news_item {
    min-width: 335px;
    width: -moz-min-content;
    width: min-content;
  }
  .news_title {
    max-width: 100%;
    font-size: 18px;
  }
  .news .section_title a {
    display: none;
  }
  .section_title {
    margin-bottom: 10px;
  }
}
.contacts {
  width: 100%;
  position: relative;
  color: white;
  padding: 40px 0;
  background-size: cover;
  overflow: hidden;
}
.contacts .section_title {
  max-width: 520px;
}
.contacts::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 60%, transparent);
}
.contacts::after {
  z-index: 1;
  opacity: 0.8;
}
.contacts .container {
  position: relative;
  z-index: 2;
}
.contacts .section_title_lable {
  color: white;
}

.contacts_desc {
  margin-top: 16px;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.contacts_desc p {
  margin: 10px 0;
}

.contacts_form {
  width: 50%;
}
.contacts_form form {
  width: 100%;
}

.contacts_input {
  margin-top: 16px;
}
.contacts_input input {
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 20px;
  border: none;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 16px;
}
.contacts_input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contacts_input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contacts_input input:focus {
  outline: 2px solid rgba(223, 38, 36, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
}
.contacts_input textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 20px;
  border: none;
  margin-top: 8px;
  min-height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 16px;
  resize: none;
}
.contacts_input textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contacts_input textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contacts_input textarea:focus {
  outline: 2px solid rgba(223, 38, 36, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
}
.contacts_input label {
  font-weight: 300;
}
.contacts_input label span {
  color: #df2624;
}
.contacts_input .btn {
  padding: 14px 50px;
  cursor: pointer;
}

.contacts_policy {
  gap: 12px;
  position: relative;
}

@media (max-width: 1280px) {
  .contacts .section_title {
    max-width: 400px;
  }
  .contacts_form {
    width: 60%;
    margin-left: 16px;
  }
  .contacts_desc {
    font-size: 16px;
    font-weight: 400;
  }
}
@media (max-width: 1024px) {
  .contacts {
    padding: 40px 0;
  }
  .contacts .container {
    flex-wrap: wrap;
  }
  .contacts .section_title {
    max-width: 100%;
  }
  .contacts_form {
    margin-left: 0;
    width: 100%;
  }
  .contacts_input .btn {
    width: 100%;
    margin-top: 20px;
  }
}
.footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
.footer .container {
  align-items: start;
  gap: 10px;
}
.footer nav {
  gap: 15px;
}
.footer .nav_link {
  color: white;
  font-weight: 500;
}
.footer .nav_link:hover {
  color: #df2624;
}

.footer_logo {
  transition: 0.2s;
}
.footer_logo:hover {
  opacity: 0.6;
}

.footer_info {
  min-width: 380px;
  color: white;
}

.footer_contacts_tel,
.footer_contacts_mail {
  display: block;
  color: white;
  font-weight: 500;
  transition: 0.2s;
}
.footer_contacts_tel:hover,
.footer_contacts_mail:hover {
  color: #df2624;
}

.footer_desc {
  max-width: 225px;
}

.footer_socials {
  gap: 15px;
  margin-top: 20px;
}
.footer_socials a {
  transition: 0.2s;
  display: flex;
}
.footer_socials a::before {
  content: "";
  position: absolute;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  border-radius: 20px;
  transition: 0.2s;
  opacity: 0;
}
.footer_socials a {
  position: relative;
}
.footer_socials a:hover {
  transform: rotate(360deg);
}
.footer_socials a:hover::before {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.footer_bottom {
  margin-top: 40px;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.footer_bottom .footer_politic {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  transition: 0.2s;
}
.footer_bottom .footer_politic:hover {
  color: white;
}

.footer_std img {
  margin-left: 10px;
  width: 120px;
}
.footer_std a {
  transition: 0.2s;
  display: flex;
}
.footer_std a:hover {
  opacity: 0.6;
}

@media (max-width: 1280px) {
  .footer .container {
    flex-wrap: wrap;
  }
  .footer_contacts {
    order: 2;
  }
}
@media (max-width: 1024px) {
  .footer nav {
    width: 100%;
    margin-top: 20px;
  }
  .footer_bottom {
    flex-wrap: wrap;
  }
  .footer_std {
    width: 100%;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.05);
    padding: 10px;
  }
  .footer_std img {
    width: 110px;
  }
}
@media (max-width: 780px) {
  .footer {
    padding-bottom: 80px;
  }
  .footer .container {
    justify-content: center;
  }
  .footer nav {
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
  }
  .footer .nav_link {
    width: 100%;
    text-align: center;
  }
  .footer .secondary_menu {
    max-width: 300px;
  }
  .footer .secondary_menu .secondary_menu_inner {
    padding: 10px 10px;
  }
  .footer .secondary_menu .secondary_menu_inner:before {
    left: 50%;
  }
  .footer_bottom {
    justify-content: center;
  }
  .footer_politic {
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }
  .footer_info {
    flex-wrap: wrap;
    min-width: auto;
  }
  .footer_contacts {
    width: 100%;
    text-align: center;
  }
  .footer_desc {
    max-width: 225px;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
  }
  .footer_socials {
    justify-content: center;
  }
  .footer_std {
    background: transparent;
    padding: 0;
  }
  .footer_std img {
    width: 100px;
  }
  .footer_contacts {
    order: 0;
  }
}
.page {
  padding-top: 160px;
  padding-bottom: 80px;
}
.page h1 {
  margin-top: 0;
  display: flex;
  align-items: center;
}

.page_desc {
  margin: 40px 0;
  font-size: 16px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  color: #727271;
  line-height: 150%;
}
.page_desc p {
  margin: 0;
}

.breadcrumps {
  gap: 10px;
  font-size: 14px;
  flex-wrap: wrap;
}
.breadcrumps a {
  display: inline-flex;
}
.breadcrumps span {
  background: rgba(114, 114, 113, 0.4);
  width: 12px;
  height: 1px;
  display: inline-flex;
}

.page_blocks {
  margin-top: 40px;
  gap: 30px;
}

.page_panel {
  width: 28%;
  max-width: 300px;
}

.page_menu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  background: white;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}
.page_menu.menu .menu--spoiler li {
  border-bottom: none;
  margin: 10px 10px 20px 10px;
}
.page_menu.menu .menu--spoiler li:last-child {
  margin-bottom: 30px;
}
.page_menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.page_menu li::before {
  display: none;
}
.page_menu li:last-child {
  border-bottom: none;
}
.page_menu li {
  cursor: pointer;
}
.page_menu li.open {
  font-weight: 700;
}
.page_menu li.open .page_menu_item::after {
  opacity: 1;
}
.page_menu li.open .page_menu_item svg {
  transform: rotate(-180deg) translate(0, 50%);
}
.page_menu li .filter {
  border-radius: 0;
  border: none;
  box-shadow: none;
}
.page_menu li .filter_selector {
  border-bottom: 0px;
  margin: 20px 5px;
  color: #727271;
}
.page_menu li .filter_selector:first-child {
  margin-top: 10px;
}
.page_menu li .filter_selector:last-child {
  margin-bottom: 30px;
}
.page_menu .page_menu_name {
  padding: 20px;
  font-weight: 700;
  background: #df2624;
  cursor: auto;
  color: white;
}
.page_menu .page_menu_item {
  text-align: left;
  display: block;
  color: black;
  padding: 20px 20px;
  position: relative;
  transition: 0.2s;
}
.page_menu .page_menu_item::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 24px;
  background: rgba(0, 0, 0, 0.8);
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  opacity: 0;
  transition: 0.2s;
}
.page_menu .page_menu_item:hover {
  color: #df2624;
}
.page_menu .page_menu_item:hover svg {
  color: #df2624;
  background: rgba(223, 38, 36, 0.1);
}
.page_menu .page_menu_item svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  padding: 5px;
  border-radius: 3px;
  transition: 0.2s;
}
.page_menu .page_menu_item.active {
  font-weight: 700;
  color: black;
}
.page_menu .page_menu_item.active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0 100px 100px 0;
}
.page_menu .menu--spoiler {
  padding: 0px 10px;
}
.page_menu .menu--spoiler a {
  color: #727271;
}
.page_menu .menu--spoiler a:hover {
  color: black;
}

.page_ads {
  max-width: 100%;
  display: flex;
  margin-top: 20px;
}
.page_ads img {
  width: 100%;
}

.page_filters {
  margin-bottom: 30px;
}

.page_filters_block {
  gap: 12px;
}

.page_content {
  width: 100%;
}
.page_content .menu_full {
  top: 0;
}
.page_content .menu_full svg {
  color: #999999;
}

.filter {
  padding: 16px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  color: black;
  transition: 0.2s;
  position: relative;
  z-index: 2;
}
.filter svg {
  margin-left: 5px;
  color: #727271;
}
.filter:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.filter:hover svg {
  margin-left: 5px;
  color: #df2624;
}
.filter .secondary_menu {
  left: 0;
  top: 40px;
}
.filter.open {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.filter .secondary_menu_inner {
  max-width: 250px;
  text-align: left;
}
.filter .secondary_menu_inner .filter_selector {
  margin: 10px 0;
}
.filter .secondary_menu_inner .filter_selector:first-child {
  margin-top: 0;
}
.filter .secondary_menu_inner .filter_selector:last-child {
  margin-bottom: 0;
}
.filter .selector_input label {
  left: 30px;
  padding-left: 0;
  font-size: 16px;
  font-weight: 400;
}
.filter .selector_input label:before {
  border: 1px solid rgba(0, 0, 0, 0.1);
  top: -1px;
  left: -30px;
}
.filter .selector_input label:after {
  top: 5px;
  left: -25px;
}

.filter_mobile {
  display: none;
}
.filter_mobile h2 {
  margin: 0px 0 20px 0;
}
.filter_mobile .page_menu .page_menu_name {
  display: none;
}

.filter_mobile_btn {
  width: 50px;
  height: 60px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 10px 10px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.filter_mobile_btn svg {
  margin: 10px 0;
  width: 21px;
}
.filter_mobile_btn:hover {
  color: #df2624;
}

.filter_btns {
  margin-top: 20px;
  gap: 10px;
}
.filter_btns .btn-red,
.filter_btns .btn-border {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
}

.page_category {
  gap: 20px;
  background: white;
  position: relative;
}

.category_item {
  width: calc(50% - 10px);
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  background: white;
  border: 1px solid rgba(114, 114, 113, 0.2);
  background: white;
  display: block;
  transition: 0.2s;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.category_item::before {
  content: "";
  right: 0;
  top: 0;
  width: 70px;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 100px 35px 35px 100px;
}

.category_item_name {
  color: black;
}
.category_item_name svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  color: #727271;
}
.category_item_name img {
  width: 100px;
  border-radius: 10px;
  margin-right: 20px;
}

.category_item_title {
  font-size: 21px;
  font-weight: 500;
}
.category_item_title span {
  color: #727271;
  font-weight: 400;
}

.category_panel {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 4;
}
.category_panel::before {
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.05);
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
  border-radius: inherit;
  box-sizing: border-box;
  z-index: 0;
}

.category_panel_title {
  margin: 10px;
  color: #727271;
  text-align: left;
}

.category_item_inner {
  position: relative;
}
.category_item_inner a {
  width: calc(50% - 10px);
  padding: 10px;
  margin: 5px;
  box-sizing: border-box;
  border-radius: 20px;
  font-weight: 400;
  border: 1px solid rgba(114, 114, 113, 0.1);
  transition: 0.2s;
  font-size: 18px;
}
.category_item_inner a span {
  margin-left: 10px;
  color: black;
  text-align: left;
}
.category_item_inner a img {
  width: 75px;
  border-radius: 20px;
}
.category_item_inner a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background: #df2624;
}
.category_item_inner a:hover span {
  color: white;
}

.category_panel_close {
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #df2624;
}

.category_item.is-closed .category_panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
}

@media (hover: hover) and (pointer: fine) {
  .category_item.is-closed:hover .category_panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
  }
}
.category_item.is-open .category_panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .category_item:hover .category_panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.category_item:focus-within .category_panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.page_category_first {
  margin-top: 80px;
}

.page_category_block {
  gap: 20px;
}
.page_category_block .scard_item {
  width: calc(25% - 15px);
}

@media (max-width: 1280px) {
  .page_category_block {
    gap: 20px;
  }
  .page_category_block .scard_item {
    width: calc(33% - 11px);
  }
  .category_item_title {
    font-size: 18px;
  }
  .category_item_name img {
    width: 90px;
    margin-right: 20px;
  }
  .category_item_inner {
    position: relative;
  }
  .category_item_inner a {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .page_category_block {
    gap: 20px;
  }
  .page_category_block .scard_item {
    width: calc(50% - 10px);
  }
  .category_item {
    width: 100%;
    padding: 15px;
  }
  .category_item_name {
    color: black;
  }
  .category_item_name svg {
    width: 14px;
    height: 14px;
    margin-right: 10px;
  }
  .category_item_inner {
    position: relative;
  }
  .category_item_inner a {
    width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .page_category_block {
    gap: 20px;
  }
  .page_category_block .scard_item {
    width: 100%;
  }
  .scard_item {
    width: 100%;
  }
}
.page_informer {
  margin: 20px 0;
  margin-top: 60px;
  font-size: 18px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  color: #727271;
  line-height: 150%;
}
.page_informer p {
  margin: 10px 0;
}
.page_informer p:first-child {
  margin-top: 0;
}
.page_informer p:last-child {
  margin-bottom: 0;
}

.page_items_count {
  margin-left: 20px;
  border-radius: 10px;
  height: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  padding: 0 10px;
}

.page_catsupport {
  margin: 40px 0;
}

.page_catsupport_blocks {
  gap: 15px;
  overflow-x: auto;
  flex-wrap: nowrap;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 40px;
}
.page_catsupport_blocks::-webkit-scrollbar {
  display: none;
}

.page_catsupport_title {
  font-size: 30px;
  margin-bottom: 10px;
}

.page_catsupport_item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 10px 15px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.page_catsupport_item.active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.page_catsupport_item.active .page_catsupport_name {
  color: #df2624;
}
.page_catsupport_item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.page_catsupport_item:hover .page_catsupport_name {
  color: #df2624;
}

.page_catsupport_img {
  width: 70px;
  height: 50px;
  overflow: hidden;
  background-size: cover;
  border-radius: inherit;
  background-position: center;
  -o-object-position: center;
     object-position: center;
}
.page_catsupport_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.page_catsupport_info {
  margin-left: 20px;
  margin-right: 10px;
}
.page_catsupport_info span {
  display: block;
}

.page_catsupport_name {
  font-size: 16px;
  font-weight: 600;
  color: black;
}

.page_catsupport_count {
  font-size: 14px;
  margin-top: 6px;
  color: #727271;
}

.page_catsupport_slider {
  position: relative;
}

.page_catsupport_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.page_catsupport_arrow--left {
  left: -10px;
}

.page_catsupport_arrow--right {
  right: -10px;
}

@media (max-width: 1480px) {
  .page_informer {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .page_category_first {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  .page_category_first {
    margin-top: 40px;
  }
  .page_catsupport_title {
    font-size: 24px;
  }
}
.page_packs {
  margin-top: 80px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  padding-top: 80px;
}

.page_packs_blocks {
  gap: 20px;
}

.page_packs_info {
  max-width: 330px;
  border-radius: 20px;
  margin-top: 20px;
  position: relative;
  margin-right: 20px;
}
.page_packs_info h2 {
  margin-top: 0;
  font-size: 30px;
}
.page_packs_info p {
  font-size: 18px;
  margin: 0;
  line-height: 24px;
  color: #727271;
}

.page_packs_item {
  text-align: center;
  min-width: 230px;
  scroll-snap-align: start;
  flex: 0 0 auto;
}

.page_packs_text {
  font-weight: 400;
  color: #727271;
  line-height: 24px;
  min-height: 60px;
  line-height: 24px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
}
.page_packs_text span {
  color: black;
  text-transform: uppercase;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.05);
  padding: 0px 10px;
  border-radius: 10px;
}

.page_slider_arrow {
  display: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #df2624;
  cursor: pointer;
  position: absolute;
  z-index: 5;
  justify-content: center;
  align-items: center;
  bottom: -15px;
}

.page_packs_slider {
  position: relative;
}

.page_packs_blocks.page_slider_track {
  padding: 20px;
  gap: 10px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 20px;
  background: white;
  border-radius: 20px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 100%;
}

.page_packs_img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_packs_blocks.page_slider_track {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  flex: 1 1 auto;
  gap: 20px;
  scrollbar-width: none;
}

.page_packs_blocks.page_slider_track::-webkit-scrollbar {
  display: none;
}

.page_slider_arrow--left {
  right: 60px;
}

.page_slider_arrow--right {
  right: 0;
}

.page_slider_dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 15px;
}

.page_slider_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.2s;
}

.page_slider_dot.is-active {
  background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 1480px) {
  .page_packs_info p {
    font-size: 16px;
  }
  .page_packs_item {
    text-align: center;
    min-width: 200px;
  }
  .page_slider_arrow {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .page_packs {
    flex-wrap: wrap;
    margin-top: 60px;
    padding-top: 60px;
  }
  .page_packs_info {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .page_packs_info p {
    margin: 20px 0;
    font-size: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    color: #727271;
    line-height: 150%;
  }
}
@media (max-width: 1280px) {
  .scard_img {
    height: 260px;
    max-height: none;
    width: 100%;
    margin: 0 auto;
  }
  .secondary--menu.menu_full .page_filters_block {
    display: block;
    margin-bottom: 20px;
  }
  .secondary--menu.menu_full .page_filters_block .filter {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .secondary--menu.menu_full .page_filters_block .filter .filter_name {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .page_panel {
    display: none;
  }
  .filter_mobile {
    display: block;
  }
  .page h1 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .filter_mobile {
    display: block;
  }
  .page h1 {
    font-size: 24px;
  }
  .page_packs {
    margin-top: 40px;
    padding-top: 40px;
  }
  .page_packs_info h2 {
    font-size: 24px;
  }
}
@media (max-width: 780px) {
  .page {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .scard_img {
    width: 100%;
    height: 200px;
  }
  .scard_img img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .page_filters {
    margin-bottom: 20px;
  }
  .page_filters_block {
    display: none;
  }
  .secondary--menu.menu_full .page_filters_block {
    display: block;
  }
  .secondary--menu.menu_full .filter {
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
  .secondary--menu.menu_full .filter .filter_name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
  }
  .secondary--menu.menu_full .filter .secondary_menu {
    position: static;
    top: auto;
    left: auto;
    margin-top: 10px;
  }
  .secondary--menu.menu_full .filter .secondary_menu_inner {
    max-width: none;
    width: auto;
    top: 0;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .secondary--menu.menu_full .filter .secondary_menu_inner::before {
    content: none;
  }
  .page_informer {
    font-size: 16px;
  }
  .category_item_inner a {
    width: 100%;
    font-size: 16px;
  }
  .category_item_title {
    font-size: 16px;
    text-align: left;
  }
  .category_item::before {
    display: none;
  }
  .category_item_name img {
    width: 75px;
  }
  .page_packs_img img {
    max-width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .page_packs_img {
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .page_catsupport {
    margin: 0px;
    margin-top: 10px;
  }
  .scard_img {
    height: 140px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .scard_img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    display: block;
  }
  .scard_bottom_price {
    padding: 0px;
  }
  .scard_label {
    top: 10px;
    right: 10px;
    font-size: 11px;
    padding: 3px 6px;
  }
}
.shop {
  gap: 40px;
}

.shop_container {
  gap: 80px;
}

.shop_demo_img {
  max-width: 420px;
}
.shop_demo_img .shop_main {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.shop_demo_img .shop_main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop_demo_img .shop_main img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.shop_demo_img .shop_thumbs {
  margin-top: 12px;
  height: 54px;
}
.shop_demo_img .shop_thumbs .swiper-wrapper {
  display: flex;
  justify-content: center;
}
.shop_demo_img .shop_thumbs .swiper-slide {
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.6;
  cursor: pointer;
  box-sizing: border-box;
  border: 2px solid rgba(0, 0, 0, 0.1);
  max-width: 54px;
}
.shop_demo_img .shop_thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #df2624;
}
.shop_demo_img .shop_thumbs img {
  width: 54px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.shop_tags_block {
  gap: 10px;
  margin-top: 10px;
}

.shop_tags_name {
  color: #727271;
  font-size: 14px;
}

.shop_tags_btn {
  background: transparent;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 12px;
  color: black;
  transition: 0.2s;
}
.shop_tags_btn:hover {
  border: 1px solid #df2624;
  color: #df2624;
}
.shop_tags_btn.active {
  border: 2px solid #df2624;
}

.shop_miniinfo {
  font-size: 18px;
  line-height: 150%;
  margin: 20px 0;
}
.shop_miniinfo p {
  margin: 10px 0;
}
.shop_miniinfo p:first-child {
  margin-top: 0;
}
.shop_miniinfo p:last-child {
  margin-bottom: 0;
}

.shop_fullcheck {
  color: #df2624;
  text-decoration: underline;
  font-size: 18px;
  transition: 0.2s;
}
.shop_fullcheck:hover {
  color: black;
  text-decoration: none;
}

.shop_pay {
  padding: 30px;
  height: -moz-fit-content;
  height: fit-content;
  min-width: 350px;
  box-sizing: border-box;
  border: 1px solid rgba(114, 114, 113, 0.2);
  background: white;
  transition: 0.2s;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.shop_pay_price {
  font-size: 30px;
  color: black;
  font-weight: 700;
}

.shop_pay_info {
  color: #727271;
  text-align: center;
  margin: 10px 0;
  font-weight: 400;
}
.shop_pay_info.big {
  color: black;
  font-weight: 500;
}
.shop_pay_info.big span {
  color: #df2624;
  display: block;
}

.shop_pay_btns {
  margin: 10px 0;
}
.shop_pay_btns .btn,
.shop_pay_btns .btn-border {
  margin: 5px 0;
  width: 100%;
  padding: 14px;
  box-sizing: border-box;
  font-size: 16px;
  justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #df2624 !important;
}

@media (max-width: 1280px) {
  .shop_container {
    gap: 40px;
  }
  .shop_demo_img {
    max-width: 320px;
  }
  .shop_pay {
    min-width: 300px;
    padding: 20px;
  }
  .shop_miniinfo {
    font-size: 16px;
  }
  .shop_fullcheck {
    font-size: 16px;
  }
  .shop_pay_btns .btn,
  .shop_pay_btns .btn-border {
    padding: 12px;
    font-size: 15px;
  }
  .shop_pay_price {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .shop {
    flex-wrap: wrap;
  }
  .shop_pay {
    width: 100%;
    box-shadow: none;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 32px !important;
  }
  .shop_tags_btn {
    padding: 10px 12px;
  }
}
@media (max-width: 780px) {
  .shop_container {
    flex-wrap: wrap;
  }
  .shop_demo {
    margin: 0 auto;
    width: 100%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 20px;
  }
  .shop_demo_img {
    width: 100%;
    margin: 0 auto;
  }
  .shop_demo_img .shop_main {
    height: 280px;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 30px !important;
  }
}
@media (max-width: 480px) {
  .shop_demo {
    padding: 10px;
  }
  .shop_demo_img {
    max-width: 280px;
  }
  .shop_demo_img .shop_main {
    height: 260px;
  }
  .shop_tags_btn {
    font-size: 14px;
  }
}
.descriptions {
  width: 100%;
}

.tabs_nav_slider {
  gap: 5px;
}

.tabs_nav {
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tabs_nav::-webkit-scrollbar {
  display: none;
}

.tabs_nav_item {
  padding: 12px 14px;
  box-sizing: border-box;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  transition: 0.2s;
  font-weight: 500;
}
.tabs_nav_item:hover {
  border: 1px solid #df2624;
  color: #df2624;
}
.tabs_nav_item.active {
  border: 2px solid #df2624;
  color: #df2624;
  background: white;
}

.tabs_nav_arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  cursor: pointer;
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #df2624;
}
.tabs_nav_arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.tabs_nav_arrow:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.tabs_container {
  margin-top: 40px;
  font-size: 18px;
}
.tabs_container ul li {
  line-height: 200%;
}

.tabs_container_block {
  display: none;
}
.tabs_container_block.active {
  display: block;
  animation: fade-in-top 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.tabs_video {
  gap: 10px;
}
.tabs_video video,
.tabs_video iframe {
  border-radius: 6px;
  width: 300px;
  height: 190px;
}

@media (max-width: 1280px) {
  .tabs_container {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .tabs_nav_item {
    padding: 10px 12px;
  }
}
@media (max-width: 480px) {
  .tabs_video video,
  .tabs_video iframe {
    border-radius: 6px;
    width: 100%;
    height: 240px;
  }
}
.download_item {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  transition: 0.2s;
  margin: 2px 0;
  box-sizing: border-box;
}
.download_item:hover {
  background: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.download_item:hover .download_item_btn {
  color: #df2624;
}

.download_item_left svg {
  margin-right: 15px;
}
.download_item_left span {
  display: block;
  margin: 2px;
  transition: 0.2s;
}

.download_item_name {
  font-weight: 600;
  font-size: 14px;
  color: black;
}

.download_item_size {
  font-size: 14px;
}

.download_item_btn {
  color: black;
  transition: 0.2s;
}

.recomendations {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.recomendations .section_title {
  margin-bottom: 0;
}

.recomendations_slider {
  position: relative;
}

.recomendations_swiper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.recomendations_swiper .swiper-slide {
  height: auto;
  margin: 15px 0;
}
.recomendations_swiper .scard_item {
  height: 100%;
}
.recomendations_swiper .swiper-pagination {
  top: 0px;
  right: 0;
  width: auto;
  bottom: auto;
  left: auto;
}
.recomendations_swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #df2624;
}

.information {
  gap: 30px;
  margin-top: 40px;
}

.information_container {
  overflow: hidden;
  font-size: 18px;
  width: 100%;
  text-align: justify;
}
.information_container h3 {
  margin: 40px 0;
}
.information_container p {
  margin: 10px 0;
}
.information_container p:first-child {
  margin-top: 0;
}
.information_container p:last-child {
  margin-bottom: 0;
}

.information_cards {
  gap: 20px;
}

.information_card {
  padding: 20px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
  text-align: left;
  border-radius: 10px;
  max-width: 260px;
  font-size: 16px;
  transition: 0.2s;
  cursor: cell;
}
.information_card img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.information_card span {
  margin-top: 10px;
  display: block;
}
.information_card:hover {
  border: 1px solid #df2624;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  animation: fade-in-top 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.gallery-modal.is-open {
  display: block;
}
.gallery-modal_dialog {
  width: 100%;
  height: 100%;
  background: white;
}
.gallery-modal_close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  font-size: 28px;
  line-height: 1;
  color: #727271;
  cursor: pointer;
  z-index: 10;
  background: transparent;
}
.gallery-modal_close svg {
  position: relative;
  z-index: -1;
  transition: 0.2s;
}
.gallery-modal_close:hover svg {
  transform: rotate(360deg);
}
.gallery-modal_nav {
  height: 100%;
  border: 0;
  background: transparent;
  font-size: 48px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: grid;
  place-items: center;
}
.gallery-modal_nav:hover {
  background: rgba(0, 0, 0, 0.04);
}
.gallery-modal_nav:disabled {
  opacity: 0.25;
  cursor: default;
}
.gallery-modal_figure {
  margin: 0;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}
.gallery-modal_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}
.gallery-modal_caption {
  padding: 12px 16px;
  font-size: 16px;
  color: #727271;
  min-height: 44px;
  font-weight: 500;
  text-align: center;
}

.gallery-swiper {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-swiper .swiper-wrapper {
  height: 100%;
}

.gallery-swiper .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media (max-width: 1024px) {
  .information {
    flex-wrap: wrap;
  }
  .information_card {
    max-width: calc(33% - 11px);
  }
  .information_container {
    font-size: 16px;
  }
}
@media (max-width: 780px) {
  .information_card {
    max-width: calc(50% - 11px);
  }
  .information_container {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .information_card {
    max-width: 100%;
  }
}
.about_title {
  font-size: 40px;
  margin: 0;
  margin-bottom: 30px;
}

.page_about img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 20px;
}
.page_about h1 {
  margin: 40px 0;
}
.page_about p {
  line-height: 150%;
}

.gallery {
  gap: 20px;
}

.gallery_item {
  overflow: hidden;
  position: relative;
  width: calc(33% - 11px);
  border-radius: 20px;
}
.gallery_item h2 {
  font-size: 18px;
  color: white;
  margin: 10px 0;
  text-transform: uppercase;
}
.gallery_item img {
  display: block;
  border-radius: inherit;
  transition: 0.2s;
}
.gallery_item span {
  color: white;
  font-size: 14px;
}
.gallery_item:hover img {
  transform: scale(1.1);
}

.gallery_item_title {
  text-align: left;
}

.gallery_inner {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
}

.feedback {
  gap: 20px;
}

.feedback_item {
  padding: 20px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
  text-align: left;
  border-radius: 10px;
  width: calc(33% - 11px);
  font-size: 16px;
  transition: 0.2s;
  text-align: center;
  font-weight: 300;
  color: #727271;
  cursor: cell;
}
.feedback_item p {
  margin: 10px;
}
.feedback_item img {
  max-width: 100%;
}
.feedback_item:hover {
  border: 1px solid #df2624;
}

@media (max-width: 1024px) {
  .about_title {
    font-size: 30px;
  }
}
@media (max-width: 780px) {
  .feedback_item {
    width: calc(50% - 11px);
  }
  .gallery_item {
    width: calc(50% - 11px);
  }
  .page_about .btn-red {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .feedback_item {
    width: 100%;
    padding: 10px;
  }
  .gallery_item {
    width: 100%;
  }
  .about_title {
    font-size: 24px;
  }
}
.contact_page_blocks {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 47px;
  margin-top: 40px;
}
.contact_page_blocks .page_informer {
  margin-top: 20px;
}

.contact_block {
  box-shadow: 0px 5px 15px rgba(125, 125, 125, 0.3);
  border-radius: 12px;
  height: auto;
  width: 364px;
  flex: 0 0 364px;
  overflow: hidden;
}
.contact_block_icon {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact_block_item {
  position: relative;
}
.contact_block_item .address_block {
  position: absolute;
  width: 100%;
  height: 170px;
  bottom: 0;
  left: 0;
  padding-left: 23px;
  padding-bottom: 31px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 55%);
}
.contact_block_item .address_block p {
  color: #ffffff;
  font-weight: 400;
  width: 100%;
  max-width: 289px;
  margin: 0;
}
.contact_block_contacts {
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
.contact_block_contacts button,
.contact_block_contacts a {
  margin-top: 10px;
  justify-content: center;
}
.contact_block_contacts .contact_item span {
  color: black;
  font-weight: 400;
  display: block;
  margin: 10px 0;
}
.contact_block_contacts .contact_item p {
  color: rgb(154, 154, 154);
  margin: 0;
  margin-bottom: 10px;
}
.contact_block_contacts_email_item {
  margin: 21px 0 31px 0;
}

.contact_item {
  margin: 10px 0;
}

.contact_page_info {
  flex: 1 1 auto;
  width: 100%;
  max-width: 1102px;
  min-width: 0;
}

.contact_page_map {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgb(229, 229, 229);
  background: #ffffff;
}
.contact_page_map iframe {
  display: block;
  width: 100%;
  border: 0;
}

.wrapper_company .row {
  padding: 15px 15px;
  gap: 10px;
}
.wrapper_company .row:nth-child(odd) {
  background: #ffffff;
}
.wrapper_company .row:nth-child(even) {
  background: rgb(248, 248, 248);
}
.wrapper_company .label {
  width: 300px;
  font-weight: 600;
}
.wrapper_company .value {
  flex: 1;
}

.warehouse_item {
  gap: 20px;
  background: #ffffff;
  padding: 20px;
  border: 1px solid rgb(229, 229, 229);
  border-radius: 12px;
}
.warehouse_item_info {
  width: 100%;
}
.warehouse_item_img {
  height: 100px;
  border-radius: 8px;
}
.warehouse_item_address {
  margin: 0;
}
.warehouse_item_phone, .warehouse_item_email {
  margin: 0;
  color: black;
  font-weight: 400;
  transition: 0.2s;
}
.warehouse_item_phone:hover, .warehouse_item_email:hover {
  color: #df2624;
}

@media (max-width: 1280px) {
  .contact_block {
    width: 320px;
    flex-basis: 320px;
  }
  .warehouse_item {
    gap: 16px;
    padding: 22px;
  }
  .warehouse_item_img {
    height: 80px;
  }
}
@media (max-width: 1024px) {
  .contact_page_blocks {
    flex-direction: column;
    gap: 20px;
  }
  .contact_block {
    order: -1;
  }
  .contact_page_info,
  .contact_block {
    width: 100%;
    max-width: 100%;
    flex-basis: auto;
  }
  .contact_page_map iframe {
    height: 420px;
  }
  .warehouse_item {
    gap: 10px;
    padding: 20px;
  }
  .warehouse_item_img {
    width: 180px;
    height: 120px;
  }
  .wrapper_company .label,
  .wrapper_company .value {
    width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 780px) {
  .contact_page_blocks {
    margin-top: 24px;
    gap: 16px;
  }
  .contact_page_map iframe {
    height: 320px;
  }
  .contact_block_contacts {
    padding: 20px 20;
  }
  .contact_item p {
    font-size: 14px;
  }
  .contact_item span {
    font-size: 16px;
  }
  .contact_block_contacts .btn-border {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .contact_page_map iframe {
    height: 280px;
  }
  .address_block {
    height: 140px;
    padding-left: 16px;
    padding-bottom: 16px;
  }
  .wrapper_company .row {
    padding: 10px 12px;
  }
}
.news_page {
  margin-top: 40px;
}
.news_page_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.news_page_grid--featured {
  grid-template-areas: "featured side1" "featured side2";
}
.news_page_card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  min-width: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.news_page_card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 65%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
  z-index: 1;
}
.news_page_card_image {
  width: 100%;
  display: flex;
}
.news_page_card_image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news_page_card_content {
  position: absolute;
  inset: auto 0 0;
  padding: 20px;
  gap: 12px;
  z-index: 2;
}
.news_page_card_title {
  margin: 0;
}
.news_page_card_title a {
  color: #ffffff;
  transition: 0.2s;
}
.news_page_card_title a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.news_page_card_desc {
  margin: 0;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.92);
  line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news_page_card_bottom {
  margin-top: 0;
  display: flex;
  gap: 12px;
}
.news_page_card_bottom .btn {
  padding: 12px 24px;
}
.news_page_card_date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}
.news_page_grid--featured .news_page_card:first-child {
  grid-area: featured;
}
.news_page_grid--featured .news_page_card:nth-child(2) {
  grid-area: side1;
}
.news_page_grid--featured .news_page_card:nth-child(3) {
  grid-area: side2;
}
.news_page_grid--featured .news_page_card:first-child .news_page_card_image img {
  height: 620px;
}
.news_page_pagination {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.news_page_pagination_btn, .news_page_pagination_page {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(223, 38, 36, 0.4);
  color: #df2624;
  transition: 0.2s;
}
.news_page_pagination_btn {
  cursor: pointer;
}
.news_page_pagination_btn svg {
  width: 16px;
  height: 16px;
}
.news_page_pagination_btn:hover {
  background: rgba(223, 38, 36, 0.08);
  border-color: rgba(223, 38, 36, 0.8);
}
.news_page_pagination_btn:disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}
.news_page_pagination_pages {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news_page_pagination_page {
  cursor: pointer;
}
.news_page_pagination_page:hover {
  background: rgba(223, 38, 36, 0.08);
  border-color: rgba(223, 38, 36, 0.8);
}
.news_page_pagination_page.is-active {
  background: #df2624;
  border-color: #df2624;
  color: white;
}
.news_page_pagination[hidden] {
  display: none;
}

@media (max-width: 1024px) {
  .news_page_grid, .news_page_grid--featured {
    grid-template-columns: repeat(2, 1fr);
  }
  .news_page_grid--featured {
    grid-template-areas: "featured featured" "side1 side2";
  }
  .news_page_card_image img {
    height: 240px;
  }
  .news_page_grid--featured .news_page_card:first-child .news_page_card_image img {
    height: 480px;
  }
  .news_page_card_title {
    font-size: 20px;
  }
}
@media (max-width: 780px) {
  .news_page {
    margin-top: 30px;
  }
  .news_page .news_page_grid.news_page_grid--featured {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
  .news_page_grid, .news_page_grid--featured {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 16px;
  }
  .news_page_card {
    grid-area: auto;
    position: relative;
    border: none;
    height: 300px;
    min-height: 300px;
  }
  .news_page_card:first-child, .news_page_card:nth-child(2), .news_page_card:nth-child(3), .news_page_card:nth-child(4), .news_page_card:nth-child(5) {
    grid-area: auto;
  }
  .news_page_card_image img {
    height: 100%;
  }
  .news_page_card_content {
    inset: auto 0 0;
    padding: 16px;
  }
  .news_page_card_title {
    font-size: 18px;
  }
  .news_page_card_title a {
    color: #ffffff;
  }
  .news_page_card_desc {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
  .news_page_card_bottom {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .news_page_card_bottom .btn {
    width: auto;
  }
  .news_page .news_page_grid--featured .news_page_card:first-child,
  .news_page .news_page_grid--featured .news_page_card:nth-child(2),
  .news_page .news_page_grid--featured .news_page_card:nth-child(3) {
    grid-area: auto;
  }
  .news_page .news_page_grid--featured .news_page_card:first-child .news_page_card_image img {
    height: 340px;
  }
  .news_page_pagination {
    margin-top: 22px;
    gap: 8px;
  }
  .news_page_pagination_btn, .news_page_pagination_page {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.slider-wrap {
  position: relative;
}

.slider-track {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #df2624;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.slider-arrow--left {
  left: -10px;
}

.slider-arrow--right {
  right: -10px;
}

.slider-wrap.has-overflow .slider-arrow {
  display: flex;
}

.slider-arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}