@charset "UTF-8";
:root {
  --thema-color-primary: #D4EACD;
  --thema-color-primary-accent: #B1D0A7;
  --thema-color-secondary: #F7F7F7;
  --thema-color-secondary-accent: #E9E9E9;
  --thema-color-cover: #E3E3E3;
  --thema-color-border: #A0A0A0;
  --thema-color-breadcrumb: #5E5E5E;
  --thema-mask-icon-width: 20px;
  --thema-mask-icon-height: 20px;
}

.c-gap-8 {
  gap: 8px;
}

.c-gap-10 {
  gap: 10px;
}

.c-gap-20 {
  gap: 20px;
}

.c-gap-40 {
  gap: 40px;
}

.icon- {
  content: url("../picture/icons/.svg");
}

.icon-mask-arrow {
  content: "";
  display: block;
  width: var(--thema-mask-icon-width);
  height: var(--thema-mask-icon-height);
  background-color: currentColor;
  -webkit-mask-image: url("../picture/icons/arrow.svg");
  mask-image: url("../picture/icons/arrow.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-mask-search {
  content: "";
  display: block;
  width: var(--thema-mask-icon-width);
  height: var(--thema-mask-icon-height);
  background-color: currentColor;
  -webkit-mask-image: url("../picture/icons/search.svg");
  mask-image: url("../picture/icons/search.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-mask-burger {
  content: "";
  display: block;
  width: var(--thema-mask-icon-width);
  height: var(--thema-mask-icon-height);
  background-color: currentColor;
  -webkit-mask-image: url("../picture/icons/burger.svg");
  mask-image: url("../picture/icons/burger.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-mask-burger-min {
  content: "";
  display: block;
  width: var(--thema-mask-icon-width);
  height: var(--thema-mask-icon-height);
  background-color: currentColor;
  -webkit-mask-image: url("../picture/icons/burger-min.svg");
  mask-image: url("../picture/icons/burger-min.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-mask-category {
  content: "";
  display: block;
  width: var(--thema-mask-icon-width);
  height: var(--thema-mask-icon-height);
  background-color: currentColor;
  -webkit-mask-image: url("../picture/icons/category.svg");
  mask-image: url("../picture/icons/category.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-mask-sort {
  content: "";
  display: block;
  width: var(--thema-mask-icon-width);
  height: var(--thema-mask-icon-height);
  background-color: currentColor;
  -webkit-mask-image: url("../picture/icons/sort.svg");
  mask-image: url("../picture/icons/sort.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-mask-arrow_v2 {
  content: "";
  display: block;
  width: var(--thema-mask-icon-width);
  height: var(--thema-mask-icon-height);
  background-color: currentColor;
  -webkit-mask-image: url("../picture/icons/arrow_v2.svg");
  mask-image: url("../picture/icons/arrow_v2.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-mask-close {
  content: "";
  display: block;
  width: var(--thema-mask-icon-width);
  height: var(--thema-mask-icon-height);
  background-color: currentColor;
  -webkit-mask-image: url("../picture/icons/close.svg");
  mask-image: url("../picture/icons/close.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-mask-filter {
  content: "";
  display: block;
  width: var(--thema-mask-icon-width);
  height: var(--thema-mask-icon-height);
  background-color: currentColor;
  -webkit-mask-image: url("../picture/icons/filter.svg");
  mask-image: url("../picture/icons/filter.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.uc-title {
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media (min-width: 768px) {
  .uc-title {
    font-size: 28px;
  }
}
@media (min-width: 1366px) {
  .uc-title {
    font-size: 36px;
  }
}
@media (min-width: 1600px) {
  .uc-title {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .uc-text-small {
    font-size: 14px;
  }
}
@media (min-width: 1366px) {
  .uc-text-small {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .uc-text-small {
    font-size: 18px;
  }
}
.uc-text-smaller {
  font-size: 14px;
}
@media (min-width: 768px) {
  .uc-text-smaller {
    font-size: 16px;
  }
}
@media (min-width: 1366px) {
  .uc-text-smaller {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .uc-text-smaller {
    font-size: 20px;
  }
}
.uc-text-large {
  font-size: 16px;
}
@media (min-width: 768px) {
  .uc-text-large {
    font-size: 20px;
  }
}
@media (min-width: 1366px) {
  .uc-text-large {
    font-size: 24px;
  }
}
@media (min-width: 1600px) {
  .uc-text-large {
    font-size: 28px;
  }
}
.uc-text-gray {
  color: var(--thema-color-border);
}
.uc-text-dark-gray {
  color: var(--thema-color-breadcrumb);
}
.uc-wrap-secondary {
  background-color: var(--thema-color-secondary) !important;
}
.uc-font-second {
  font-family: "Nunito Sans", sans-serif;
}
.uc-breadcrumb {
  display: flex;
  gap: 20px;
}
.uc-breadcrumb__item {
  display: flex;
  gap: 20px;
}
.uc-breadcrumb__link:hover, .uc-breadcrumb__link:active {
  color: var(--thema-color-border);
}
.uc-breadcrumb {
  font-size: 10px;
  line-height: 1;
  color: var(--thema-color-breadcrumb);
}
@media (min-width: 1024px) {
  .uc-breadcrumb {
    font-size: 12px;
  }
}
.uc-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 40px;
  border: 1px solid #000;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
}
@media (min-width: 768px) {
  .uc-label {
    padding: 6px 16px;
  }
}
@media (min-width: 1366px) {
  .uc-label {
    font-size: 12px;
    padding: 8px 20px;
  }
}
.uc-lazy-load {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  width: 100%;
  color: var(--thema-color-breadcrumb);
  font-weight: 500;
  line-height: 1;
  background-color: var(--thema-color-secondary);
  border-radius: 80px;
  transition: all 0.25s;
  cursor: pointer;
}
.uc-lazy-load:hover, .uc-lazy-load:active {
  background-color: var(--thema-color-secondary-accent);
}
@media (min-width: 768px) {
  .uc-lazy-load {
    padding: 16px 0;
  }
}
@media (min-width: 1366px) {
  .uc-lazy-load {
    padding: 16px;
  }
}
.uc-toggle-switch {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  height: 40px;
  font-size: 12px;
  border: 1px solid;
  border-radius: 40px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .uc-toggle-switch {
    height: 50px;
    font-size: 14px;
  }
}
.uc-toggle-switch:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 55%;
  background-color: #000;
  border-radius: 40px;
  z-index: -1;
  transition: all 0.25s;
}
.uc-toggle-switch:not(:hover):not(:active):has(.uc-toggle-switch__item:first-child:not(.is-current)):after, .uc-toggle-switch:has(.uc-toggle-switch__item:last-child:hover):after, .uc-toggle-switch:has(.uc-toggle-switch__item:last-child:active):after {
  left: 100%;
  width: 50%;
  transform: translateX(-100%);
}
.uc-toggle-switch:has(.uc-toggle-switch__item:hover):after, .uc-toggle-switch:has(.uc-toggle-switch__item:active):after {
  background-color: var(--thema-color-breadcrumb);
}
.uc-toggle-switch__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 40px;
}
.uc-toggle-switch__item.is-current {
  color: #fff;
}
.uc-toggle-switch__item:hover, .uc-toggle-switch__item:active {
  color: #fff !important;
}
@media (min-width: 768px) {
  .uc-toggle-switch__item {
    width: auto;
  }
}
.uc-toggle-switch:hover .uc-toggle-switch__item, .uc-toggle-switch:active .uc-toggle-switch__item {
  color: #000;
}
.uc-toggle-switch__text {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .uc-toggle-switch__text {
    padding: 0 40px;
  }
}
.uc-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: transparent;
  border: 1px solid #000;
  border-radius: 80px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  transition: all 0.25s;
}
.uc-pill.small {
  padding: 8px 16px;
}
.uc-pill.accent {
  padding: 14px 10px;
  background-color: var(--thema-color-primary);
  border: none;
}
.uc-pill.accent:hover, .uc-pill.accent:active {
  background-color: var(--thema-color-primary-accent);
}
@media (min-width: 768px) {
  .uc-pill {
    padding: 20px 24px;
    font-size: 14px;
  }
  .uc-pill.small {
    padding: 10px 24px;
  }
  .uc-pill.accent {
    padding: 14px 20px;
  }
}
@media (min-width: 1366px) {
  .uc-pill.accent {
    padding: 20px 40px;
  }
}
@media (min-width: 1600px) {
  .uc-pill {
    font-size: 16px;
  }
  .uc-pill.accent {
    padding: 24px 40px;
  }
}
.uc-pill.gray {
  background-color: var(--thema-color-cover);
  border-color: var(--thema-color-cover);
}
.uc-pill:hover, .uc-pill:active {
  background-color: var(--thema-color-secondary);
  border-color: var(--thema-color-secondary);
}
.uc-table {
  width: calc(100% + 8px);
  margin: 0 -4px;
  border-spacing: 4px;
  border-collapse: initial;
}
.uc-table th, .uc-table td:not(:last-child) {
  font-weight: 500;
}
.uc-table th, .uc-table td {
  padding: 6px 10px;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .uc-table th, .uc-table td {
    padding: 10px 16px;
  }
}
@media (min-width: 1024px) {
  .uc-table th, .uc-table td {
    padding: 20px;
  }
}
.uc-table th:nth-child(even) {
  background-color: var(--thema-color-primary-accent);
}
.uc-table th:nth-child(odd):not(:first-child) {
  background-color: var(--thema-color-secondary-accent);
}
.uc-table td {
  background-color: var(--thema-color-secondary);
}
.uc-table td:nth-child(even) {
  background-color: var(--thema-color-primary);
}
.uc-table td:first-child {
  text-align: right;
  text-align: end;
}
@media (min-width: 768px) {
  .uc-table td:first-child {
    width: 169px;
  }
}
@media (min-width: 1024px) {
  .uc-table td:first-child {
    width: 220px;
  }
}
@media (min-width: 1366px) {
  .uc-table td:first-child {
    width: 240px;
  }
}
@media (min-width: 1600px) {
  .uc-table td:first-child {
    width: 400px;
  }
}
@media (min-width: 768px) {
  .uc-table tr:hover {
    transition: all 0.25s;
  }
  .uc-table tr:hover td {
    background-color: var(--thema-color-secondary-accent);
  }
  .uc-table tr:hover td:nth-child(even) {
    background-color: var(--thema-color-primary-accent);
  }
}
@media (max-width: 767px) {
  .uc-table, .uc-table tbody, .uc-table thead {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .uc-table th:first-child {
    display: none;
  }
  .uc-table tr {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  .uc-table td:first-child {
    width: 100%;
    text-align: center;
    background-color: transparent;
  }
  .uc-table th:not(:first-child), .uc-table td:not(:first-child) {
    flex: 1;
    width: calc(50% - 2px);
  }
}
.uc-img-round {
  aspect-ratio: 1/1;
  border-radius: 1000px;
  object-fit: cover;
}
.uc-img-rounded {
  border-radius: 20px;
  object-fit: cover;
}
.uc-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 50px;
  padding: 0 40px;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 20px;
  transition: all 0.25s;
}
@media (min-width: 1366px) {
  .uc-button {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .uc-button {
    font-size: 16px;
  }
}
.uc-button:hover, .uc-button:active {
  color: #000;
  background-color: #fff;
  border-color: #000;
}

.container-fluid {
  --bs-gutter-x: calc(20px * 2);
  max-width: 1900px;
}
@media (min-width: 1366px) {
  .container-fluid {
    --bs-gutter-x: calc(40px * 2);
  }
}
@media (min-width: 1600px) {
  .container-fluid {
    --bs-gutter-x: calc(80px * 2);
  }
}

@media (min-width: 1366px) {
  .container-fluid-min {
    max-width: 910px;
    margin: auto;
  }
}

.row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
@media (min-width: 768px) {
  .row {
    --bs-gutter-y: 40px;
  }
}

.row-big {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
@media (min-width: 768px) {
  .row-big {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
  }
}

.row-min {
  --bs-gutter-x: 4px;
  --bs-gutter-y: 4px;
}
@media (min-width: 768px) {
  .row-min {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }
}

.no-select {
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
  user-select: none; /* Стандартный синтаксис */
}

.ally-click {
  position: relative;
}

.ally-click:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 44px;
  min-height: 44px;
  transform: translate(-50%, -50%);
}

.flex-1 {
  flex: 1;
}

.line-height-normal {
  line-height: 1;
}

.points-none {
  pointer-events: none !important;
}

.text-decoration-underline {
  text-underline-position: under;
}

.border-transparent {
  border-color: transparent !important;
}

.list-nostily {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

.icon-size-8 {
  --thema-mask-icon-width: 8px;
  --thema-mask-icon-height: 8px;
}

.icon-size-10 {
  --thema-mask-icon-width: 10px;
  --thema-mask-icon-height: 10px;
}

.icon-size-14 {
  --thema-mask-icon-width: 14px;
  --thema-mask-icon-height: 14px;
}

.icon-size-16 {
  --thema-mask-icon-width: 16px;
  --thema-mask-icon-height: 16px;
}

.icon-rotate-180 {
  transform: scale(1, -1);
}

.icon-rotate-90 {
  transform: rotate(90deg);
}

.icon-rotate-270 {
  transform: rotate(270deg);
}

.c-gap-adaptive {
  gap: 20px;
}
@media (min-width: 768px) {
  .c-gap-adaptive {
    gap: 40px;
  }
}

.swiper {
  transition: all 0.25s;
}
.swiper:not(.swiper-initialized) {
  visibility: hidden;
  opacity: 0;
}
.swiper-slide {
  height: auto;
}
.swiper-pagination {
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-color: #000;
  --swiper-pagination-bullet-inactive-color: var(--thema-color-cover);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 10px;
  position: static;
  display: flex;
  justify-content: center;
}
.swiper-pagination:not(.swiper-pagination-lock) {
  margin-top: 40px;
}
.swiper-pagination.swiper-pagination-bullets-dynamic {
  font-size: inherit;
  width: 100% !important;
  transform: translateX(0) !important;
}
.swiper-pagination-bullet {
  flex-shrink: 0;
}
.swiper-button-prev, .swiper-button-next {
  top: calc(50% - 24px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-top: 0;
  background-color: var(--thema-color-secondary);
  color: currentColor;
  border-radius: 40px;
  transition: all 0.25s;
}
.swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}
.swiper-button-prev:after, .swiper-button-prev:before, .swiper-button-next:after, .swiper-button-next:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: var(--px-border-radius);
}
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.swiper-button-prev *, .swiper-button-next * {
  z-index: 2;
}
@media (hover: hover) and (pointer: fine) {
  .swiper-button-prev:hover, .swiper-button-prev:focus-visible, .swiper-button-prev:active, .swiper-button-next:hover, .swiper-button-next:focus-visible, .swiper-button-next:active {
    background-color: var(--thema-color-secondary-accent);
  }
}
.swiper-button-prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.swiper-button-next {
  right: 0;
  transform: translate(50%, -50%);
}
.align_picture .swiper-button-prev, .align_picture .swiper-button-next {
  top: calc(var(--navigation-top, 100%) / 2);
}

.dropdown {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 768px) {
  .dropdown {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .dropdown {
    font-size: 16px;
  }
}
.dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  height: 40px;
  padding: 0 16px;
  background-color: var(--thema-color-secondary);
  border-color: transparent;
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-toggle.show {
  opacity: 0;
}
.dropdown-toggle__black {
  background-color: #000;
  color: #fff;
}
@media (min-width: 768px) {
  .dropdown-toggle {
    height: 50px;
    gap: 20px;
    padding: 0 20px;
  }
}
.dropdown-menu {
  min-width: 100%;
  padding: 0 20px;
  border-color: transparent;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translate(0, 0) !important;
  font-size: inherit !important;
}
.dropdown-menu li:not(:last-child):not(:first-child) {
  border-bottom: 1px solid var(--thema-color-cover);
}
.dropdown-item {
  position: relative;
  display: flex !important;
  padding: 20px 0 !important;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: inherit !important;
  line-height: 1 !important;
  transition: all 0.25s;
}
.dropdown-item:focus, .dropdown-item:hover {
  color: var(--thema-color-breadcrumb) !important;
  background-color: transparent !important;
}
@media (min-width: 1366px) {
  .dropdown-filter {
    min-width: 150px;
    max-width: 177px;
  }
}
@media (min-width: 1600px) {
  .dropdown-filter {
    max-width: 240px;
  }
}

.modal-backdrop {
  --bs-backdrop-opacity: 0.1;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--thema-color-breadcrumb);
  padding: 0;
  border-color: transparent;
  background-color: transparent;
}
.modal-close:hover, .modal-close:active {
  color: #000;
}
.modal-header {
  position: relative;
}

.modal-mobile {
  --bs-modal-margin: 0;
  --bs-modal-border-radius: 20px 20px 0 0;
  --bs-modal-header-padding: 20px;
  --bs-modal-padding: 0 20px;
  --bs-modal-header-border-width: 0;
  --bs-modal-border-color: transparent;
  --bs-modal-border-width: 0;
}
.modal-mobile.fade:not(.show) .modal-mobile-body {
  opacity: 0;
  transition: all 0.15s linear;
}
.modal-mobile.fade:not(.show) .modal-dialog {
  transform: translate(0, 50px);
}
.modal-mobile .modal-dialog {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.modal-mobile .modal-title {
  width: 100%;
  font-size: 20px;
  text-align: center;
  padding: 0 20px;
  min-height: 20px;
}
.modal-mobile .modal_dropdown-menu {
  position: static !important;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.modal-mobile .modal_dropdown-menu li:first-child {
  display: none;
}
.modal-mobile .modal_dropdown-menu .dropdown-item {
  font-size: 16px !important;
  font-weight: 400 !important;
  text-align: center;
  justify-content: center;
}
.modal-mobile .sp-block-container {
  padding-bottom: 40px;
}
.modal-mobile .element-page__menu-list {
  visibility: visible;
  opacity: 1;
  box-shadow: none;
  padding: 0;
  width: 100%;
  height: auto;
}

.offcanvas {
  --bs-offcanvas-width: 380px;
  --bs-offcanvas-padding-x: 20px;
  --bs-offcanvas-padding-y: 20px;
}
.offcanvas-body {
  --bs-offcanvas-padding-y: 0;
}
.offcanvas-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--thema-color-breadcrumb);
  padding: 0;
  border-color: transparent;
  background-color: transparent;
}
.offcanvas-close:hover, .offcanvas-close:active {
  color: #000;
}
.offcanvas-header {
  position: relative;
}
.offcanvas-title {
  width: 100%;
  font-size: 20px;
  text-align: center;
  padding: 0 20px;
}
.offcanvas-body {
  padding-right: calc(var(--bs-offcanvas-padding-x) / 2);
  margin-right: calc(var(--bs-offcanvas-padding-x) / 2);
}
.offcanvas-body::-webkit-scrollbar {
  width: 4px;
}
.offcanvas-body::-webkit-scrollbar-track {
  background: var(--thema-color-secondary);
}
.offcanvas-body::-webkit-scrollbar-thumb {
  background: #C8C8C8;
  border-radius: 10px;
}
.offcanvas-body::-webkit-scrollbar-thumb:hover {
  background: var(--thema-color-secondary-accent);
}

.offcanvas .modal__smartfilter,
.modal-mobile .modal__smartfilter {
  flex-direction: column;
  gap: 0 !important;
}
.offcanvas .modal_dropdown-filter,
.modal-mobile .modal_dropdown-filter {
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  padding: 20px 0 10px;
  max-width: 100%;
}
.offcanvas .modal_dropdown-filter:not(:first-of-type),
.modal-mobile .modal_dropdown-filter:not(:first-of-type) {
  border-top: 1px solid var(--thema-color-cover);
}
.offcanvas .modal_dropdown-filter .dropdown-toggle,
.modal-mobile .modal_dropdown-filter .dropdown-toggle {
  justify-content: space-between;
  height: auto;
  padding: 0 0 10px;
  border-radius: 0;
  background-color: transparent;
  width: 100%;
  font-weight: 500;
}
.offcanvas .modal_dropdown-filter .dropdown-toggle.show,
.modal-mobile .modal_dropdown-filter .dropdown-toggle.show {
  opacity: 1;
}
.offcanvas .modal_dropdown-filter .dropdown-toggle.show i.icon,
.modal-mobile .modal_dropdown-filter .dropdown-toggle.show i.icon {
  transform: scale(1, -1);
}
.offcanvas .modal_dropdown-filter .dropdown-menu,
.modal-mobile .modal_dropdown-filter .dropdown-menu {
  position: static !important;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.offcanvas .modal_dropdown-filter .dropdown-menu li:first-child,
.modal-mobile .modal_dropdown-filter .dropdown-menu li:first-child {
  display: none;
}
.offcanvas .modal_dropdown-filter .dropdown-menu .dropdown-item,
.modal-mobile .modal_dropdown-filter .dropdown-menu .dropdown-item {
  font-size: 16px !important;
  font-weight: 400 !important;
  padding: 10px 0 !important;
  border-bottom: none !important;
}
.offcanvas .modal_dropdown-filter .filter__label,
.modal-mobile .modal_dropdown-filter .filter__label {
  width: 100%;
}
.offcanvas .modal_dropdown-filter .filter__label.checked,
.modal-mobile .modal_dropdown-filter .filter__label.checked {
  font-weight: 400;
}
.offcanvas .modal_dropdown-filter .filter__input,
.modal-mobile .modal_dropdown-filter .filter__input {
  display: block;
}

.market-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.market-list:has(.market-list__item:hover) .market-list__item:not(:hover), .market-list:has(.market-list__item:active) .market-list__item:not(:active) {
  background-color: var(--thema-color-secondary);
}
.market-list__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background-color: var(--thema-color-cover);
  border-radius: 20px;
  transition: all 0.25s;
}
.market-list__item:hover, .market-list__item:active {
  background-color: var(--thema-color-secondary-accent);
}
.market-list__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 1600px) {
  .market-list__title {
    font-size: 16px;
  }
}
.market-list.market-list-modify {
  padding-left: 0;
}
.market-list.market-list-modify.row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}
@media (min-width: 768px) {
  .market-list.market-list-modify.row {
    --bs-gutter-x: 8px;
    --bs-gutter-y: 8px;
  }
}
.market-list.market-list-modify.row {
  gap: 0;
  margin-top: calc(-1 * var(--bs-gutter-y));
}
.market-list.market-list-modify .market-list__item {
  padding: 16px;
  color: var(--market-color-text);
  background-color: var(--market-color-bg, #E3E3E3);
}
@media (min-width: 768px) {
  .market-list.market-list-modify .market-list__item {
    padding: 24px;
  }
}
.market-list.market-list-modify .market-list__item:hover, .market-list.market-list-modify .market-list__item:active {
  background-color: color-mix(in srgb, var(--market-color-bg, #E3E3E3) 50%, white 50%);
}

#menu-mobile {
  display: none;
}

.menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: #fff;
  transition: all 0.25s;
}
@media (min-width: 768px) {
  .menu-mobile {
    gap: 60px;
    font-size: 36px;
  }
}
.menu-mobile__list {
  list-style: none;
  padding: 0;
  margin: -24px 0;
}
@media (min-width: 768px) {
  .menu-mobile__list {
    margin: -30px 0;
  }
}
.menu-mobile__item {
  display: block;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .menu-mobile__item {
    padding: 30px 0;
  }
}
.menu-mobile__item:hover, .menu-mobile__item:active {
  text-underline-position: under;
  text-decoration: underline !important;
}
.menu-mobile__burger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}
.menu-mobile__burger:hover, .menu-mobile__burger:active {
  background-color: var(--thema-color-border);
}
.menu-mobile__burger:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-image: url("../picture/icons/burger.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: all 0.25s;
}

#menu-mobile:not(:checked) ~ .menu-mobile {
  opacity: 0;
  visibility: hidden;
  display: none;
}

#menu-mobile:checked ~ nav .menu-mobile__burger {
  background-color: var(--thema-color-secondary);
  border-color: transparent;
}
#menu-mobile:checked ~ nav .menu-mobile__burger:hover, #menu-mobile:checked ~ nav .menu-mobile__burger:active {
  background-color: var(--thema-color-border);
}
#menu-mobile:checked ~ nav .menu-mobile__burger:after {
  transform: scale(0.8);
  mask-image: url("../picture/icons/close.svg");
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .section {
    gap: 40px;
    padding: 40px 0;
  }
}
@media (min-width: 1600px) {
  .section {
    padding-bottom: 0;
  }
}

.section-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .section-card {
    gap: 24px;
  }
}
.section-card__title {
  display: flex;
  align-items: center;
  gap: 7px;
}
@media (min-width: 768px) {
  .section-card__title {
    gap: 20px;
  }
}
.section-card__title:after {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background-color: currentColor;
  mask-image: url("../picture/icons/card-arrow.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  flex-shrink: 0;
  transition: all 0.25s;
}
@media (min-width: 768px) {
  .section-card__title:after {
    width: 28px;
    height: 20px;
    mask-image: url("../picture/icons/card-arrow-big.svg");
  }
}
.section-card:hover .section-card__title:after {
  transform: translateX(10px);
}
.section-card__picture {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto 1/1;
  overflow: hidden;
  border-radius: 20px;
}
.section-card__picture img {
  height: 100%;
  object-fit: cover;
  transition: all 0.25s;
}
.section-card:hover .section-card__picture img {
  transform: scale(1.2);
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  height: 100%;
  font-size: 12px;
  background-color: var(--product-card-bg, #D4EACD);
  border-radius: 20px;
  transition: all 0.25s;
}
.product-card:hover, .product-card:active {
  background-color: color-mix(in srgb, var(--product-card-bg, #D4EACD) 50%, white 50%);
}
@media (min-width: 1366px) {
  .product-card {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .product-card {
    font-size: 16px;
  }
}
.product-card__picture {
  max-height: 180px;
  width: 100%;
}
@media (min-width: 768px) {
  .product-card__picture {
    max-height: 240px;
  }
}
@media (min-width: 1366px) {
  .product-card__picture {
    max-height: 320px;
  }
}
@media (min-width: 1600px) {
  .product-card__picture {
    max-height: 400px;
  }
}
.product-card__picture:after {
  background-color: var(--product-card-bg, #D4EACD);
  transition: all 0.25s;
}
.product-card:hover .product-card__picture:after, .product-card:active .product-card__picture:after {
  background-color: color-mix(in srgb, var(--product-card-bg, #D4EACD) 50%, white 50%);
}
.product-card__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (min-width: 1366px) {
  .product-card__title {
    flex-direction: row;
  }
}

.brand-rows {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
@media (min-width: 768px) {
  .brand-rows {
    --bs-gutter-y: 40px;
  }
}
@media (min-width: 1600px) {
  .brand-rows {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 80px;
  }
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  font-size: 12px;
}
@media (min-width: 1024px) {
  .brand-card {
    gap: 40px;
  }
}
@media (min-width: 1366px) {
  .brand-card {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .brand-card {
    font-size: 16px;
  }
}
.brand-card__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .brand-card__title {
    gap: 10px;
  }
}
@media (min-width: 1366px) {
  .brand-card__title {
    gap: 20px;
  }
}
.brand-card__picture {
  width: 100%;
  height: auto;
  aspect-ratio: auto 189/83;
  overflow: hidden;
  border-radius: 16px;
}
.brand-card__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s;
}
.brand-card:hover .brand-card__picture img, .brand-card:focus-visible .brand-card__picture img, .brand-card:active .brand-card__picture img {
  transform: scale(1.05);
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-card__picture {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: auto 4/3;
}
.news-card__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s;
}
.news-card:hover .news-card__picture img {
  transform: scale(1.2);
}

.navigation {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--thema-color-breadcrumb);
  line-height: 1;
}
@media (min-width: 768px) {
  .navigation {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 125px;
  }
}
.navigation-pages {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navigation-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 80px;
  transition: all 0.25s;
}
@media (min-width: 768px) {
  .navigation-item {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1366px) {
  .navigation-item {
    width: 60px;
    height: 60px;
  }
}
.navigation-item:hover, .navigation-item:active {
  background-color: var(--thema-color-secondary-accent);
}
.navigation-item__current {
  font-weight: 500;
  pointer-events: none;
  background-color: var(--thema-color-secondary);
}
.navigation-count {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navigation-count__list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.properties-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 768px) {
  .properties-table {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .properties-table {
    font-size: 16px;
  }
}
.properties-table__name, .properties-table__value {
  padding: 10px 0;
  margin-bottom: 0;
  font-weight: inherit;
  border-bottom: 1px solid var(--thema-color-cover);
}
@media (min-width: 768px) {
  .properties-table__name, .properties-table__value {
    padding: 20px 0;
  }
}
.properties-table__name {
  opacity: 0.6;
  padding-right: 10px;
}

.video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  --poster-height: 250px;
}
@media (min-width: 768px) {
  .video-card {
    --poster-height: 337px;
  }
}
@media (min-width: 1024px) {
  .video-card {
    --poster-height: 345px;
  }
}
@media (min-width: 1366px) {
  .video-card {
    --poster-height: 466px;
  }
}
@media (min-width: 1600px) {
  .video-card {
    --poster-height: 468px;
  }
}
.video-card:after {
  position: absolute;
  top: calc(var(--poster-height) / 2);
  left: 50%;
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background: url("../picture/icons/play.svg") center/cover no-repeat;
  transform: translate(-50%, -50%);
  transition: all 0.25s;
}
@media (min-width: 1366px) {
  .video-card:after {
    width: 90px;
    height: 90px;
  }
}
.video-card:hover:after, .video-card:focus-visible:after, .video-card:active:after {
  transform: translate(-50%, -50%) scale(0.8);
}
.video-card__poster {
  width: 100%;
  height: var(--poster-height);
  object-fit: cover;
  border-radius: 20px;
}

.lazy-page {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 500;
  letter-spacing: -0.06em;
  color: var(--thema-color-breadcrumb);
}
.lazy-page:after, .lazy-page:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  flex: 1;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) {
  .category-list {
    justify-content: center;
  }
}
@media (min-width: 1366px) {
  .category-list {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  .category-list {
    font-size: 16px;
  }
}
.category-list__item {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s;
}
.category-list__item:hover, .category-list__item:active {
  color: var(--thema-color-breadcrumb);
}
.category-list__item.active, .category-list__item.is-current {
  color: initial;
  text-decoration: underline;
  text-underline-position: under;
}

.tags-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px !important;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 1600px) {
  .tags-list {
    font-size: 16px;
    gap: 40px !important;
  }
}
.tags-list__item {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s;
}
.tags-list__item:hover, .tags-list__item:active {
  color: var(--thema-color-breadcrumb);
}
.tags-list__item.is-current {
  color: initial;
}
.tags-list__cover {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 1600px) {
  .tags-list__cover {
    gap: 40px;
  }
}
.tags-list__cover {
  overflow: hidden;
  height: 48px;
}
@media (min-width: 768px) {
  .tags-list__cover {
    height: 14px;
  }
}
@media (min-width: 1600px) {
  .tags-list__cover {
    height: 16px;
  }
}
.tags-list__cover {
  transition: all 0.25s;
}
.tags-list__more:after {
  content: "еще";
}
.tags-list__more {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}
@media (min-width: 1600px) {
  .tags-list__more {
    font-size: 16px;
  }
}
.tags-list__checkbox:checked + .tags-list__cover {
  height: auto;
}
.tags-list__checkbox:checked ~ .tags-list__cover .tags-list__more:after {
  content: "скрыть";
  color: var(--thema-color-breadcrumb);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  margin-bottom: 0;
  border-top: 1px solid var(--thema-color-cover);
}
.contact-card__link {
  text-decoration: none;
  transition: all 0.25s;
}
.contact-card__link:hover, .contact-card__link:active {
  text-decoration: underline !important;
}
.contact-card__cover {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .contact-card__cover {
    padding-top: 0;
  }
}

.truncate-sm-text {
  max-height: 100%;
  transition: all 0.25s;
}
@media (min-width: 768px) {
  .truncate-sm-text {
    position: relative;
    max-height: 850px;
    overflow: hidden;
  }
  .truncate-sm-text:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 156px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  }
}
@media (min-width: 1024px) {
  .truncate-sm-text {
    max-height: 100%;
  }
  .truncate-sm-text:after {
    display: none;
  }
}
.truncate-sm-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  margin-top: 40px;
  padding: 16px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.25s;
}
.truncate-sm-button:after {
  content: "Читать целиком";
  color: inherit;
  background-color: transparent;
  transition: all 0.25s;
}
.truncate-sm-button:hover, .truncate-sm-button:active {
  background-color: #fff;
  color: #000;
}
.truncate-sm-button.hidden {
  display: none !important;
}
.truncate-sm-checkbox:checked + .truncate-sm-section .truncate-sm-text {
  max-height: 100%;
}
.truncate-sm-checkbox:checked + .truncate-sm-section .truncate-sm-button:after {
  content: "Скрыть";
}

.scroll-top {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background-color: #000;
  border: 1px solid transparent;
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  transition: all 0.25s;
}
.scroll-top:hover {
  background-color: var(--thema-color-breadcrumb);
}
.scroll-top.hide {
  display: none !important;
}

html,
:has(:target) {
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: var(--px-16-min);
  scrollbar-gutter: stable;
}

body {
  font-family: "Onest";
  font-size: 12px;
  font-weight: 300;
  line-height: 140%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  color: #000;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1366px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  body {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  * {
    scrollbar-width: thin;
    scrollbar-color: #C8C8C8 var(--thema-color-secondary);
  }
}
main {
  height: 100%;
  flex: 1;
  z-index: 1;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  main {
    margin-bottom: 80px;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto 1/1;
  object-fit: contain;
  position: relative;
  transition: all 0.25s;
  pointer-events: none;
}

img::after {
  content: "скоро тут будет фото \a" attr(alt);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--thema-color-secondary);
  white-space: pre-wrap;
  font-size: x-small;
  color: inherit;
}

figure {
  margin: 0;
}

figcaption {
  text-align: center;
  margin-top: 1em;
}

i.icon {
  aspect-ratio: auto 1/1;
}

a {
  color: inherit;
  text-underline-position: under;
  transition: all 0.25s;
}
a[href^="mailto:"], a[href^="tel:"] {
  text-wrap: nowrap;
}
a:hover, a:focus, a:active {
  color: inherit;
}

a:not([class]) {
  opacity: 1;
}
a:not([class]):hover, a:not([class]):focus, a:not([class]):active {
  opacity: 0.6;
}

a[class] {
  text-decoration: none;
}
a[class]:hover, a[class]:focus, a[class]:active {
  text-decoration: none;
}

:focus-visible {
  outline-offset: 4px;
}

hr {
  margin: 0;
  opacity: 1;
}

hr + hr {
  display: none;
}

p:empty {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}

.h1-large {
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .h1-large {
    font-size: 48px;
  }
}
@media (min-width: 1366px) {
  .h1-large {
    font-size: 80px;
  }
}
@media (min-width: 1600px) {
  .h1-large {
    font-size: 112px;
  }
}

h1, .h1 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 36px;
  }
}
@media (min-width: 1366px) {
  h1, .h1 {
    font-size: 44px;
  }
}
@media (min-width: 1600px) {
  h1, .h1 {
    font-size: 48px;
  }
}

h2, .h2 {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 20px;
  }
}
@media (min-width: 1366px) {
  h2, .h2 {
    font-size: 24px;
  }
}
@media (min-width: 1600px) {
  h2, .h2 {
    font-size: 28px;
  }
}

.header {
  position: relative;
  line-height: 1;
  z-index: 2;
  font-size: 12px;
  padding: 20px 0 0;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .header {
    font-size: 14px;
  }
}
@media (min-width: 1366px) {
  .header {
    padding: 40px 0 0;
    margin-bottom: 40px;
  }
}
@media (min-width: 1600px) {
  .header {
    font-size: 16px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .header__logo {
    gap: 9px;
  }
}
@media (min-width: 1366px) {
  .header__logo {
    gap: 12px;
  }
}
@media (min-width: 1600px) {
  .header__logo {
    gap: 14px;
  }
}
.header__logo-text {
  font-size: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .header__logo-text {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .header__logo-text {
    font-size: 23px;
  }
}
@media (min-width: 1366px) {
  .header__logo-text {
    font-size: 27px;
  }
}
@media (min-width: 1600px) {
  .header__logo-text {
    font-size: 32px;
  }
}
.header__logo-picture {
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .header__logo-picture {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1366px) {
  .header__logo-picture {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 1600px) {
  .header__logo-picture {
    width: 70px;
    height: 70px;
  }
}
.header__menu {
  list-style: none;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .header__menu {
    grid-template-columns: 184px auto auto;
  }
}
@media (min-width: 1024px) {
  .header__menu {
    grid-template-columns: 300px auto auto;
  }
}
@media (min-width: 1366px) {
  .header__menu {
    display: flex;
    justify-content: space-between;
    gap: 38px;
  }
}
.header__menu-logo {
  grid-column: span 2;
}
@media (min-width: 768px) {
  .header__menu-logo {
    grid-column: span 1;
  }
}
.header__menu-item {
  display: none;
}
@media (min-width: 1366px) {
  .header__menu-item {
    display: inline-flex;
    height: 50px;
  }
}
.header__menu-child {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px;
  font-size: 16px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  transition: all 0.25s;
}

header:has(.header__menu>li.is-parent:hover) .header__menu:before{
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  opacity: 10%;
}
@media (min-width: 1366px) {
  .header__menu-child {
    padding: 40px;
  }
}
.header__menu-child-ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 20px;
  max-width: 1840px;
  padding: 0;
  margin: auto;
}
.header__menu-child-item {
  display: block;
  width: calc(20% - 16px);
}
@media (min-width: 1600px) {
  .header__menu-child-item {
    width: calc(16.6666666667% - 16px);
  }
}
.header__menu-child-link {
  display: block;
  width: 100%;
  text-align: center;
}
.header__menu-child-link:hover, .header__menu-child-link:active {
  text-decoration: underline !important;
  text-underline-position: under;
}
.header__menu-card {
  position: relative;
  display: flex;
  gap: 20px;
  font-size: 14px;
  text-align: left;
  align-items: center;
}
.header__menu-card:hover, .header__menu-card:active {
  text-decoration: none !important;
}
@media (min-width: 768px) {
  .header__menu-card {
    flex-direction: column;
    font-size: 16px;
    align-items: start;
  }
}
@media (min-width: 1366px) {
  .header__menu-card {
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .header__menu-card {
    font-size: 20px;
  }
}
.header__menu-card:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  transform: translate(-50%, -50%);
}
@media (min-width: 1366px) {
  .header__menu-card:before {
    height: calc(100% + 40px);
  }
}
.header__menu-card-picture {
  display: block;
  aspect-ratio: auto 1/1;
  height: 50px;
  width: 50px;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .header__menu-card-picture {
    width: 100%;
    height: auto;
  }
}
.header__menu-card-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s;
}
.header__menu-card:hover .header__menu-card-picture img, .header__menu-card:active .header__menu-card-picture img {
  transform: scale(1.2);
}
.header__menu-catalog .header__menu-child:has(.header__menu-card:hover) .header__menu-card:not(:hover) {
  opacity: 0.7;
}
.header__menu-catalog .header__menu-child-ul {
  flex-direction: column;
  row-gap: 20px;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .header__menu-catalog .header__menu-child-ul {
    flex-direction: row;
  }
}
@media (min-width: 1366px) {
  .header__menu-catalog .header__menu-child-ul {
    row-gap: 40px;
  }
}
.header__menu-catalog .header__menu-child-item {
  width: 100%;
}
@media (min-width: 768px) {
  .header__menu-catalog .header__menu-child-item {
    width: calc(20% - 16px);
  }
}
@media (min-width: 1024px) {
  .header__menu-catalog .header__menu-child-item {
    padding-bottom: 28px;
  }
}
@media (min-width: 1366px) {
  .header__menu-catalog .header__menu-child-item {
    padding-bottom: 40px;
  }
}
.header__menu-catalog:not(:hover) .header__menu-child, .header__menu-item:not(:hover) .header__menu-child {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.header__menu-catalog {
  height: 40px;
}
@media (min-width: 768px) {
  .header__menu-catalog {
    height: 44px;
  }
}
@media (min-width: 1024px) {
  .header__menu-catalog {
    height: 50px;
  }
}
.header__menu-buttons {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  height: 40px;
}
@media (min-width: 768px) {
  .header__menu-buttons {
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .header__menu-buttons {
    height: 50px;
  }
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 50px;
  padding: 0 32px;
  background-color: transparent;
  border: 1px solid var(--thema-color-border);
  border-radius: 20px;
  transition: all 0.25s;
}
.header__button:hover i.icon.is-arrow, .header__button:active i.icon.is-arrow {
  transform: scale(1, -1);
}
@media (max-width: 365px) {
  .header__button {
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .header__button {
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .header__button {
    gap: 50px;
  }
}
.is-current .header__button {
  background-color: color-mix(in srgb, var(--thema-color-secondary) 60%, transparent);
}
.header__button-min {
  padding: 0 16px;
}
@media (min-width: 768px) {
  .header__button-min {
    padding: 0 32px;
    gap: 20px;
  }
}
.header__menu-item:hover .header__button, .header__menu-item:active .header__button {
  background-color: #000;
  color: #fff;
}
.header__search {
  transition: all 0.25s;
}
.header__search:hover, .header__searchactive {
  background-color: var(--thema-color-border);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0 20px;
  line-height: 1;
  font-size: 12px;
}
@media (min-width: 1366px) {
  .footer {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .footer {
    gap: 40px;
  }
}
@media (min-width: 1600px) {
  .footer {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .footer {
    padding: 40px 0 48px;
  }
}
@media (min-width: 1600px) {
  .footer {
    padding: 80px 0;
  }
}
.footer__logo {
  width: auto;
  height: 120px;
}
@media (min-width: 768px) {
  .footer__logo {
    height: 180px;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .footer__inner {
    gap: 32px;
    padding: 16px 0;
  }
}
@media (min-width: 1600px) {
  .footer__inner {
    padding: 24px 0;
  }
}
.footer__body {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 768px) {
  .footer__body {
    display: grid;
    justify-content: start;
    grid-template-columns: repeat(3, auto);
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .footer__body {
    gap: 60px;
    grid-template-columns: auto auto 500px;
  }
}
@media (min-width: 1366px) {
  .footer__body {
    gap: 80px;
    grid-template-columns: auto auto 330px;
  }
}
@media (min-width: 1600px) {
  .footer__body {
    gap: 120px;
    grid-template-columns: auto minmax(180px, auto) 360px;
  }
}
.footer__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .footer__menu {
    gap: 32px;
  }
}
.footer__menu:has(.footer__menu-item:hover) .footer__menu-item:not(:hover), .footer__menu:has(.footer__menu-item:active) .footer__menu-item:not(:active) {
  opacity: 0.8;
}
.footer__menu-item {
  transition: all 0.25s;
}
.footer__menu-item:hover, .footer__menu-item:active {
  text-decoration: underline !important;
  text-underline-position: under;
}
.footer__info {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .footer__info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

.element-page {
  display: grid;
  grid-template-columns: 100%;
  gap: 40px;
  border-bottom: 1px solid #000;
}
.element-page:not(:last-child) {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .element-page:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (min-width: 1366px) {
  .element-page:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (min-width: 1600px) {
  .element-page:not(:last-child) {
    margin-bottom: 120px;
  }
}
@media (min-width: 1024px) {
  .element-page {
    grid-template-columns: 73% 27%;
    gap: 80px 0;
  }
}
@media (min-width: 1024px) {
  .element-page__header {
    padding-left: 20px;
  }
}
@media (min-width: 1366px) {
  .element-page__header {
    grid-row: span 2;
    padding-left: 40px;
  }
}
@media (min-width: 1900px) {
  .element-page__header {
    padding-left: 80px;
  }
}
.element-page__header-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
@media (min-width: 768px) {
  .element-page__header-top {
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .element-page__header-top {
    margin-bottom: 160px;
  }
}
@media (min-width: 1366px) {
  .element-page__header-top {
    margin-bottom: 180px;
  }
}
@media (min-width: 1900px) {
  .element-page__header-top {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}
@media (min-width: 1366px) {
  .element-page__header-buy {
    margin-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .element-page__body {
    grid-column: span 2;
  }
}
@media (min-width: 1366px) {
  .element-page__body {
    grid-column: span 1;
  }
}
.element-page__body hr:last-child {
  display: none;
}
.element-page__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .element-page__section {
    gap: 40px;
    padding: 40px 0;
  }
}
@media (min-width: 1024px) {
  .element-page__section {
    flex-direction: row;
    gap: 0;
  }
}
@media (min-width: 1366px) {
  .element-page__section {
    padding: 80px 0;
  }
}
@media (min-width: 1600px) {
  .element-page__section {
    padding: 160px 0;
  }
}
@media (min-width: 1024px) {
  .element-page__section-title {
    width: 250px;
    padding-right: 10px;
    flex-shrink: 0;
  }
}
@media (min-width: 1600px) {
  .element-page__section-title {
    width: 350px;
  }
}
.element-page__slider {
  padding-left: calc(var(--bs-gutter-x) / 2);
  padding-right: calc(var(--bs-gutter-x) / 2);
}
@media (min-width: 1024px) {
  .element-page__slider {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .element-page__slider-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .element-page__slider {
    padding-left: 0;
    padding-right: 0;
  }
}
.element-page__slide {
  height: 196px;
  background-color: var(--product-card-bg, #D4EACD);
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .element-page__slide {
    height: 396px;
  }
}
@media (min-width: 1024px) {
  .element-page__slide {
    width: 100%;
    margin-right: 0 !important;
  }
  .element-page__slide:first-child {
    height: 364px;
  }
  .element-page__slide:nth-child(2), .element-page__slide:nth-child(3) {
    height: 200px;
    width: calc(50% - 4px);
  }
  .element-page__slide {
    height: 400px;
  }
}
@media (min-width: 1366px) {
  .element-page__slide:first-child {
    height: 572px;
  }
  .element-page__slide:nth-child(2), .element-page__slide:nth-child(3) {
    height: 316px;
  }
  .element-page__slide {
    height: 638px;
  }
}
@media (min-width: 1600px) {
  .element-page__slide:first-child {
    height: 770px;
  }
  .element-page__slide:nth-child(2), .element-page__slide:nth-child(3) {
    height: 428px;
  }
  .element-page__slide {
    height: 860px;
  }
}
.element-page__gallery {
  margin-left: calc(-1 * var(--bs-gutter-x) / 2);
  margin-right: calc(-1 * var(--bs-gutter-x) / 2);
}
@media (min-width: 1024px) {
  .element-page__gallery {
    margin-left: 0;
    margin-right: 0;
  }
}
.element-page .video-card:after {
  top: 50%;
}
.element-page__picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.element-page__picture-detail {
  object-fit: contain;
}
.element-page__brand {
  display: inline-block;
  transition: all 0.25s;
}
.element-page__brand:hover, .element-page__brand:active {
  transform: scale(1.1);
}
.element-page__brand-logo {
  height: 40px;
}
@media (min-width: 1024px) {
  .element-page__brand-logo {
    height: 80px;
  }
}
.element-page__list-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.element-page__menu {
  position: fixed;
  bottom: 20px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
  font-weight: 400;
  line-height: 1;
  font-size: 12px;
}
@media (min-width: 768px) {
  .element-page__menu {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .element-page__menu {
    font-size: 16px;
  }
}
@media (min-width: 1366px) {
  .element-page__menu {
    position: sticky;
    top: 100px;
    right: initial;
    bottom: initial;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--thema-color-border);
    font-size: 14px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1600px) {
  .element-page__menu {
    font-size: 16px;
    margin-bottom: 160px;
  }
}
.element-page__menu-list {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 260px;
  height: 0;
  list-style: none;
  padding: 53px 40px 40px;
  margin: 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s;
}
@media (min-width: 1366px) {
  .element-page__menu-list {
    gap: 24px;
    padding: 0;
    height: 100%;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
  }
}
.element-page__menu-item {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  background-color: transparent;
  border-top: 1px solid var(--thema-color-cover);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}
@media (min-width: 1366px) {
  .element-page__menu-item {
    padding: 0;
    width: auto;
    text-align: left;
    border-top: none;
  }
  .element-page__menu-item:hover, .element-page__menu-item:active {
    color: var(--thema-color-breadcrumb);
  }
  .element-page__menu-item.is-current {
    color: #000;
  }
}
.element-page__menu-item {
  transition: all 0.25s;
}
.element-page__menu-list li:first-child .element-page__menu-item {
  border-top: none;
}
.element-page__menu-close {
  visibility: hidden;
  opacity: 0;
  height: 0;
  position: absolute;
  top: 20px;
  right: 25px;
  border-color: transparent;
  background-color: transparent;
  color: var(--thema-color-breadcrumb);
  transition: all 0.25s;
}
.element-page__menu-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 50px;
  background-color: #000;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.25s;
}
@media (min-width: 768px) {
  .element-page__menu-button {
    position: static;
    display: flex;
  }
}
@media (min-width: 1366px) {
  .element-page__menu-button {
    display: none;
  }
}
.element-page__menu-checkbox:checked + .element-page__menu .element-page__menu-button {
  background-color: var(--thema-color-border);
}
.element-page__menu-checkbox:checked + .element-page__menu .element-page__menu-close {
  visibility: visible;
  opacity: 1;
  height: auto;
  z-index: 3;
}
.element-page__menu-checkbox:checked + .element-page__menu .element-page__menu-list {
  visibility: visible;
  opacity: 1;
  height: 100%;
  position: relative;
  z-index: 2;
}
.element-page__dropdown {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  width: 100%;
  background-color: transparent;
  border-color: transparent;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.element-page__certificate {
  width: 32px;
}
@media (min-width: 768px) {
  .element-page__certificate {
    width: 45px;
  }
}

.section-slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .section-slider {
    gap: 40px;
  }
}

.brands__title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .brands__title {
    flex-direction: row;
    gap: 40px;
    text-align: left;
    text-align: start;
  }
}
.brands__photo {
  border-radius: 20px;
}
.brands__logo {
  max-height: 100px !important;
  width: 128px  !important;
  border-radius: 0 !important;
}

@media (min-width: 1366px) {
  .brands__logo {
   width: 180px  !important;
  }
}
@media (min-width: 1600px) {
  .brands__logo {
    width: 250px  !important;
  }
}
.brands__preview {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 40px;
}
@media (min-width: 1366px) {
  .brands__preview {
    --bs-gutter-x: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.brands__preview-text {
  gap: 20px;
}
@media (min-width: 768px) {
  .brands__preview-text {
    gap: 40px;
  }
}

.news-list {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
@media (min-width: 768px) {
  .news-list {
    --bs-gutter-y: 40px;
  }
}
@media (min-width: 1366px) {
  .news-list {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 80px;
  }
}

.search__label {
  display: flex;
  align-items: center;
  padding-right: 72px;
  padding-left: 32px;
  height: 70px;
}
.search__page .search__label {
  border: 1px solid #000;
  border-radius: 20px;
}
.search__button {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  background-color: transparent;
  border-color: transparent;
  transition: all 0.25s;
}
.search__button:hover, .search__buttonactive {
  color: var(--thema-color-border);
}
.search__input {
  width: 100%;
  height: 18px;
  border-color: transparent;
}
.search__input:focus-visible {
  outline: none;
}

.search-modal {
  --bs-modal-margin: 20px;
  --bs-modal-width: 100%;
  --bs-modal-border-radius: 20px;
  --bs-modal-header-border-color: transparent;
  --bs-modal-border-color: transparent;
  --bs-modal-padding: 0;
}
@media (min-width: 768px) {
  .search-modal {
    --bs-modal-width: 620px;
  }
}
@media (min-width: 1024px) {
  .search-modal {
    --bs-modal-margin: 90px;
  }
}
@media (min-width: 1366px) {
  .search-modal {
    --bs-modal-margin: 40px;
    --bs-modal-width: 1000px;
  }
}
.search-modal {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}
.search-modal__result {
  position: relative;
  display: none;
  margin-top: 10px;
  padding-left: 24px;
  padding-right: 14px;
  background-color: #fff;
  border-radius: 20px;
  pointer-events: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .search-modal__result {
    padding-left: 32px;
    padding-right: 22px;
  }
}
.search-modal__result-body {
  padding: 24px 10px 24px 0;
  max-height: calc(100vh - 90px - var(--bs-modal-margin) * 2);
  overflow-x: hidden;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .search-modal__result-body {
    padding: 32px 10px 32px 0;
  }
}
.search-modal__result-body:before, .search-modal__result-body:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 20px;
  background: -webkit-linear-gradient(0deg, #fff, transparent 100%);
  background: -moz-linear-gradient(0deg, #fff, transparent 100%);
  background: linear-gradient(#fff, transparent);
  z-index: 2;
}
.search-modal__result-body:before {
  top: 0;
}
.search-modal__result-body:after {
  bottom: 0;
  background: -webkit-linear-gradient(0deg, transparent, #fff 100%);
  background: -moz-linear-gradient(0deg, transparent, #fff 100%);
  background: linear-gradient(transparent, #fff);
}
.search-modal__result-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 10px;
}
.search-modal__result-item b {
  font-weight: 500;
}
.search-modal__result-item.is-selected, .search-modal__result-item:hover, .search-modal__result-item:active {
  background-color: color-mix(in srgb, var(--img-color, #D4EACD) 10%, white 90%);
}
.search-modal__result-item {
  border-radius: 20px;
  transition: all 0.25s;
}
.search-modal__result-picture {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: var(--img-color, #D4EACD);
  border-radius: 20px;
}

.filter__label {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: auto;
}
.filter__label.checked {
  font-weight: 600;
}
.filter__label:not(.disabled):not(.checked) {
  cursor: pointer;
}
.filter__label.disabled {
  opacity: 0.4;
}
.filter__input {
  display: none;
}
.filter__result {
  margin: 0 calc(-1 * var(--bs-gutter-x) / 2);
  padding: 0 calc(var(--bs-gutter-x) / 2);
  overflow-y: hidden;
  overflow-x: auto;
}
.filter__result > * {
  flex-shrink: 0;
}
@media (min-width: 1600px) {
  .filter__result {
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
  }
  .filter__result > * {
    flex-shrink: 1;
  }
}

@media (min-width: 1366px) {
  .smartfilter .dropdown-filter:nth-of-type(n+5) {
    display: none;
  }
  .smartfilter__cover:not(:has(.dropdown-filter:nth-of-type(5))) .smartfilter__button {
    display: none;
  }
}
@media (min-width: 1600px) {
  .smartfilter .dropdown-filter:nth-of-type(5) {
    display: flex;
  }
  .smartfilter .dropdown-filter:nth-of-type(n+6) {
    display: none;
  }
  .smartfilter__cover:has(.dropdown-filter:nth-of-type(5)) .smartfilter__button {
    display: block;
  }
  .smartfilter__cover:not(:has(.dropdown-filter:nth-of-type(6))) .smartfilter__button {
    display: none;
  }
}

.home-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr 1fr 1fr;
  gap: 10px;
  margin-top: -10px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  line-height: 1;
}
@media (min-width: 768px) {
  .home-section {
    gap: 20px;
    font-size: 20px;
    margin-top: -24px;
  }
}
@media (min-width: 1024px) {
  .home-section {
    font-size: 26px;
  }
}
@media (min-width: 1366px) {
  .home-section {
    gap: 40px;
    font-size: 34px;
    margin-top: -40px;
  }
}
@media (min-width: 1600px) {
  .home-section {
    font-size: 48px;
    margin-top: -60px;
  }
}
.home-section > *:not(:has(img)) {
  margin: auto;
}
.home-section > *:first-child {
  position: relative;
  grid-column: span 2;
}
.home-section > *:first-child > div {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 106px;
  text-align: right;
  text-align: end;
  z-index: 2;
  transform: translateX(-120%);
}
.home-section > *:first-child > div span {
  display: block;
}
@media (min-width: 768px) {
  .home-section > *:first-child > div span {
    display: inline;
  }
}
@media (min-width: 768px) {
  .home-section > *:first-child > div {
    top: 50px;
    width: 284px;
    transform: translateX(-125%);
  }
}
@media (min-width: 1024px) {
  .home-section > *:first-child > div {
    top: 60px;
    width: 370px;
  }
}
@media (min-width: 1366px) {
  .home-section > *:first-child > div {
    top: 92px;
    width: 485px;
    transform: translateX(-122%);
  }
}
@media (min-width: 1600px) {
  .home-section > *:first-child > div {
    top: 122px;
    width: 678px;
    transform: translateX(-114%);
  }
}
.home-section > *:first-child img {
  margin: 0 auto;
  max-height: 214px;
}
@media (min-width: 768px) {
  .home-section > *:first-child img {
    max-height: 432px;
  }
}
@media (min-width: 1024px) {
  .home-section > *:first-child img {
    max-height: 576px;
  }
}
@media (min-width: 1366px) {
  .home-section > *:first-child img {
    max-height: 770px;
  }
}
@media (min-width: 1600px) {
  .home-section > *:first-child img {
    max-height: 1082px;
  }
}
.home-section > *:nth-child(5), .home-section > *:nth-child(even) {
  justify-items: end;
  text-align: right;
  text-align: end;
}
.home-section > *:nth-child(2) {
  grid-row: span 2;
}
.home-section > *:nth-child(4) {
  grid-row: span 2;
}
.home-section img:not(.round) {
  height: 100%;
}
.home-section__title {
  max-width: 340px;
  margin: auto;
}
@media (min-width: 768px) {
  .home-section__title {
    max-width: 728px;
  }
}
@media (min-width: 1366px) {
  .home-section__title {
    max-width: 1252px;
  }
}
@media (min-width: 1600px) {
  .home-section__title {
    max-width: 1647px;
  }
}

.home-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .home-block {
    grid-template-columns: 1fr 1fr;
  }
  .home-block__header {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) {
  .home-block {
    align-items: center;
  }
}
@media (min-width: 1600px) {
  .home-block {
    gap: 40px;
  }
}
.home-block__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .home-block__body {
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .home-block__body {
    gap: 20px;
  }
}
@media (min-width: 1366px) {
  .home-block__body {
    gap: 40px;
    height: 100%;
    align-items: flex-end;
  }
}
.home-block__body > *:not(ul) {
  text-align: center;
}
@media (min-width: 1024px) {
  .home-block__body {
    text-align: right;
    text-align: end;
  }
}
.home-block__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
@media (min-width: 1024px) {
  .home-block__header {
    text-align: right;
    text-align: end;
  }
}
@media (min-width: 1366px) {
  .home-block__header {
    gap: 40px;
    height: 100%;
    justify-content: flex-end;
  }
}
.home-block__picture {
  order: 2;
}
@media (min-width: 1024px) {
  .home-block__picture {
    order: 0;
  }
}
@media (min-width: 1024px) {
  .home-block__header {
    grid-column: span 1;
  }
  .home-block__picture {
    grid-row: span 2;
  }
}
.home-block ul:not([class]) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-block ul:not([class]) li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-block ul:not([class]) li:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
}
@media (min-width: 1024px) {
  .home-block ul:not([class]) li {
    gap: 20px;
    justify-content: end;
  }
}
@media (min-width: 1366px) {
  .home-block ul:not([class]) {
    gap: 20px;
  }
}

.home-row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
@media (min-width: 768px) {
  .home-row {
    --bs-gutter-y: 20px;
  }
}
@media (min-width: 1366px) {
  .home-row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
  }
}
.home-row__block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1366px) {
  .home-row__block {
    gap: 40px;
  }
}

.news-page,
.home-page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.news-page > *,
.home-page > * {
  padding: 0;
  margin: 0;
}
@media (min-width: 1366px) {
  .news-page,
  .home-page {
    gap: 80px;
  }
}
@media (min-width: 1600px) {
  .news-page,
  .home-page {
    gap: 160px;
  }
}

.fancybox-img-color .fancybox-image, .fancybox-img-color .f-thumbs__slide__img {
  background-color: var(--img-color);
}

/*# sourceMappingURL=style.css.map */
