@charset "UTF-8";
/* Стандартный transition для hover-анимаций */
/* Миксин замены цвета placeholder у input.
Нужно добавить в стилях элемента конструкцию вида @include placeholder(#000); */
/*Inter*/
@font-face {
  font-family: "Inter-Regular";
  src: local("Inter-Regular"), url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff"), url("../fonts/Inter-Regular.ttf") format("ttf");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter-Medium";
  src: local("Inter-Medium"), url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff"), url("../fonts/Inter-Medium.ttf") format("ttf");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter-SemiBold";
  src: local("Inter-SemiBold"), url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff"), url("../fonts/Inter-SemiBold.ttf") format("ttf");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter-Bold";
  src: local("Inter-Bold"), url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff"), url("../fonts/Inter-Bold.ttf") format("ttf");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "InstrumentSerif-Italic";
  src: local("InstrumentSerif-Italic"), url("../fonts/InstrumentSerif-Italic.woff2") format("woff2"), url("../fonts/InstrumentSerif-Italic.woff") format("woff"), url("../fonts/InstrumentSerif-Italic.ttf") format("ttf");
  font-style: normal;
  font-display: swap;
}

/**
 * Set up a decent box model on the root element
 */
:root {
  --brand-color: rgba(26, 25, 24, 1);
  --brand-action-color: rgba(255, 212, 38, 1);
  --font-main-color: rgba(0, 0, 0, 1);
  --font-second-color: rgba(81, 81, 81, 1);
  --font-special-color: rgba(142, 142, 142, 1);
  --bg-color: rgba(247, 247, 247, 1);
  --bg-second-color: rgba(255, 255, 255, 1);
  --bg-chip-color: rgba(221, 244, 255, 1);
  --backdrop-color: rgba(185, 185, 185, 1);
  --border-radius-default: 5px;
  --line-color: rgba(221, 221, 221, 1);
  --link-color: rgba(63, 140, 227, 1);
  --scrollTop: 0;
  --font-regular: "Inter-Regular";
  --font-medium: "Inter-Medium";
  --font-semibold: "Inter-Semibold";
  --font-italic: "InstrumentSerif-Italic";
  --font-bold: "Inter-Bold";
  --btn-bg-color: rgba(0, 0, 0, 1);
  --btn-text-color: rgba(255, 255, 255, 1);
  --rectangle-bg-size: 25px;
  --header-height: -webkit-calc(3.625rem - 1px);
  --header-height: -moz-calc(3.625rem - 1px);
  --header-height: calc(3.625rem - 1px);
  --padding-container-mobile: 9px;
}

@media only screen and (max-width: 767px) {
  :root {
    --header-height: -webkit-calc(60px - 1px);
    --header-height: -moz-calc(60px - 1px);
    --header-height: calc(60px - 1px);
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  caret-color: var(--brand-color);
}

html {
  scroll-padding-top: 8.125rem;
  min-height: 100dvh;
  scroll-behavior: smooth;
  /*font-size: -webkit-calc(0.4em + 0.5vw);*/
  /*font-size: -moz-calc(0.4em + 0.5vw);*/
  /*font-size: calc(0.4em + 0.5vw);*/
}

@supports (scrollbar-gutter: stable) {
  html {
    scrollbar-gutter: stable;
  }
}

@media only screen and (max-width: 1919px) {
  html {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

@media print {
  * {
    color: black !important;
    background: none !important;
  }
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

strong,
.strong {
  font-family: var(--font-semibold);
}

body {
  height: 100%;
  font-family: var(--font-regular), Arial, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 25px;
  font-style: normal;
  font-weight: normal;
  color: var(--font-main-color);
  position: relative;
  background-color: var(--bg-color);
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased !important;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  outline: none !important;
}

@media only screen and (max-width: 767px) {
  body {
    background-color: var(--bg-second-color);
  }
}

body.modal-is-open {
  overflow: hidden;
}

body.mobile-menu-opened {
  overflow: hidden;
}

body:has(.is-opened) {
  overflow: hidden;
}

body:has(.is-opened)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--backdrop-color);
}

html::-webkit-scrollbar {
  height: 0.3125rem;
  width: 0.625rem;
  background-color: rgb(249, 249, 253);
}

html::-webkit-scrollbar-thumb {
  background-color: var(--font-main-color);
}

html::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: rgb(249, 249, 253);
}

table {
  width: 100%;
}

@media (max-width: 30em) {
  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    margin-bottom: 1em;
  }
}

a {
  text-decoration: none;
  color: var(--font-main-color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: underline;
  color: var(--brand-color);
  opacity: 0.7;
}

a:hover .svg-icon {
  fill: var(--brand-color);
}

a:active {
  opacity: 0.5;
}

img {
  max-width: 100%;
}

img:not([alt]) {
  border: 3px solid red;
}

figure {
  margin: 0;
}

svg {
  z-index: 4;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

button[disabled] {
  cursor: not-allowed;
}

button:hover {
  outline: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

.container {
  margin: 0 auto;
}

.container--relative {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .container {
    padding: 0 0.5rem;
  }
}

textarea {
  resize: vertical;
}

input {
  border: 0;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

input[disabled],
textarea[disabled],
button[disabled] {
  cursor: not-allowed;
}

[data-fancybox] {
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

[data-fancybox]:hover {
  opacity: 0.9;
}

.recrangle-bg {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(45%, transparent), color-stop(75%, rgba(255, 255, 255, 0.9))), -webkit-gradient(linear, left top, right top, color-stop(45%, transparent), color-stop(90%, rgba(255, 255, 255, 0.9))), -webkit-gradient(linear, right top, left top, color-stop(35%, transparent), to(rgba(255, 255, 255, 0.9))), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Crect width='25' height='25' fill='white'/%3E%3Cpath d='M0 0h25v1H0zM0 0h1v25H0z' fill='%23e0e0e062'/%3E%3C/svg%3E");
  background-image: -webkit-linear-gradient(top, transparent 45%, rgba(255, 255, 255, 0.9) 75%), -webkit-linear-gradient(left, transparent 45%, rgba(255, 255, 255, 0.9) 90%), -webkit-linear-gradient(right, transparent 35%, rgba(255, 255, 255, 0.9) 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Crect width='25' height='25' fill='white'/%3E%3Cpath d='M0 0h25v1H0zM0 0h1v25H0z' fill='%23e0e0e062'/%3E%3C/svg%3E");
  background-image: -moz-linear-gradient(top, transparent 45%, rgba(255, 255, 255, 0.9) 75%), -moz-linear-gradient(left, transparent 45%, rgba(255, 255, 255, 0.9) 90%), -moz-linear-gradient(right, transparent 35%, rgba(255, 255, 255, 0.9) 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Crect width='25' height='25' fill='white'/%3E%3Cpath d='M0 0h25v1H0zM0 0h1v25H0z' fill='%23e0e0e062'/%3E%3C/svg%3E");
  background-image: linear-gradient(to bottom, transparent 45%, rgba(255, 255, 255, 0.9) 75%), linear-gradient(to right, transparent 45%, rgba(255, 255, 255, 0.9) 90%), linear-gradient(to left, transparent 35%, rgba(255, 255, 255, 0.9) 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Crect width='25' height='25' fill='white'/%3E%3Cpath d='M0 0h25v1H0zM0 0h1v25H0z' fill='%23e0e0e062'/%3E%3C/svg%3E");
  -webkit-background-size: 100% 100%, 100% 100%, 100% 100%, var(--rectangle-bg-size) var(--rectangle-bg-size);
  background-size: 100% 100%, 100% 100%, 100% 100%, var(--rectangle-bg-size) var(--rectangle-bg-size);
  background-position: -1px -1px;
}

.text-special {
  color: var(--brand-action-color);
  font-family: var(--font-italic);
}

span.size-20 {
  font-size: 1.25rem;
  font-variation-settings: "OPSZ" 20;
}

span.size-24 {
  font-size: 1.5rem;
  font-variation-settings: "OPSZ" 24;
}

span.size-40 {
  font-size: 2.5rem;
  font-variation-settings: "OPSZ" 40;
}

span.size-48 {
  font-size: 3rem;
  font-variation-settings: "OPSZ" 48;
}

.link {
  color: var(--link-color);
}

.title {
  color: var(--font-main-color);
  font-family: var(--font-bold);
}

.title--h1 {
  font-size: 3rem;
  line-height: 3.125rem;
  letter-spacing: -2px;
}

.title--h2 {
  font-size: 2.25rem;
  line-height: 2.6875rem;
}

.title--h3 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.bordered-top {
  border-top: 1px solid var(--line-color);
}

.bordered-left {
  border-left: 1px solid var(--line-color);
}

.bordered-right {
  border-right: 1px solid var(--line-color);
}

.bordered-bottom {
  border-bottom: 1px solid var(--line-color);
}

.bordered-right + .bordered-left {
  border-left: none;
}

.bordered-bottom + .bordered-top {
  border-top: none;
}

img.lazy {
  opacity: 0;
}

img.lazy.loaded {
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  min-height: 100%;
}

.table {
  display: table;
}

.tr {
  display: table-row;
}

.thead {
  display: table-header-group;
}

.tbody {
  display: table-row-group;
}

.tfoot {
  display: table-footer-group;
}

.col {
  display: table-column;
}

.colgroup {
  display: table-column-group;
}

.td,
.th {
  display: table-cell;
}

.caption {
  display: table-caption;
}

.up-scroll {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  color: var(--font-main-color);
  z-index: 5;
}

.up-scroll:hover {
  color: var(--font-main-color);
  opacity: 1;
  -webkit-box-shadow: 0 0 0 0.2em var(--bg-second-color), 0 0 0 0.4em var(--font-main-color);
  box-shadow: 0 0 0 0.2em var(--bg-second-color), 0 0 0 0.4em var(--font-main-color);
}

.up-scroll.visible {
  opacity: 1;
  visibility: visible;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

/*===Hover Effects*/
/* Underline From Center */
.hvr-underline-from-center {
  -webkit-transform: perspective(1px) translateZ(0);
  -moz-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-center:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: var(--bg-color);
  height: 4px;
  -webkit-transition-property: left, right;
  -moz-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
  left: 0;
  right: 0;
}

.box-wrap:hover .box {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

.box-wrap:hover .box:hover {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-filter: blur(0px);
  filter: blur(0px);
  opacity: 1;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container-custom {
  width: 100%;
  /* 1 */
  margin: 0 auto;
  /* 2 */
  padding: 0 10px;
  /* 3 */
}

@media (min-width: 320px) {
  .container-custom {
    max-width: 330px;
  }
}

@media (min-width: 375px) {
  .container-custom {
    max-width: 350px;
  }
}

@media (min-width: 425px) {
  .container-custom {
    max-width: 400px;
  }
}

@media (min-width: 576px) {
  .container-custom {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-custom {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container-custom {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-custom {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container-custom {
    max-width: 1320px;
  }
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .over-hide {
    overflow: hidden;
  }
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  font-size: 1px;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
}

.truncate-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.center-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.center-absolute-x {
  position: absolute;
  left: 50%;
  margin-right: -50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.center-absolute-y {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.max-text-line-1 {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.max-text-line-2 {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.max-text-line-3 {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.max-text-line-4 {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.max-text-line-5 {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.hidden {
  display: none;
}

.hover-underline {
  position: relative;
}

.hover-underline::after,
.hover-underline::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(var(--font-main-color)), to(var(--bg-color)));
  background: -webkit-linear-gradient(left, var(--font-main-color), var(--bg-color));
  background: -moz-linear-gradient(left, var(--font-main-color), var(--bg-color));
  background: linear-gradient(to right, var(--font-main-color), var(--bg-color));
  bottom: 0.375rem;
  left: 0;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  -moz-transition: transform 0.4s ease-out, -moz-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out, -moz-transform 0.4s ease-out;
}

.hover-underline::before {
  top: 0.4375rem;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
}

.hover-underline:has(a:hover)::after,
.hover-underline:has(a:hover)::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.icon.material-symbols-outlined {
  font-size: 20px; /* Preferred icon size */
}

@media only screen and (max-width: 767px) {
  .icon.icon--open {
    display: block;
  }

  .icon.icon--close {
    display: none;
  }

  .is-opened .icon.icon--open {
    display: none;
  }

  .is-opened .icon.icon--close {
    display: block;
  }
}

/**
 * Кнопки
 */
.btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  gap: 5px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  font-size: 0.875rem;
  border: none;
  padding: 0.625rem;
  border-radius: 3px;
  background-color: var(--btn-bg-color);
  color: var(--btn-text-color);
  text-transform: none;
  height: auto;
  line-height: 1;
}

.btn .icon {
  color: var(--btn-text-color);
}

.btn__icon {
  font-size: 1.125rem;
  font-variation-settings: "OPSZ" 18;
}

.btn:hover {
  text-decoration: none;
  color: var(--btn-text-color);
  opacity: 0.8;
}

.btn:active {
  opacity: 0.6;
}

.btn--md {
  padding: 0.625rem 0.9375rem;
  border-radius: 4px;
}

.btn--md:not(:has(.btn__text)) {
  padding: 0.625rem;
}

.btn--brand {
  background-color: var(--brand-color);
}

.btn--brand:hover {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.btn--text {
  background-color: transparent;
  padding: 0;
  font-size: 1rem;
}

.btn--text .icon {
  color: inherit;
}

.btn--text:hover {
  color: inherit;
}

.btn--play {
  width: 58px;
  aspect-ratio: 1;
  background-color: var(--brand-action-color);
  border-radius: 50%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  cursor: pointer;
}

.btn--play .icon {
  color: var(--font-main-color);
}

@media only screen and (max-width: 767px) {
  .btn--install-app {
    font-size: 13px;
    padding: 10px;
    margin-right: 20px;
  }
}

.btn--install-app .icon {
  font-size: 13px;
}

.btn--outlined {
  background-color: var(--btn-text-color);
  border: 1px solid var(--btn-bg-color);
  color: var(--btn-bg-color);
}

.btn--outlined .icon {
  color: inherit;
}

.btn--outlined:hover {
  color: inherit;
}

.btn--inline {
  display: inline-block;
}

.btn--text-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
}

.svg-icon {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: var(--font-main-color);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 100%;
}

.svg-icon--add {
  width: 1.4375rem;
  aspect-ratio: 1;
  margin-left: 0.125rem;
  margin-top: 0.125rem;
}

.main-logo {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  gap: 1rem;
  padding-right: 1.1875rem;
}

@media only screen and (max-width: 767px) {
  .main-logo {
    padding-right: 0;
  }
}

.main-logo__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  padding: 0.625rem;
  background-color: black;
  border-radius: 2px;
  overflow: hidden;
  width: 3.25rem;
  aspect-ratio: 1/1;
}

@media only screen and (max-width: 767px) {
  .main-logo__img {
    padding: 12px 8px;
    width: 52px;
  }
}

.main-logo__icon:not(:first-child) {
  display: none;
}

@media only screen and (max-width: 767px) {
  .main-logo__text {
    display: none;
  }
}

.main-logo:hover .main-logo__icon, .main-logo:focus .main-logo__icon {
  display: block;
}

.main-logo:hover .main-logo__icon:first-child, .main-logo:focus .main-logo__icon:first-child {
  display: none;
}

.nav {
  font-family: var(--font-semibold);
}

.nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
  }
}

.nav__link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  padding: 1rem;
}

@media only screen and (max-width: 767px) {
  .nav__link {
    padding: 10px;
  }
}

.nav__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.nav__item--home {
  padding-left: 0.1875rem;
  border-right: 1px solid var(--line-color);
}

.nav__item--home .nav__link {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .nav__item--home {
    border-right: none;
    padding-right: 0;
    padding-left: 0;
  }
}

.nav__item--home + .nav__item {
  padding-left: 1rem;
}

@media only screen and (max-width: 767px) {
  .nav__item--home + .nav__item {
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .nav__item {
    font-size: 36px;
  }
}

.nav--mobile .nav__link {
  color: var(--font-second-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  width: 100%;
  padding: 18px;
}

.nav--mobile .nav__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.nav--mobile .nav__item + .nav__item {
  border-top: 1px solid var(--line-color);
}

.nav--mobile .nav__item:last-child {
  border-bottom: 1px solid var(--line-color);
}

.main-banner {
  padding: 4rem 3.125rem 2.3125rem 2.6875rem;
}

@media only screen and (max-width: 767px) {
  .main-banner {
    padding: 25px var(--padding-container-mobile);
  }
}

.main-banner__title {
  margin-bottom: 0.8125rem;
}

.main-banner__text {
  max-width: 31.875rem;
  color: var(--font-second-color);
}

.aside-nav {
  background-color: var(--bg-color);
  position: relative;
  color: var(--font-second-color);
}

@media only screen and (max-width: 767px) {
  .aside-nav:not(.aside-nav--mobile) {
    display: none;
  }
}

.aside-nav * {
  color: inherit;
}

.aside-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  padding-left: 1.3125rem;
}

@media only screen and (max-width: 767px) {
  .aside-nav__list {
    padding: 0 20px;
    padding-right: 0;
  }
}

.aside-nav__item.is-active .aside-nav__link {
  color: var(--font-main-color);
}

.aside-nav__item.is-active .aside-nav__link::before {
  content: "";
  position: absolute;
  left: -0.0625rem;
  top: 0.4375rem;
  width: 1px;
  height: 24px;
  background-color: var(--font-main-color);
}

.aside-nav__link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-box-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  padding: 0.375rem 1.375rem 0.375rem 1.25rem;
  margin-left: 0.5625rem;
  border-left: 1px solid var(--line-color);
}

@media only screen and (max-width: 767px) {
  .aside-nav__link {
    font-size: 16px;
    padding-right: 20px;
    margin-left: 7px;
  }
}

.aside-nav__link:hover {
  text-decoration: none;
  opacity: 1;
  color: var(--font-main-color);
}

.aside-nav__link:active {
  opacity: 0.7;
}

.aside-nav__header {
  border-bottom: 1px solid var(--line-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.aside-nav__header a {
  padding: 1rem 1.375rem;
}

@media only screen and (max-width: 767px) {
  .aside-nav__header a {
    width: 100%;
    padding: 18px;
  }
}

.aside-nav__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.25rem;
  padding-left: 1.375rem;
}

@media only screen and (max-width: 767px) {
  .aside-nav__title {
    padding: 18px;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
}

.aside-nav__body {
  padding: 1.1875rem 0 1.375rem;
}

@media only screen and (max-width: 767px) {
  .aside-nav__body {
    padding: 0;
  }

  .aside-nav__body .uk-accordion-content {
    margin: 0;
  }
}

.aside-nav__wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 3.6875rem;
}

.aside-nav--mobile .aside-nav__title {
  font-size: 16px;
}

.aside-nav--mobile .aside-nav__title::before {
  position: absolute;
  right: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='40px' viewBox='0 -960 960 960' width='40px' fill='%23515151'%3E%3Cpath d='M480-545.33 287.33-352.67 240-400l240-240 240 240-47.33 47.33L480-545.33Z'/%3E%3C/svg%3E");
  -webkit-background-size: 32px 32px;
  background-size: 32px;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.aside-nav--mobile .uk-open > .uk-accordion-title::before {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.products-gallery {
  overflow: hidden;
}

.products-gallery__header {
  border-bottom: 1px solid var(--line-color);
  padding: 0 2.8125rem 0 2.6875rem;
}

@media only screen and (max-width: 767px) {
  .products-gallery__header {
    padding: 0;
  }
}

.products-gallery__form {
  border-left: 1px solid var(--line-color);
  border-right: 1px solid var(--line-color);
  padding: 0.5625rem 0.875rem;
}

@media only screen and (max-width: 767px) {
  .products-gallery__form {
    border: none;
  }
}

.products-gallery__body {
  margin: 0 2.8125rem 0 2.6875rem;
  border-left: 1px solid var(--line-color);
  border-right: 1px solid var(--line-color);
}

@media only screen and (max-width: 767px) {
  .products-gallery__body {
    padding: 0 0.5rem;
    margin: 0;
  }
}

.products-gallery__list {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(19.25rem, 1fr));
  gap: 1px;
  background-color: var(--line-color);
  margin-bottom: -3px;
  border-bottom: 1px solid rgb(221, 221, 221);
}

@media only screen and (max-width: 767px) {
  .products-gallery__list {
    grid-template-columns: 1fr;
    padding: 0 1px;
  }
}

.products-card {
  position: relative;
  background-color: var(--bg-second-color);
  padding: 0.5rem 0.625rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-template-areas: "image image" "brand users";
  gap: 0.75rem;
  height: 100%;
}

.products-card--stub {
  position: relative;
  display: block;
  padding: 0;
  pointer-events: none;
}

.products-card--stub::after {
  content: "";
  position: absolute;
  right: -1000%;
  top: 0;
  width: 1000%;
  height: 100%;
  background-color: var(--bg-second-color);
  z-index: 0;
}

.products-card:hover, .products-card:active {
  text-decoration: none;
  opacity: 1;
}

.products-card:hover .products-card__img img, .products-card:active .products-card__img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.products-card:active {
  opacity: 0.7;
}

.products-card__img-wrap {
  grid-area: image;
  overflow: hidden;
  border: 1.2px solid var(--line-color);
  border-radius: var(--border-radius-default);
}

.products-card__img img {
  width: clamp(18rem, 100%, 100%);
  aspect-ratio: 36/23;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.products-card__brand {
  grid-area: brand;
}

.products-card__users {
  grid-area: users;
}

.select {
  background-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.form-input {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -moz-box-align: baseline;
  align-items: baseline;
  gap: 0.625rem;
}

.brand-card {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  gap: 0.625rem;
  line-height: 1;
}

.brand-card__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  gap: 0.3125rem;
}

.brand-card__title {
  font-family: var(--font-medium);
}

.brand-card__subtitle {
  font-size: 0.8125rem;
  color: var(--font-special-color);
}

.brand-card__img-wrap {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  width: 2.1875rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--line-color);
}

.brand-card__img-wrap--bg-darker {
  background-color: var(--bg-color);
}

.brand-card__img-wrap img {
  width: 1.375rem;
  aspect-ratio: 1/1;
}

.brand-card--small {
  gap: 0.4375rem;
}

.brand-card--small .brand-card__info {
  gap: 0.3125rem;
}

.brand-card--small .brand-card__title {
  font-size: 0.8125rem;
  font-family: var(--font-medium);
}

.brand-card--small .brand-card__subtitle {
  font-size: 0.625rem;
}

.brand-card--small .brand-card__img-wrap {
  width: 1.5rem;
}

.brand-card--small .brand-card__img-wrap img {
  width: 1rem;
}

.users-count {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  color: var(--font-special-color);
}

.users-count--small {
  font-size: 0.8125rem;
}

.text-banner {
  padding: 0 2.8125rem 0 2.6875rem;
}

@media only screen and (max-width: 767px) {
  .text-banner {
    padding: 0;
  }
}

.text-banner__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  gap: 1.25rem;
  border-left: 1px solid var(--line-color);
  border-right: 1px solid var(--line-color);
  padding: 2rem 1.875rem;
  line-height: 1.75;
  padding-right: 6.5625rem;
}

@media only screen and (max-width: 767px) {
  .text-banner__wrap {
    padding: 20px var(--padding-container-mobile);
  }
}

.faq {
  padding: 0 2.8125rem 0 2.6875rem;
}

@media only screen and (max-width: 767px) {
  .faq {
    padding: 0;
  }
}

.faq__wrap {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  border-left: 1px solid var(--line-color);
  border-right: 1px solid var(--line-color);
}

@media only screen and (max-width: 767px) {
  .faq__wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.faq__title-wrap {
  padding: 3.5rem 2rem;
  border-right: 1px solid var(--line-color);
}

@media only screen and (max-width: 767px) {
  .faq__title-wrap {
    border-right: none;
    padding: 25px var(--padding-container-mobile);
    border-bottom: 1px solid var(--line-color);
  }
}

.faq__questions {
  padding-top: 3.5rem;
  background-color: var(--bg-color);
  background: -webkit-gradient(linear, left top, right top, color-stop(100%, rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0.9))), url("/wp-content/themes/store/assets/svg/tile.svg");
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.9) 100%, rgba(255, 255, 255, 0.9) 100%), url("/wp-content/themes/store/assets/svg/tile.svg");
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.9) 100%, rgba(255, 255, 255, 0.9) 100%), url("/wp-content/themes/store/assets/svg/tile.svg");
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 100%, rgba(255, 255, 255, 0.9) 100%), url("/wp-content/themes/store/assets/svg/tile.svg");
  background-position: right top, right top;
  -webkit-background-size: 100% 100%, 20px 20px;
  background-size: 100% 100%, 20px 20px;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .faq__questions {
    padding-top: 14px;
  }
}

.faq__questions-list {
  background-color: var(--bg-second-color);
}

.faq__questions-item {
  border-top: 1px solid var(--line-color);
  padding: 1.25rem 1.75rem;
  margin-top: 0 !important;
}

.faq__questions-item.uk-open > .uk-accordion-title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20px' viewBox='0 -960 960 960' width='20px' fill='var(--font-main-color)'%3E%3Cpath d='M232-444v-72h496v72H232Z'/%3E%3C/svg%3E");
}

@media only screen and (max-width: 767px) {
  .faq__questions-item {
    padding: 20px 15px;
  }
}

.faq__question-title {
  font-size: 1rem;
}

.faq__question-title.uk-accordion-title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20px' viewBox='0 -960 960 960' width='20px' fill='var(--font-main-color)'%3E%3Cpath d='M444-444H240v-72h204v-204h72v204h204v72H516v204h-72v-204Z'/%3E%3C/svg%3E");
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.125rem;
  height: 1.125rem;
}

.decoration {
  padding: 0 2.8125rem 0 2.6875rem;
  height: 50px;
  border-top: 1px solid var(--line-color);
}

@media only screen and (max-width: 767px) {
  .decoration {
    padding: 0;
  }
}

.decoration__wrap {
  border-left: 1px solid var(--line-color);
  border-right: 1px solid var(--line-color);
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .decoration__wrap {
    border: none;
  }
}

.breadcrumbs {
  padding: 0.5rem;
  margin: 0 -0.5rem;
  z-index: 5;
  position: absolute;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

@media only screen and (max-width: 767px) {
  .breadcrumbs {
    top: 5px;
  }
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5625rem;
  font-size: 0.8125rem;
  color: var(--font-special-color);
}

.breadcrumbs__link {
  color: inherit;
}

.breadcrumbs__item {
  position: relative;
}

.breadcrumbs__item + .breadcrumbs__item::before {
  content: "";
  left: -1.3125rem;
  top: 2px;
  width: 1.0625rem;
  aspect-ratio: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20px' viewBox='0 -960 960 960' width='20px' fill='%238e8e8e'%3E%3Cpath d='M522-480 333-669l51-51 240 240-240 240-51-51 189-189Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .breadcrumbs__item + .breadcrumbs__item::before {
    top: 4px;
  }
}

.splide__arrow[disabled] {
  opacity: 0;
  visibility: hidden;
}

.splide__arrow {
  z-index: 3;
  background: var(--bg-second-color);
  border: 0.5px solid rgb(228, 228, 228);
  opacity: 1;
  visibility: visible;
  top: 48%;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  -moz-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}

.splide__arrow--next {
  right: -1.125rem;
}

@media only screen and (max-width: 1200px) {
  .splide__arrow--next {
    right: 0;
  }
}

.splide__arrow--prev {
  left: -1.1875rem;
}

@media only screen and (max-width: 1200px) {
  .splide__arrow--prev {
    left: 0;
  }
}

.splide__arrow svg {
  fill: #1f1f1f;
  opacity: 0.5;
  height: 0.875rem;
  width: 0.875rem;
}

.splide__track {
  height: 100%;
}

.splide__slide-wrap {
  padding-top: 4px;
}

.splide__slide-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 6.0625rem;
  border-right: 1px solid var(--line-color);
}

.splide__slide-text {
  color: var(--font-second-color);
  max-width: 90%;
}

.splide__slide-brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  gap: 0.9375rem;
  margin-top: 0.3125rem;
}

.splide__slide-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 0.625rem;
  margin-top: 0.8125rem;
}

.splide--type01 {
  position: relative;
  height: 24rem;
  padding-top: 2.8125rem;
}

@media only screen and (max-width: 767px) {
  .splide--type01 {
    height: auto;
    padding: 0;
  }
}

.splide--type01 .splide__track {
  padding: 0 1.3125rem !important;
}

@media only screen and (max-width: 767px) {
  .splide--type01 .splide__track {
    padding: 0 var(--padding-container-mobile) !important;
    margin: 0 -9px !important;
  }
}

.splide--type01::after, .splide--type01::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5.625rem;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  -moz-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}

@media only screen and (max-width: 767px) {
  .splide--type01::after, .splide--type01::before {
    width: 40px;
  }
}

.splide--type01::after {
  right: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), to(rgba(255, 255, 255, 0.9)));
  background-image: -webkit-linear-gradient(left, transparent 0%, rgba(255, 255, 255, 0.9) 100%);
  background-image: -moz-linear-gradient(left, transparent 0%, rgba(255, 255, 255, 0.9) 100%);
  background-image: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.9) 100%);
}

@media only screen and (max-width: 767px) {
  .splide--type01::after {
    right: -9px;
  }
}

.splide--type01::before {
  left: 0;
  background-image: -webkit-gradient(linear, right top, left top, from(transparent), to(rgba(255, 255, 255, 0.9)));
  background-image: -webkit-linear-gradient(right, transparent 0%, rgba(255, 255, 255, 0.9) 100%);
  background-image: -moz-linear-gradient(right, transparent 0%, rgba(255, 255, 255, 0.9) 100%);
  background-image: linear-gradient(to left, transparent 0%, rgba(255, 255, 255, 0.9) 100%);
}

@media only screen and (max-width: 767px) {
  .splide--type01::before {
    left: -9px;
  }
}

.splide--type01:has(.splide__arrow--next:not([disabled]))::after {
  opacity: 1;
  visibility: visible;
}

.splide--type01:has(.splide__arrow--prev:not([disabled]))::before {
  opacity: 1;
  visibility: visible;
}

.splide__slide-media {
  padding-top: 2.8125rem;
  padding-left: 1.5625rem;
  overflow: hidden;
}

.splide__slide-media-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(207px, 1fr));
  gap: 0.9375rem;
  width: 100%;
}
.choices {
  font-size: 1rem;
  line-height: 1.5625rem;
}
.choices__item {
  display: flex;
  align-items: center;
  gap: 3px;
}
.choices__item::after {
  content: "";
  display: inline-block;
  pointer-events: none;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20px' viewBox='0 -960 960 960' width='20px' fill='%23000'%3E%3Cpath d='M480-333 240-573l51-51 189 189 189-189 51 51-240 240Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  width: 1.25rem;
  height: 1.25rem;
}
.choices__item[data-value="asc"]::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.choices__inner {
  display: block;
  padding: 0;
  border: none;
  background-color: transparent;
  min-height: auto;
  font-size: inherit;
  line-height: 1.5625rem;
}

.choices[data-type*=select-one] .choices__inner {
  padding: 0;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  word-break: normal;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 9rem;
  border-radius: 7px;
  padding: 6px;
  border-color: #f0f0f0 !important;
  -webkit-box-shadow: 0 0 0 1px rgba(240, 240, 240, 0), 0 6px 10px 3px rgba(0, 0, 0, 0.14);
  box-shadow: 0 0 0 1px rgba(240, 240, 240, 0), 0 6px 10px 3px rgba(0, 0, 0, 0.14);
}

.choices[data-type*=select-one]::after {
  border: none;
}

/*.choices[data-type*=select-one].is-open::after {*/
/*  -webkit-transform: rotate(180deg);*/
/*  -moz-transform: rotate(180deg);*/
/*  -ms-transform: rotate(180deg);*/
/*  transform: rotate(180deg);*/
/*  margin-top: -1.5px;*/
/*}*/

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  padding: 8px;
  font-size: 16px;
  border-radius: 7px;
}
.actions {
  z-index: 5;
}

.actions .svg-icon {
  width: 1.125rem;
}

.actions[aria-expanded=true] .icon--close {
  display: block;
}

.actions[aria-expanded=true] .icon--open {
  display: none;
}

.actions__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.actions__item {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.actions__btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.actions__btn .icon {
  font-size: 1.125rem;
}

.actions__btn .icon--close {
  display: none;
}
@media only screen and (max-width: 767px) {
  .actions__btn:hover, .actions__btn:focus {
    opacity: 1;
  }
}
.app-card {
  --border-color: rgba(225, 225, 225, 1);
  --decor-color: rgba(144, 144, 144, 0.3);
  --font-color: rgba(255, 255, 255, 1);
  --accent-color: rgba(255, 212, 38, 1);
  --bg-color: rgb(0, 0, 0);
  border-radius: 6px;
  height: 17.9375rem;
  aspect-ratio: 15/21;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
  grid-row: span 3;
  grid-template-areas: "decor" "title" "img";
  position: relative;
  background-color: var(--bg-color);
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(rgba(255, 255, 255, 0.2))), -webkit-gradient(linear, left bottom, left top, from(transparent), to(rgba(255, 255, 255, 0.1)));
  background-image: -webkit-linear-gradient(bottom, transparent 0%, rgba(255, 255, 255, 0.2) 100%), -webkit-linear-gradient(bottom, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  background-image: -moz-linear-gradient(bottom, transparent 0%, rgba(255, 255, 255, 0.2) 100%), -moz-linear-gradient(bottom, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  background-image: linear-gradient(to top, transparent 0%, rgba(255, 255, 255, 0.2) 100%), linear-gradient(to top, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  outline: 1px solid var(--border-color);
  outline-offset: 2px;
  gap: 0;
}

.app-card__decor {
  height: 0.8125rem;
}

.app-card__section--decor {
  grid-area: decor;
}

.app-card__section--title {
  grid-area: title;
}

.app-card__section--img {
  grid-area: img;
}

.app-card__section + .app-card__section {
  border-top: 1px dashed var(--decor-color);
}

.app-card__container {
  height: 100%;
  margin: 0 0.625rem;
  border-left: 1px dashed var(--decor-color);
  border-right: 1px dashed var(--decor-color);
}

.app-card__img img {
  width: 100%;
}

.app-card__header {
  text-align: center;
  padding: 0.3125rem 0.625rem;
}

.app-card__body {
  padding: 0.8125rem 0.625rem 0 0.625rem;
}

.app-card__text {
  font-family: var(--font-semibold);
  color: var(--font-color);
  line-height: 1.375rem;
}

.app-card__text-special, .app-card__text em {
  font-size: 1.0625rem;
  color: var(--accent-color);
}

.app-card__btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-info-banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  gap: 0.625rem;
}

.product-info-banner__text {
  color: var(--font-second-color);
  max-width: 90%;
}

.product-info-banner__brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  gap: 0.9375rem;
  margin-top: 0.3125rem;
}

.product-info-banner__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 0.625rem;
  margin-top: 0.8125rem;
}

.single-product-banner {
  display: grid;
  grid-template-columns: 48% 52%;
}

@media only screen and (max-width: 767px) {
  .single-product-banner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    gap: 25px;
  }
}

.single-product-banner__info {
  border-right: 1px solid var(--line-color);
  padding: 6.0625rem 0 1.5625rem;
}

@media only screen and (max-width: 767px) {
  .single-product-banner__info {
    border-right: none;
    padding-top: 65px;
    padding-bottom: 0;
  }
}

.single-product-banner__slider {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .single-product-banner__slider {
    padding-bottom: 25px;
  }
}

.anchors__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  font-family: var(--font-semibold);
}

@media only screen and (max-width: 576px) {
  .anchors__list {
    gap: 5px;
  }
}

.anchors__item {
  position: relative;
}

.anchors__link {
  display: inline-block;
  padding: 1rem 1.125rem;
}

@media only screen and (max-width: 767px) {
  .anchors__link {
    padding: 10px;
  }
}

@media only screen and (max-width: 576px) {
  .anchors__link {
    padding: 9px;
  }
}

.anchors__link.is-active {
  text-decoration: underline;
  text-underline-offset: 1.375rem;
  text-decoration-thickness: 2px;
}

@media only screen and (max-width: 767px) {
  .anchors__link.is-active {
    text-underline-offset: 15px;
  }
}

.anchors__link:hover {
  text-decoration: underline;
  text-underline-offset: 1.375rem;
  text-decoration-thickness: 2px;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .anchors__link:hover {
    text-underline-offset: 15px;
  }
}

.banner {
  padding: 1.375rem 1.75rem 1.8125rem;
  border: 1px solid var(--line-color);
  border-radius: var(--border-radius-default);
  margin: 2.25rem 0;
}

@media only screen and (max-width: 576px) {
  .banner {
    margin: 18px 0;
    padding: 15px 20px;
  }
}

.banner__title {
  margin-bottom: 1rem;
}

.banner--type-01 {
  background-color: var(--bg-color);
  max-width: 41.5625rem;
}

@media only screen and (max-width: 991px) {
  .banner--type-01 {
    max-width: 100%;
  }
}

.ordered-list {
  list-style: decimal;
  padding-left: 1.4375rem;
}

.ordered-list__item {
  padding-left: 0.4375rem;
}

.ordered-list__item::marker {
  font-family: var(--font-semibold);
}

.ordered-list__item + .ordered-list__item {
  margin-top: 1rem;
}

.figure {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  gap: 1.25rem;
}

.figure__img-wrap {
  border-radius: var(--border-radius-default);
  overflow: hidden;
}

.sticker {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  gap: 0.8125rem;
  padding: 1.375rem 2.125rem;
  background-color: var(--bg-second-color);
  min-height: 8.25rem;
}

@media only screen and (max-width: 767px) {
  .sticker {
    padding: 16px 20px;
  }
}

@media only screen and (max-width: 576px) {
  .sticker {
    min-height: auto;
  }
}

.sticker__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  gap: 6px;
}

.sticker__title {
  font-family: var(--font-bold);
}

.chip {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  background-color: var(--bg-chip-color);
  border-radius: 100px;
  line-height: 1;
  padding: 0.1875rem 0.5rem;
}

.chip__text {
  color: rgb(9, 105, 218);
  font-size: 0.8125rem;
}

.chip--gray {
  background-color: rgb(225, 225, 225);
}

.chip--gray .chip__text {
  color: var(--font-main-color);
}

.chips-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.chips-list__item a {
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
}

.cta-add-tool {
  --main-color: rgba(255, 255, 255, 1);
  color: var(--main-color);
  border-radius: var(--border-radius-default);
  padding: 3.125rem 2.1875rem 5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), to(rgba(0, 0, 0, 0.9))), -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), to(rgba(0, 0, 0, 0.9))), -webkit-gradient(linear, right top, left top, color-stop(95%, transparent), to(rgba(0, 0, 0, 0.9))), -webkit-gradient(linear, left top, right bottom, color-stop(65%, transparent), to(rgba(0, 0, 0, 0.9))), -webkit-gradient(linear, right top, left bottom, color-stop(65%, transparent), to(rgba(0, 0, 0, 0.9))), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Crect width='25' height='25' fill='black'/%3E%3Cpath d='M0 0h25v1H0zM0 0h1v25H0z' fill='%239090904d'/%3E%3C/svg%3E");
  background-image: -webkit-linear-gradient(top, transparent 80%, rgba(0, 0, 0, 0.9) 100%), -webkit-linear-gradient(left, transparent 95%, rgba(0, 0, 0, 0.9) 100%), -webkit-linear-gradient(right, transparent 95%, rgba(0, 0, 0, 0.9) 100%), -webkit-linear-gradient(top left, transparent 65%, rgba(0, 0, 0, 0.9) 100%), -webkit-linear-gradient(top right, transparent 65%, rgba(0, 0, 0, 0.9) 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Crect width='25' height='25' fill='black'/%3E%3Cpath d='M0 0h25v1H0zM0 0h1v25H0z' fill='%239090904d'/%3E%3C/svg%3E");
  background-image: -moz-linear-gradient(top, transparent 80%, rgba(0, 0, 0, 0.9) 100%), -moz-linear-gradient(left, transparent 95%, rgba(0, 0, 0, 0.9) 100%), -moz-linear-gradient(right, transparent 95%, rgba(0, 0, 0, 0.9) 100%), -moz-linear-gradient(top left, transparent 65%, rgba(0, 0, 0, 0.9) 100%), -moz-linear-gradient(top right, transparent 65%, rgba(0, 0, 0, 0.9) 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Crect width='25' height='25' fill='black'/%3E%3Cpath d='M0 0h25v1H0zM0 0h1v25H0z' fill='%239090904d'/%3E%3C/svg%3E");
  background-image: linear-gradient(to bottom, transparent 80%, rgba(0, 0, 0, 0.9) 100%), linear-gradient(to right, transparent 95%, rgba(0, 0, 0, 0.9) 100%), linear-gradient(to left, transparent 95%, rgba(0, 0, 0, 0.9) 100%), linear-gradient(to bottom right, transparent 65%, rgba(0, 0, 0, 0.9) 100%), linear-gradient(to bottom left, transparent 65%, rgba(0, 0, 0, 0.9) 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25'%3E%3Crect width='25' height='25' fill='black'/%3E%3Cpath d='M0 0h25v1H0zM0 0h1v25H0z' fill='%239090904d'/%3E%3C/svg%3E");
  -webkit-background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, var(--rectangle-bg-size) var(--rectangle-bg-size);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, var(--rectangle-bg-size) var(--rectangle-bg-size);
}

.cta-add-tool__wrap, .cta-add-tool__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}

.cta-add-tool__wrap {
  gap: 1.125rem;
}

.cta-add-tool__header {
  gap: 2.5rem;
}

.cta-add-tool__title {
  color: var(--main-color);
  text-align: center;
}

.cta-add-tool__body {
  font-family: var(--font-medium);
  font-size: 1.25rem;
  line-height: 1.8125rem;
  max-width: 55%;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .cta-add-tool__body {
    max-width: 100%;
  }
}

.cta-add-tool__icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  background-color: var(--main-color);
  padding: 0.875rem;
  width: 3.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.cta-add-tool__btn {
  background-color: var(--main-color);
  color: var(--font-main-color);
  font-size: 1.125rem;
  margin-top: 0.75rem;
}

.cta-add-tool__btn:hover {
  color: var(--font-main-color);
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: var(--bg-color);
}

@supports (scrollbar-gutter: stable) {
  .header {
    scrollbar-gutter: stable;
  }
}

.header__wrap-mobile {
  display: none;
  height: 100%;
  overflow: auto;
  padding-bottom: 80px;
  background-color: var(--bg-color);
}

.header:has(.is-opened) {
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  background-color: var(--bg-color);
}

.header:has(.is-opened) .header__wrap-mobile {
  display: block;
}

.header__toggle-btn {
  z-index: 5;
  display: none;
  padding: 5px;
}

.header__toggle-btn .icon {
  font-size: 32px;
  color: var(--font-main-color);
}

@media only screen and (max-width: 767px) {
  .header__toggle-btn .icon {
    font-size: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .header__toggle-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    height: 60px;
    border-left: 1px solid var(--line-color);
    padding: 16px;
  }
}

.header__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  padding-right: 1.375rem;
  min-height: 3.625rem;
  border-bottom: 1px solid var(--line-color);
}

@media only screen and (max-width: 767px) {
  .header__wrap {
    padding-left: var(--padding-container-mobile);
    padding-right: 0;
    gap: 0;
    min-height: 60px;
  }

  .header__wrap .nav__item:not(.nav__item--home) {
    display: none;
  }
}

.header.desktop-fixed {
  margin-top: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background: rgba(247, 247, 247, 0.831372549);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media only screen and (max-width: 767px) {
  .header {
    margin-top: 0;
  }
}

.main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -moz-box-flex: 1;
  flex: 1 0 auto;
  position: relative;
}

.main__content {
  background-color: var(--bg-second-color);
  border-left: 1px solid var(--line-color);
  border-right: 1px solid var(--line-color);
  min-height: -webkit-calc(100vh - 3.6875rem);
  min-height: -moz-calc(100vh - 3.6875rem);
  min-height: calc(100vh - 3.6875rem);
}

@media only screen and (max-width: 767px) {
  .main__content {
    border: none;
  }
}

.main__content:has(.aside-nav) {
  display: grid;
  grid-template-columns: 15.625rem 1fr;
}

@media only screen and (max-width: 767px) {
  .main__content:has(.aside-nav) {
    grid-template-columns: 1fr;
  }
}

.main.main--site-pages {
  overflow: hidden;
  min-height: 100vh;
  color: rgb(255, 255, 255);
}

.main.main--site-pages * {
  color: rgb(255, 255, 255);
}

.main.main--site-pages canvas {
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
}

.footer {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  flex: 0 0 auto;
  background-color: var(--bg-second-color);
  color: var(--font-main-color);
}

.footer__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__container {
  padding: 0 7.625rem;
}

@media only screen and (max-width: 767px) {
  .footer__container {
    padding: 0 var(--padding-container-mobile);
  }
}

.footer__copyright {
  border-top: 1px solid var(--line-color);
  font-size: 0.875rem;
}

.footer__copyright-text {
  padding: 0.9375rem 0 1.5625rem;
}

.footer__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.6875rem 0 2.375rem;
}

@media only screen and (max-width: 767px) {
  .footer__info {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.footer__nav-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 6rem;
}

@media only screen and (max-width: 767px) {
  .footer__nav-block {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 50px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
  }
}

.footer__nav-title {
  font-family: var(--font-bold);
  margin-bottom: 0.5rem;
}

.footer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  gap: 0.3125rem;
}

.section + .section {
  border-top: 1px solid var(--line-color);
}

.section--relative {
  position: relative;
}

.section.section-slider-type01 > .container {
  padding-right: 0;
}

@media only screen and (max-width: 767px) {
  .section.section-slider-type01 > .container {
    padding-right: 0.5rem;
  }
}

.section__header {
  border-bottom: 1px solid var(--line-color);
  position: -webkit-sticky;
  position: sticky;
  top: var(--header-height);
  z-index: 10;
}

.section__footer {
  border-top: 1px solid var(--line-color);
}

.section__title {
  margin: 2.25rem 0 0.625rem;
}

.section__title--type01 {
  margin: 0 0 28px;
}

.section__body {
  padding: 1.875rem 0;
}

.section__body p {
  line-height: 1.75rem;
}

.section__body p + p {
  margin-top: 1.25rem;
}

.section__wrap {
  max-width: 49.375rem;
}

.section__media-wrap {
  border-radius: var(--border-radius-default);
  overflow: hidden;
  margin: 0.625rem 0 2.8125rem;
}

.section__stickers {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  margin: 0 0.75rem;
  gap: 1px;
  background-color: var(--line-color);
}

@media only screen and (max-width: 991px) {
  .section__stickers {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .section__stickers {
    margin: 0;
  }
}

@media only screen and (max-width: 576px) {
  .section__stickers {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section__cta {
  padding: 1rem 0;
}

.more-products-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20.625rem, 1fr));
  gap: 1.75rem;
}

@media only screen and (max-width: 576px) {
  .more-products-masonry {
    grid-template-columns: 1fr;
  }
}

.more-products-masonry__item {
  padding: 0;
}

.modal-wrap {
  display: none;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.modal-wrap::-webkit-scrollbar {
  height: 5px;
  width: 1px;
  background-color: #f9f9fd;
}

.modal-wrap::-webkit-scrollbar-thumb {
  background-color: var(--font-main-color);
}

.modal-wrap::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #f9f9fd;
}

.modal {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.page-404 {
  font-size: 1.375rem;
  line-height: 1.75rem;
}

.page-404__list {
  margin-top: 2.8125rem;
}

.page-404__list p {
  font-size: 1.375rem;
  line-height: 1.75rem;
}

.page-404 img {
  height: auto;
}

.page-404__banner {
  margin-top: 7.5rem;
}

.content:has(.single-page) .footer {
  background-color: var(--bg-color);
}

.content:has(.single-page) .footer__container {
  margin: 0 auto;
  --padding: 2.875rem;
  background-color: var(--bg-second-color);
  max-width: -webkit-calc(65.625rem + var(--padding) * 2);
  max-width: -moz-calc(65.625rem + var(--padding) * 2);
  max-width: calc(65.625rem + var(--padding) * 2);
  padding: 0 var(--padding);
  border-left: 1px solid var(--line-color);
  border-right: 1px solid var(--line-color);
}

@media only screen and (max-width: 767px) {
  .content:has(.single-page) .footer__container {
    padding: var(--padding-container-mobile);
    border-left: none;
    border-right: none;
  }
}

.single-page {
  background-color: var(--bg-color);
}

.single-page .container {
  --padding: 2.875rem;
  background-color: var(--bg-second-color);
  max-width: -webkit-calc(65.625rem + var(--padding) * 2);
  max-width: -moz-calc(65.625rem + var(--padding) * 2);
  max-width: calc(65.625rem + var(--padding) * 2);
  padding: 0 var(--padding);
  border-left: 1px solid var(--line-color);
  border-right: 1px solid var(--line-color);
}

.single-page .container:has(.section__stickers) {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .single-page .container:has(.section__stickers) {
    padding: 0;
    border-left: none;
    border-right: none;
  }
}

.single-page .container .anchors {
  margin-left: -1.125rem;
}

@media only screen and (max-width: 767px) {
  .single-page .container .anchors {
    margin-left: -10px;
  }
}

@media only screen and (max-width: 767px) {
  .single-page .container {
    --padding: 9px;
    border-left: none;
    border-right: none;
  }
}

.taxonomy {
  background-color: var(--bg-second-color);
}

.taxonomy .container {
  --padding: 2.875rem;
  background-color: var(--bg-second-color);
  max-width: -webkit-calc(65.625rem + var(--padding) * 2);
  max-width: -moz-calc(65.625rem + var(--padding) * 2);
  max-width: calc(65.625rem + var(--padding) * 2);
  padding: 0 var(--padding);
  border-left: 1px solid var(--line-color);
  border-right: 1px solid var(--line-color);
}

.taxonomy .container:has(.section__stickers) {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .taxonomy .container:has(.section__stickers) {
    padding: 0;
    border-left: none;
    border-right: none;
  }
}

.taxonomy .container .anchors {
  margin-left: -1.125rem;
}

@media only screen and (max-width: 767px) {
  .taxonomy .container .anchors {
    margin-left: -10px;
  }
}

@media only screen and (max-width: 767px) {
  .taxonomy .container {
    --padding: 0.5rem;
    border-left: none;
    border-right: none;
  }
}

.uk-icon svg {
  display: none;
}

.uk-icon.uk-close svg {
  display: block;
  width: 20px;
}

.uk-totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.uk-totop .material-symbols-outlined {
  font-size: 32px;
}

.uk-drop {
  --uk-position-offset: 10px;
  width: auto;
}
