/*==========================================================================
Start styles
============================================================================*/
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  scrollbar-color: rgba(40, 246, 188, 0.1) #0f1015;
  scrollbar-width: thin;
}
*::-webkit-scrollbar-thumb {
  background-color: rgba(40, 246, 188, 0.1);
}
*::-webkit-scrollbar-track {
  background-color: #0f1015;
}
*::-webkit-scrollbar-button {
  display: none;
  background-color: rgba(40, 246, 188, 0.1);
}
*::-webkit-scrollbar {
  width: 8px;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

::selection {
  background: var(--color-primary);
  color: #000;
}

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

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a,
button {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  font-family: inherit;
  color: inherit;
}

ul li {
  list-style: none;
}

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

input,
textarea {
  font-family: inherit;
  color: inherit;
  border-radius: 0;
  resize: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-ms-clear,
input[type=number]::-ms-expand {
  display: none;
}

@font-face {
  font-family: Manrope;
  font-display: swap;
  src: url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Manrope;
  font-display: swap;
  src: url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Manrope;
  font-display: swap;
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2"), url("../fonts/Manrope-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
/*==========================================================================
Vars
============================================================================*/
:root {
  --color-main-bg: #0f1015;
  --color-text: #fff;
  --color-primary: #28f6bc;
  --font-main: "Manrope", sans-serif;
  --font-size-base: 16px;
  --font-line-height: 140%;
  --container-width: 1246px;
}

/*==========================================================================
Templates
============================================================================*/
/*==========================================================================
Settings
============================================================================*/
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scroll-padding: 64px;
}

body {
  min-height: 100%;
  height: 100%;
  font-family: var(--font-main);
  color: var(--color-text);
  font-size: var(--font-size-base);
  background: var(--color-main-bg);
  position: relative;
}
body::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 16, 21, 0.9);
  pointer-events: none;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: 98;
}
@media (width < 600px) {
  body.no-scroll {
    overflow: hidden;
  }
}
@media (width < 1000px) {
  body.bg {
    overflow: hidden;
  }
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

.container {
  width: min(100% - 150px, 1800px);
  margin-inline: auto;
}
@media (width < 2000px) {
  .container {
    width: min(100% - 52px, var(--container-width));
  }
}
@media (width < 767px) {
  .container {
    width: calc(100% - 40px);
  }
}

/*==========================================================================
Components
============================================================================*/
/*==========================================================================
Buttons
============================================================================*/
.button {
  width: max-content;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 14px 24px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .button:hover {
    background: rgba(40, 246, 188, 0.2);
    color: var(--color-primary);
  }
}
@media (width < 767px) {
  .button {
    padding: 8px 24px;
    height: 40px;
  }
}

.button.--green {
  background: rgba(40, 246, 188, 0.1);
  color: var(--color-primary);
}
@media (hover: hover) {
  .button.--green:hover {
    background: rgba(40, 246, 188, 0.2);
    color: var(--color-primary);
  }
}

.slider-buttons {
  display: flex;
  gap: 8px;
}
@media (width < 767px) {
  .slider-buttons {
    gap: 10px;
  }
}

.slider-prev,
.slider-next {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  color: #908f8f;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
}
.slider-prev svg,
.slider-next svg {
  width: 24px;
  height: 24px;
}
.slider-prev.swiper-button-disabled,
.slider-next.swiper-button-disabled {
  opacity: 0.5;
}
.slider-prev:active svg,
.slider-next:active svg {
  transform: scale(0.92);
}
@media (hover: hover) {
  .slider-prev:hover,
  .slider-next:hover {
    background: rgba(40, 246, 188, 0.1);
    color: var(--color-primary);
  }
}
@media (width < 767px) {
  .slider-prev,
  .slider-next {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
  .slider-prev svg,
  .slider-next svg {
    width: 18px;
    height: 18px;
  }
}

/*==========================================================================
Titles
============================================================================*/
.section-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
}
.section-title .text-gray {
  color: rgba(255, 255, 255, 0.5);
}
@media (width < 767px) {
  .section-title {
    font-size: 26px;
  }
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}
@media (width < 767px) {
  .section-subtitle {
    font-size: 16px;
  }
}

/*==========================================================================
Form elements
============================================================================*/
.input,
.textarea {
  padding: 24px 20px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  width: 100%;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #fff;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.input:focus,
.textarea:focus {
  background: rgba(40, 246, 188, 0.1);
  border-color: var(--color-primary);
}
@media (hover: hover) {
  .input:hover,
  .textarea:hover {
    background: rgba(40, 246, 188, 0.1);
  }
}
@media (width < 767px) {
  .input,
  .textarea {
    font-size: 16px;
  }
}

.input {
  height: 65px;
}

.textarea {
  resize: none;
  height: 145px;
  line-height: 130%;
}

.dropdown {
  position: relative;
  max-width: 575px;
  z-index: 99;
}
.dropdown.dropdown--selected .dropdown__button {
  color: #fff;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.05);
}
@media (hover: hover) {
  .dropdown.dropdown--selected .dropdown__button:hover {
    background: rgba(40, 246, 188, 0.1);
  }
}
@media (width < 600px) {
  .dropdown::after {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 16, 21, 0.9);
    pointer-events: none;
    transition: all 0.3s ease;
    opacity: 0;
  }
  .dropdown:has(.dropdown__button.active)::after {
    opacity: 1;
  }
}
.dropdown__button {
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.01em;
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  height: 65px;
  border: 1px solid transparent;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-radius 0s linear 0s;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}
.dropdown__button.active {
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 12px 12px 0 0;
}
.dropdown__button.active .dropdown__button-icon {
  transform: scaleY(-1);
}
@media (hover: hover) {
  .dropdown__button:hover {
    background: rgba(40, 246, 188, 0.1);
  }
}
@media (width < 767px) {
  .dropdown__button {
    font-size: 16px;
  }
}
.dropdown__button-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.dropdown__button-icon svg {
  width: 100%;
  height: 100%;
}
.dropdown__button-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dropdown__button-text {
  flex: 1;
}
.dropdown__list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #1a1b20;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  transform-origin: top;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.dropdown__list.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
@media (width < 600px) {
  .dropdown__list {
    overflow: unset;
    position: fixed;
    top: unset;
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
    transform-origin: bottom;
    z-index: 5555;
    border-radius: 12px;
    z-index: 9999;
  }
}
.dropdown__list-title {
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 24px;
  border-radius: 12px 12px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}
@media (width < 600px) {
  .dropdown__list-title {
    display: flex;
  }
}
.dropdown__list-close {
  display: none;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 15px);
  transform: translateX(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
}
.dropdown__list-close svg {
  width: 16px;
  height: 16px;
}
.dropdown__list-close:active {
  color: var(--color-primary);
}
@media (width < 600px) {
  .dropdown__list-close {
    display: flex;
  }
}
.dropdown__item {
  display: flex;
  align-items: center;
  height: 65px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.dropdown__item input {
  width: 0;
  height: 0;
  position: absolute;
  display: none;
  background: transparent;
}
.dropdown__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (hover: hover) {
  .dropdown__item:hover {
    background: #162c2a;
    color: var(--color-primary);
  }
}
@media (width < 600px) {
  .dropdown__item {
    font-size: 14px;
    height: auto;
    padding: 12px 24px;
  }
  .dropdown__item:not(:last-child) {
    border-bottom: none;
  }
  .dropdown__item:last-child {
    border-radius: 0 0 12px 12px;
  }
}

.agree {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.agree input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}
.agree.no-valid .agree__box {
  background: rgba(255, 0, 20, 0.1);
  border-color: #ff0014;
}
.agree:has(input:checked) .agree__box {
  background: rgba(40, 246, 188, 0.1);
  border-color: rgba(40, 246, 188, 0);
}
.agree:has(input:checked) .agree__box::after {
  opacity: 1;
}
.agree__box {
  position: relative;
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.agree__box::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-image: url(../img/icons/check.svg);
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
}
.agree__text {
  font-size: 10px;
  line-height: 130%;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.agree__text a {
  text-decoration: underline;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .agree__text a:hover {
    color: rgb(255, 255, 255);
  }
}

/*==========================================================================
Other
============================================================================*/
.breadcrumbs {
  margin: 40px 0;
}
@media (width < 767px) {
  .breadcrumbs {
    margin: 26px 0;
  }
}
.breadcrumbs__nav {
  display: flex;
  gap: 5px;
  font-size: 12px;
  line-height: 160%;
  font-weight: 400;
  color: #a0a7aa;
}
@media (width < 600px) {
  .breadcrumbs__nav {
    flex-wrap: wrap;
    gap: 3px 5px;
  }
}
.breadcrumbs__link {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .breadcrumbs__link:hover {
    color: #fff;
  }
}
.breadcrumbs__separator {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  text-align: center;
}

.page-pagination {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (width < 767px) {
  .page-pagination {
    display: none;
  }
}
.page-pagination__prev, .page-pagination__next {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  color: #908f8f;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-pagination__prev svg, .page-pagination__next svg {
  width: 24px;
  height: 24px;
}
@media (hover: hover) {
  .page-pagination__prev:hover, .page-pagination__next:hover {
    background: rgba(40, 246, 188, 0.1);
    color: var(--color-primary);
  }
}
.page-pagination__pages {
  display: flex;
  gap: 12px;
}
.page-pagination__page {
  color: #908f8f;
  border-radius: 5px;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 14px;
  line-height: 130%;
}
.page-pagination__page.active {
  background: rgba(40, 246, 188, 0.1);
  color: var(--color-primary);
}
@media (hover: hover) {
  .page-pagination__page:hover {
    background: rgba(40, 246, 188, 0.1);
  }
}
.page-pagination__quant {
  opacity: 0.3;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.tag {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  border-radius: 8px;
  background: #1a1d29;
  padding: 8px 16px;
}
.tag img {
  width: 14px;
  height: 14px;
}

/*==========================================================================
Header
============================================================================*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header .menu__home {
  display: none;
}
@media (width < 1000px) {
  .header .menu__home {
    display: none !important;
  }
}
.header.-fx {
  position: fixed;
  top: 0;
  left: 0;
  background: #14151a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-100%);
}
.header.-fx.show {
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.header.static {
  position: sticky;
  top: 0;
  transform: none;
  background: #14151a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
}
.header.static .header__menu {
  justify-content: flex-end;
}
.header.static .menu__catalog-link {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
@media (hover: hover) {
  .header.static .menu__catalog-link:hover {
    color: var(--color-primary);
    background: rgba(40, 246, 188, 0.1);
  }
}
.header.static .menu__home {
  display: block;
}
.header__body {
  display: flex;
  align-items: center;
  gap: 37px;
  padding: 25px 0;
}
@media (width < 1000px) {
  .header__body {
    padding: 15px 0;
  }
}
.header__logo {
  flex: 0 0 190px;
  position: relative;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (width < 1000px) {
  .header__logo {
    flex: 0 0 140px;
    max-width: 140px;
  }
}
@media (hover: hover) {
  .header__logo:hover {
    opacity: 0.8;
  }
}
.header__menu {
  flex: 1;
}

/*==========================================================================
Menu
============================================================================*/
.menu {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (width < 1000px) {
  .menu {
    justify-content: flex-end;
  }
}
.menu__icon {
  display: none;
  will-change: transform;
}
@media (width < 1000px) {
  .menu__icon {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 100;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .menu__icon::before, .menu__icon::after {
    height: 1px;
    position: absolute;
    background-color: #fff;
    border-radius: 3px;
    width: 16px;
    left: 12px;
    transition: all 0.3s ease;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
  }
  .menu__icon::before {
    top: 17.5px;
  }
  .menu__icon::after {
    bottom: 17.5px;
  }
  .menu__icon.active::before {
    top: 20px;
    transform: rotate(45deg);
  }
  .menu__icon.active::after {
    top: 20px;
    transform: rotate(-45deg);
  }
}
@media (hover: hover) {
  .menu__icon:hover {
    background: rgba(40, 246, 188, 0.1);
    color: var(--color-primary);
  }
  .menu__icon:hover::before, .menu__icon:hover::after {
    background: var(--color-primary);
  }
}
.menu__body {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (width < 1000px) {
  .menu__body {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    height: auto;
    background: #14151a;
    align-items: flex-end;
    padding-top: 70px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(-10px);
    pointer-events: none;
  }
  .menu__body.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}
@media (width < 1000px) {
  .menu__home {
    display: none;
  }
}
@media (width < 1000px) {
  .menu__catalog {
    display: none;
  }
}
.menu__catalog-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 16px;
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  height: 40px;
  line-height: 1;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  color: #14453a;
}
@media (hover: hover) {
  .menu__catalog-link:hover {
    background: rgb(40, 246, 188);
  }
}
.menu__search {
  position: relative;
  z-index: 100;
}
.menu__search-button {
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  transition: all 0.3s ease;
  height: 40px;
}
@media (hover: hover) {
  .menu__search-button:hover {
    background: rgba(40, 246, 188, 0.1);
    color: var(--color-primary);
  }
}
@media (width < 1000px) {
  .menu__search-button {
    min-width: unset;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .menu__search-button span {
    display: none;
  }
}
.menu__search-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}
.menu__search-icon svg {
  width: 100%;
  height: 100%;
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (width < 1000px) {
  .menu__list {
    width: 100%;
    padding: 16px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}
@media (width < 767px) {
  .menu__list {
    padding: 16px 20px;
  }
}
@media (width < 550px) {
  .menu__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.menu__item:first-child {
  display: none;
}
@media (width < 1000px) {
  .menu__item {
    flex: 1;
  }
  .menu__item:first-child {
    display: block;
  }
}
.menu__link {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  line-height: 1;
  height: 40px;
}
@media (hover: hover) {
  .menu__link:hover {
    background: rgba(40, 246, 188, 0.1);
    color: var(--color-primary);
  }
}

@keyframes header-move {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/*==========================================================================
Footer
============================================================================*/
.footer__body {
  padding-top: 60px;
  position: relative;
}
@media (width < 767px) {
  .footer__body {
    padding-top: 50px;
  }
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-bottom: 30px;
}
@media (width < 1200px) {
  .footer__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}
.footer__main-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
}
@media (width < 1000px) {
  .footer__main-col {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}
@media (hover: hover) {
  .footer__logo:hover {
    opacity: 0.8;
  }
}
.footer__logo-mail {
  display: none;
}
@media (width < 1000px) {
  .footer__logo-mail {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
  }
}
@media (width < 369px) {
  .footer__logo-mail {
    font-size: 14px;
  }
}
.footer__marketplaces {
  display: flex;
  gap: 10px;
}
@media (width < 1000px) {
  .footer__marketplaces {
    justify-content: end;
  }
}
.footer__marketplace {
  flex: 0 0 46px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .footer__marketplace:hover {
    transform: translateY(-4px);
  }
}
@media (width < 369px) {
  .footer__marketplace {
    flex: 0 0 40px;
  }
  .footer__marketplace img {
    width: 40px;
    height: 40px;
  }
}
@media (width < 1000px) {
  .footer__mail {
    display: none;
  }
}
.footer__nav {
  width: 100%;
  grid-column: 1/-1;
}
.footer__menu {
  width: 100%;
}
.footer__menu-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (width < 600px) {
  .footer__menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.footer__menu-link {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .footer__menu-link:hover {
    color: var(--color-primary);
  }
}
.footer__legal {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (width < 1000px) {
  .footer__legal {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: start;
  }
}
.footer__legal-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
@media (width < 1000px) {
  .footer__legal-text {
    grid-column: 1/-1;
  }
}
.footer__legal-dev {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}
.footer__legal-dev a {
  color: var(--color-primary);
}
@media (hover: hover) {
  .footer__legal-dev a:hover {
    text-decoration: underline;
  }
}
@media (width < 1000px) {
  .footer__legal-dev {
    grid-column: 1/-1;
    order: 1;
  }
}
.footer__legal-links {
  display: flex;
}
.footer__legal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
@media (hover: hover) {
  .footer__legal-link:hover {
    text-decoration: underline;
  }
}
@media (width < 600px) {
  .footer__legal-link {
    grid-column: 1/-1;
  }
}
.footer__go-top {
  flex: 0 0 24px;
}
@media (width < 1000px) {
  .footer__go-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 5;
  }
}
@media (width < 767px) {
  .footer__go-top {
    display: none;
  }
}
.footer__go-top-btn {
  width: 24px;
  height: 24px;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__go-top-btn svg {
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .footer__go-top-btn:hover {
    color: var(--color-primary);
  }
}

/*==========================================================================
Popups general
============================================================================*/
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  padding: 5rem 0 2.5rem;
  z-index: 999;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  max-height: 100vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease;
}
.popup.popup.search-popup {
  background: #0f1015;
  backdrop-filter: none;
}
@media (width < 767px) {
  .popup {
    padding: 70px 0 40px;
  }
}
.popup.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.popup__body {
  width: min(100% - 40px, 874px);
  margin: auto;
  position: relative;
  border-radius: 20px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.02);
}
@media (width < 600px) {
  .popup__body {
    padding: 12px;
  }
}
.popup__close {
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateY(-100%);
}
@media (width < 767px) {
  .popup__close {
    top: -15px;
  }
}

/*==========================================================================
Search popup
============================================================================*/
.search-popup__main {
  margin-bottom: 40px;
}
.search-popup__form {
  width: 100%;
  position: relative;
}
.search-popup__area {
  width: 100%;
}
.search-popup__area input {
  width: 100%;
  border-radius: 12px;
  padding: 14px 165px 14px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 80px;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.01em;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.search-popup__area input::-webkit-search-cancel-button {
  filter: invert(0.5);
  cursor: pointer;
}
.search-popup__area input:focus {
  border-color: var(--color-primary);
}
@media (hover: hover) {
  .search-popup__area input:hover {
    border-color: var(--color-primary);
  }
}
@media (width < 600px) {
  .search-popup__area input {
    padding: 12px 70px 12px 24px;
    font-size: 16px;
  }
}
.search-popup__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 14px;
  right: 14px;
  height: calc(100% - 28px);
  background: var(--color-primary);
  color: #0f1015;
  padding: 10px 42px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid transparent;
}
.search-popup__submit svg {
  width: 18px;
  height: 18px;
  display: none;
}
@media (hover: hover) {
  .search-popup__submit:hover {
    background: rgba(40, 246, 188, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}
@media (width < 600px) {
  .search-popup__submit {
    width: 52px;
    height: 52px;
    padding: 0;
  }
  .search-popup__submit span {
    display: none;
  }
  .search-popup__submit svg {
    display: block;
  }
}
.search-popup__results {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.search-popup__results .button {
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
}
@media (hover: hover) {
  .search-popup__results .button:hover {
    background: rgba(40, 246, 188, 0.1);
  }
}
@media (width < 600px) {
  .search-popup__results {
    gap: 8px;
  }
  .search-popup__results .button {
    font-size: 12px;
    padding: 6px 16px;
  }
}
.search-popup__catalog {
  display: flex;
  gap: 26px;
}
@media (width < 767px) {
  .search-popup__catalog {
    flex-direction: column;
    gap: 40px;
  }
}
.search-popup__aside {
  flex: 0 1 50%;
}
.search-popup__group:not(:last-child) {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 26px;
}
@media (width < 600px) {
  .search-popup__group:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 26px;
  }
}
.search-popup__group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 26px;
}
@media (width < 600px) {
  .search-popup__group-title {
    margin-bottom: 15px;
  }
}
.search-popup__links a {
  display: flex;
  padding: 12px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.search-popup__links a svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .search-popup__links a:hover {
    background: rgba(40, 246, 188, 0.1);
    color: var(--color-primary);
  }
  .search-popup__links a:hover svg {
    opacity: 1;
  }
}
@media (width < 600px) {
  .search-popup__links a {
    font-size: 14px;
  }
}
.search-popup__products {
  flex: 0 1 50%;
  position: relative;
}
@media (width < 767px) {
  .search-popup__products {
    order: -1;
    overflow-x: auto;
    flex: 1 1 auto;
    width: 100%;
    max-width: calc(100vw - 52px - 40px);
    overflow-y: hidden;
    padding-bottom: 20px;
  }
}
@media (width < 600px) {
  .search-popup__products {
    max-width: calc(100vw - 52px - 12px);
  }
}
.search-popup__products-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 20px);
  padding-right: 20px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow-y: auto;
  gap: 26px;
}
@media (width < 767px) {
  .search-popup__products-wrapper {
    position: static;
    display: flex;
    overflow: unset;
    width: max-content;
    max-width: 100%;
    padding-right: 0;
    gap: 15px;
  }
  .search-popup__products-wrapper .product-preview {
    flex: 0 0 35%;
  }
  .search-popup__products-wrapper .product-preview__name {
    font-size: 14px;
  }
  .search-popup__products-wrapper .product-preview__image {
    border-radius: 12px;
    padding: 13px;
  }
}
@media (width < 600px) {
  .search-popup__products-wrapper {
    gap: 12px;
  }
  .search-popup__products-wrapper .product-preview__image {
    border-radius: 10px;
    padding: 10px;
  }
  .search-popup__products-wrapper .product-preview__name {
    font-size: 12px;
  }
}
.search-popup__close {
  display: flex;
  gap: 12px;
}

/*==========================================================================
Hero
============================================================================*/
.hero__body {
  position: relative;
  z-index: 3;
}
.hero__text {
  position: relative;
  z-index: 5;
}
.hero__text-wrapper {
  position: absolute;
  top: 139px;
  left: 0;
  z-index: 5;
  text-align: left;
}
@media (width > 2000px) {
  .hero__text-wrapper {
    top: 180px;
  }
}
@media (width < 880px) {
  .hero__text-wrapper {
    top: 90px;
  }
}
.hero__title {
  font-size: 62px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.01em;
  max-width: 629px;
}
@media (width < 1400px) {
  .hero__title {
    font-size: 48px;
    text-wrap: balance;
  }
}
@media (width < 767px) {
  .hero__title {
    font-size: 32px;
    font-weight: 400;
    max-width: 375px;
  }
}
.hero__subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.01em;
  margin-top: 24px;
  max-width: 447px;
}
@media (width < 1400px) {
  .hero__subtitle {
    font-size: 20px;
    text-wrap: balance;
  }
}
@media (width < 767px) {
  .hero__subtitle {
    margin-top: 10px;
    font-size: 16px;
  }
}
.hero__button {
  margin-top: 36px;
}
.hero__button a {
  width: max-content;
  padding: 18px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 500;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.hero__button a svg {
  width: 24px;
  height: 24px;
}
@media (hover: hover) {
  .hero__button a:hover {
    background: rgba(40, 246, 188, 0.1);
  }
}
@media (width < 767px) {
  .hero__button {
    margin-top: 20px;
  }
  .hero__button a {
    width: 335px;
  }
}
@media (width < 600px) {
  .hero__button a {
    width: 100%;
  }
}
.hero__slide {
  height: 100vh;
  min-height: 650px;
  max-height: 1280px;
  position: relative;
}
.hero__slide-image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -2;
}
.hero__slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width < 600px) {
  .hero__slide-image img {
    object-position: bottom;
  }
}
.hero__pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 6;
}
.hero__pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
  width: 12px;
  max-width: 6px;
  height: 6px;
  margin-inline: 2px !important;
  border-radius: 50px;
  transition: all 0.4s ease;
}
.hero__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  max-width: 12px;
  opacity: 1;
}

.hotspot {
  position: absolute;
  z-index: 99;
}
.hotspot:has(.show) .hotspot__triangle {
  opacity: 1;
  visibility: visible;
}
.hotspot.hotspot-col .hotspot__card {
  flex-direction: column;
  width: 140px;
  align-items: center;
  text-align: center;
  padding: 6px;
  border-radius: 20px;
}
@media (width > 2000px) {
  .hotspot.hotspot-col .hotspot__card {
    width: 180px;
  }
}
.hotspot.hotspot-col .hotspot__triangle {
  right: unset;
  left: 14px;
  top: calc(100% + 0px);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #0f1015;
}
.hotspot.hotspot-col .hotspot__card-name {
  font-weight: 400;
  font-size: 16px;
}
@media (width > 2000px) {
  .hotspot.hotspot-col .hotspot__card-name {
    font-size: 20px;
  }
}
@media (width > 2000px) {
  .hotspot.hotspot-col .hotspot__card-button {
    display: flex;
    justify-content: center;
  }
  .hotspot.hotspot-col .hotspot__card-button a {
    width: 100%;
  }
}
.hotspot__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(40, 246, 188, 0.2);
  -webkit-backdrop-filter: blur(6.4px);
  backdrop-filter: blur(6.4px);
  border: 1.7px dotted #fff;
  position: relative;
  cursor: pointer;
  animation: dotScale 2s ease-in-out infinite alternate;
}
.hotspot__dot::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 13px #fff;
  animation: dotInnerScale 2s ease-in-out infinite alternate;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .hotspot__dot:hover::after {
    background: var(--color-primary);
  }
}
.hotspot__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #0f1015;
  padding: 6px 24px 6px 6px;
  border-radius: 25px;
  width: 350px;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hotspot__card.show {
  opacity: 1;
  visibility: visible;
}
@media (width > 2000px) {
  .hotspot__card {
    width: 480px;
  }
}
@media (width < 767px) {
  .hotspot__card {
    gap: 10px;
    border-radius: 20px;
  }
}
.hotspot__triangle {
  position: absolute;
  top: 14px;
  right: calc(100% + 10px);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #0f1015;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (width < 880px) {
  .hotspot__triangle {
    right: unset;
    left: 14px;
    top: calc(100% + 0px);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #0f1015;
  }
}
.hotspot__card-image {
  flex: 0 0 128px;
  width: 128px;
  height: 128px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  overflow: hidden;
}
.hotspot__card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (width > 1200px) {
  .hotspot__card-image {
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
  }
}
.hotspot__card-name {
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
@media (width > 2000px) {
  .hotspot__card-name {
    font-size: 24px;
  }
}
@media (width < 767px) {
  .hotspot__card-name {
    font-size: 16px;
    font-weight: 400;
  }
}
.hotspot__card-descr {
  font-size: 10px;
  line-height: 140%;
  letter-spacing: -0.02em;
  opacity: 0.4;
  margin-bottom: 10px;
}
@media (width > 2000px) {
  .hotspot__card-descr {
    font-size: 16px;
  }
}
.hotspot__card-button a {
  padding: 8px 16px;
  height: 30px;
  max-width: 128px;
  display: flex;
  justify-content: center;
  text-align: center;
  border-radius: 100px;
  background: rgba(40, 246, 188, 0.1);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .hotspot__card-button a:hover {
    background: var(--color-primary);
    color: #0f1015;
  }
}
@media (width > 2000px) {
  .hotspot__card-button a {
    font-size: 18px;
    height: auto;
  }
}

@media (width < 880px) {
  .hotspot-row .hotspot__card {
    flex-direction: column;
    width: 140px;
    padding: 6px;
    align-items: center;
    text-align: center;
  }
}

.hotspot-1 {
  bottom: 20%;
  left: 51%;
}
.hotspot-1 .hotspot__card {
  right: calc(100% + 18px);
  top: -23px;
}
@media (width < 880px) {
  .hotspot-1 {
    bottom: unset;
    left: 7%;
    top: 47%;
  }
  .hotspot-1 .hotspot__card {
    right: unset;
    left: -20px;
    top: calc(100% + 18px);
  }
}
@media (width < 600px) {
  .hotspot-1 {
    left: 9%;
    top: 40%;
  }
}

.hotspot-2 {
  top: 24%;
  right: 15%;
}
.hotspot-2 .hotspot__card {
  left: -23px;
  top: calc(100% + 18px);
}
@media (width < 1000px) {
  .hotspot-2 {
    right: 70px;
  }
}
@media (width < 880px) {
  .hotspot-2 {
    right: unset;
    left: 28%;
    top: 50%;
  }
}
@media (width < 600px) {
  .hotspot-2 {
    left: 52%;
    top: 47%;
  }
}

.hero__title,
.hero__subtitle,
.hero__button {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero__slide.swiper-slide-active .hero__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero__slide.swiper-slide-active .hero__subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero__slide.swiper-slide-active .hero__button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

@keyframes dotScale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@keyframes dotInnerScale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.7);
  }
}
@keyframes scaling {
  0%, 100% {
    transform: scale(1);
    background: rgba(40, 246, 188, 0.1);
  }
  50% {
    transform: scale(1.15);
    background: rgba(40, 246, 188, 0.2);
  }
}
/*==========================================================================
Carousel
============================================================================*/
.carousel {
  overflow: hidden;
}
.carousel__body {
  padding-top: 90px;
}
@media (width < 767px) {
  .carousel__body {
    padding-top: 60px;
  }
}
@media (width < 600px) {
  .carousel__body {
    padding-top: 30px;
  }
}
.carousel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
@media (width < 767px) {
  .carousel__head {
    margin-bottom: 30px;
  }
}
@media (width < 600px) {
  .carousel__head {
    margin-bottom: 20px;
  }
  .carousel__head .button {
    display: none;
  }
}
.carousel__head-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.carousel__slider {
  padding-bottom: 22px;
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding-left: calc((100vw - 1800px) / 2);
  padding-right: calc((100vw - 1800px) / 2);
}
.carousel__slider .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}
@media (width < 2000px) {
  .carousel__slider {
    padding-left: calc((100vw - 1246px) / 2);
    padding-right: calc((100vw - 1246px) / 2);
  }
}
@media (width < 1300px) {
  .carousel__slider {
    padding-left: 26px;
    padding-right: 26px;
  }
}
@media (width < 767px) {
  .carousel__slider {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (width < 600px) {
  .carousel__slider {
    padding-bottom: 15px;
  }
}
.carousel__button {
  display: none;
}
@media (width < 600px) {
  .carousel__button {
    display: block;
  }
  .carousel__button .button {
    width: 100%;
    height: 46px;
  }
}

@media (hover: hover) {
  .product-preview:hover .product-preview__image {
    border-color: rgba(255, 255, 255, 0.2);
  }
  .product-preview:hover .product-preview__image img {
    transform: scale(1.06);
  }
}
.product-preview__image {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 15px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid transparent;
  overflow: hidden;
}
.product-preview__image img {
  width: 100%;
  aspect-ratio: 1/1;
  height: unset;
  object-fit: contain;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-preview__info {
  text-align: center;
}
.product-preview__name {
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.01em;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-preview__descr {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.6);
}

/*==========================================================================
Goal
============================================================================*/
.goal {
  position: relative;
  overflow: hidden;
}
.goal::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 238px;
  background: linear-gradient(180deg, #0f1015 0%, rgba(15, 16, 21, 0) 100%);
  z-index: 1;
}
.goal__body {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}
@media (width < 767px) {
  .goal__body {
    padding-top: 60px;
  }
}
.goal__title {
  text-align: center;
  max-width: 716px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 15px;
}
@media (width < 600px) {
  .goal__title {
    text-align: left;
    justify-content: flex-start;
  }
}
.goal__subtitle {
  text-align: center;
  max-width: 716px;
  margin-inline: auto;
  margin-bottom: 42px;
}
@media (width < 767px) {
  .goal__subtitle {
    margin-bottom: 20px;
  }
}
@media (width < 600px) {
  .goal__subtitle {
    text-align: left;
    text-wrap: balance;
  }
}
@media (width > 2000px) {
  .goal__text {
    font-size: 20px;
  }
}
@media (width < 1000px) {
  .goal__text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
  }
}
@media (width < 600px) {
  .goal__text {
    grid-template-columns: 1fr;
  }
}
.goal__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 200px;
  margin-bottom: 18px;
}
@media (width < 1000px) {
  .goal__items {
    display: contents;
  }
}
.goal__item {
  flex: 0 1 50%;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.6);
}
.goal__item:last-child {
  text-align: right;
  max-width: 504px;
  margin-left: auto;
}
@media (width > 2000px) {
  .goal__item {
    max-width: 26vw;
  }
}
@media (width < 1000px) {
  .goal__item:last-child {
    grid-column: 1/-1;
    max-width: 100%;
    text-align: left;
    margin: 0;
  }
}
.goal__advantage {
  padding: 30px 30px 26px 30px;
  display: flex;
  align-items: flex-end;
  gap: 30px;
  position: relative;
  max-width: 50%;
  border-radius: 20px;
  overflow: hidden;
}
.goal__advantage::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(300deg, #28f6bc 41%, #115f49 100%);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}
@media (width > 2000px) {
  .goal__advantage {
    padding-left: 60px;
  }
}
@media (width < 1000px) {
  .goal__advantage {
    order: -1;
    max-width: 100%;
    padding: 20px 19px;
  }
  .goal__advantage::after {
    background: linear-gradient(300deg, #28f6bc 0%, #115f49 100%);
  }
}
.goal__advantage-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  filter: url(#noiseFilter);
}
@media (width < 767px) {
  .goal__advantage-noise {
    display: none;
  }
}
.goal__advantage-val {
  font-size: 74px;
  line-height: 90%;
  letter-spacing: -0.07em;
  font-weight: 400;
  position: relative;
  border-radius: 20px;
}
.goal__advantage-val img {
  position: absolute;
  top: 0;
  left: calc(100% + 5px);
}
.goal__advantage-text span {
  display: block;
}
.goal__advantage-text-name {
  font-size: 18px;
  line-height: 90%;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}
@media (width > 2000px) {
  .goal__advantage-text-name {
    font-size: 24px;
  }
}
.goal__advantage-text-descr {
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.02em;
}
@media (width > 2000px) {
  .goal__advantage-text-descr {
    font-size: 18px;
  }
}
.goal__image {
  position: relative;
  width: 100%;
  z-index: 5;
  margin-top: -300px;
  pointer-events: none;
}
.goal__image img {
  width: 100%;
}
@media (width < 1600px) {
  .goal__image {
    margin-top: -250px;
  }
}
@media (width < 1250px) {
  .goal__image {
    margin-top: -200px;
  }
}
@media (width < 1000px) {
  .goal__image {
    margin-top: 0;
  }
}
@media (width < 767px) {
  .goal__image {
    width: 1400px;
    left: 50%;
    transform: translateX(-50%);
  }
  .goal__image img {
    max-width: unset;
    width: 100%;
  }
}
@media (width < 600px) {
  .goal__image {
    width: 864px;
  }
}
.goal__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1600px;
  height: auto;
  z-index: -2;
  opacity: 0.1;
}
.goal__bg img {
  width: 1600px;
  height: auto;
  max-width: unset;
}

/*==========================================================================
Offer
============================================================================*/
.offer {
  background: #14151a;
}
.offer__body {
  padding: 90px 0;
}
@media (width < 767px) {
  .offer__body {
    padding: 60px 0;
  }
}
.offer__title {
  margin-bottom: 40px;
  text-align: center;
}
.offer__title span {
  display: block;
}
.offer__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (width < 1000px) {
  .offer__cards {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
.offer__card {
  border-radius: 20px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
}
.offer__card:first-child {
  background: #0f1015;
}
@media (width < 1000px) {
  .offer__card:nth-child(2) {
    order: -1;
  }
}
.offer__card-head {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (width < 767px) {
  .offer__card-head {
    flex-direction: column;
    text-align: center;
  }
}
.offer__card-head-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 5px;
}
.offer__card-head-marketplaces {
  display: flex;
}
.offer__card-head-marketplace {
  display: flex;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: 4px solid #191a1e;
  border-radius: 50%;
}
@media (hover: hover) {
  .offer__card-head-marketplace:hover {
    transform: translateY(-6px);
  }
}
.offer__card-head-marketplace:nth-child(1) {
  z-index: 3;
}
.offer__card-head-marketplace:nth-child(2) {
  margin-left: -15px;
  z-index: 2;
}
.offer__card-head-marketplace:nth-child(3) {
  margin-left: -15px;
  z-index: 1;
}
.offer__card-head-descr {
  font-size: 14px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.5);
}
.offer__card-description {
  padding-top: 32px;
}
.offer__card-row:not(:last-child) {
  margin-bottom: 26px;
}
.offer__card-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 10px;
}
.offer__card-text {
  line-height: 140%;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.5);
  max-width: 498px;
}
@media (width < 767px) {
  .offer__card-text br {
    display: none;
  }
}

/*==========================================================================
FAQ
============================================================================*/
.faq {
  background: #14151a;
}
.faq__body {
  padding: 50px 0 90px;
}
@media (width < 767px) {
  .faq__body {
    padding: 0 0 60px;
  }
}
.faq__title {
  margin-bottom: 40px;
  text-align: center;
}
.faq__items {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
@media (width < 1000px) {
  .faq__items {
    flex-direction: column;
    gap: 20px;
  }
}
.faq__items-col {
  flex: 0 1 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq__item {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__item.active .faq__question-icon {
  background: rgba(40, 246, 188, 0.1);
  color: var(--color-primary);
}
.faq__item.active .faq__question-icon svg {
  transform: rotate(-45deg);
}
@media (hover: hover) {
  .faq__item:hover {
    background: rgba(255, 255, 255, 0.06);
  }
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 24px 24px 42px;
}
@media (width < 767px) {
  .faq__question {
    padding: 24px 24px 24px 32px;
  }
}
.faq__question-text {
  flex: 1;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  text-wrap: balance;
}
@media (width < 1400px) {
  .faq__question-text {
    font-size: 20px;
  }
}
@media (width < 767px) {
  .faq__question-text {
    font-size: 18px;
  }
}
.faq__question-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: var(--color-primary);
  color: #191a1f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__question-icon svg {
  width: 24px;
  height: 24px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (width < 1400px) {
  .faq__question-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
  }
  .faq__question-icon svg {
    width: 20px;
    height: 20px;
  }
}
@media (width < 767px) {
  .faq__question-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }
  .faq__question-icon svg {
    width: 17px;
    height: 17px;
  }
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__answer-wrapper {
  padding: 24px 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-weight: 500;
  line-height: 170%;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}
.faq__answer-wrapper a {
  color: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.faq__answer-wrapper a::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
}
@media (hover: hover) {
  .faq__answer-wrapper a:hover {
    color: #30c097;
  }
}
.faq__answer-wrapper p:not(:last-child) {
  margin-bottom: 20px;
}
@media (width < 767px) {
  .faq__answer-wrapper {
    padding: 24px 32px;
  }
}

/*==========================================================================
Request
============================================================================*/
.request {
  background: #0f1015;
  position: relative;
  z-index: 5;
}
.request__body {
  padding-top: 90px;
}
@media (width < 767px) {
  .request__body {
    padding-top: 60px;
  }
}
.request__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 15px;
  margin-bottom: 40px;
}
@media (width < 1000px) {
  .request__head {
    grid-template-columns: 1fr;
  }
}
@media (width < 767px) {
  .request__head {
    margin-bottom: 20px;
  }
}
.request__title span {
  display: block;
}
@media (width < 767px) {
  .request__title {
    font-size: 22px;
  }
}
.request__subtitle p {
  text-wrap: balance;
}
.request__subtitle p:not(:last-child) {
  margin-bottom: 20px;
}
.request__subtitle a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  position: relative;
}
.request__subtitle a::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .request__subtitle a:hover::after {
    transform: scaleX(1);
  }
}
.request__content {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  padding: 40px;
}
@media (width < 767px) {
  .request__content {
    padding: 10px;
  }
}
.request__form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (width < 1000px) {
  .request__form {
    display: flex;
    flex-direction: column;
  }
}
@media (width < 767px) {
  .request__form {
    gap: 10px;
  }
}
.request__form-col {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  align-items: start;
  gap: 15px;
}
.request__form-col:first-child .request__form-area:last-child {
  grid-row: span 2;
}
@media (width < 1000px) {
  .request__form-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
@media (width < 767px) {
  .request__form-col {
    gap: 10px;
  }
}
.request__form-area {
  width: 100%;
  display: flex;
  gap: 30px;
  position: relative;
}
.request__form-area:has(input:focus, textarea:focus) .request__form-label {
  transform: translateY(-80%) scale(0.7);
  color: var(--color-primary);
}
.request__form-area:has(input:focus, textarea:focus) .request__form-error {
  display: none;
}
.request__form-area .dropdown {
  width: 100%;
  max-width: unset;
}
.request__form-area.no-valid input,
.request__form-area.no-valid textarea {
  background: rgba(255, 0, 20, 0.1);
  border-color: #ff0014;
}
.request__form-area.no-valid .request__form-error {
  display: block;
}
.request__form-area.no-valid .request__form-label {
  color: #fff;
}
.request__form-area.no-valid .dropdown__button {
  background: rgba(255, 0, 20, 0.1);
  border-color: #ff0014;
  color: #fff;
}
.request__form-area.no-valid .dropdown__button .dropdown__button-icon {
  color: #ff0014;
}
.request__form-area.has-value .request__form-label {
  transform: translateY(-80%) scale(0.7);
  color: rgba(255, 255, 255, 0.5);
}
.request__form-error {
  display: none;
  position: absolute;
  left: 20px;
  top: 22px;
  color: #ff0014;
  font-size: 10px;
  line-height: 130%;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(-100%);
  pointer-events: none;
}
.request__form-label {
  position: absolute;
  left: 20px;
  top: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.01em;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left;
  will-change: transform;
}
@media (width < 767px) {
  .request__form-label {
    font-size: 16px;
  }
}
.request__form-additionals {
  width: 100%;
  grid-row: span 2;
}
.request__form-additionals::before, .request__form-additionals::after {
  content: "";
  display: block;
  width: 100%;
  height: 65px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.request__form-additionals::after {
  margin-top: 15px;
}
.request__form-additionals:has(.request__form-additional.active)::before, .request__form-additionals:has(.request__form-additional.active)::after {
  display: none;
}
.request__form-additionals:has(.request__form-additional.active[data-form-group=other])::before, .request__form-additionals:has(.request__form-additional.active[data-form-group=other])::after {
  display: block;
}
@media (width < 1000px) {
  .request__form-additionals::before, .request__form-additionals::after {
    display: none !important;
  }
}
.request__form-additional {
  display: none;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.request__form-additional.active {
  display: flex;
}
.request__form-action {
  display: flex;
  align-items: center;
  gap: 30px;
}
.request__form-action .button {
  display: block;
  flex: 0 1 60%;
  background: var(--color-primary);
  color: #0f1015;
  height: 65px;
  font-size: 18px;
  border: 1px solid transparent;
}
@media (hover: hover) {
  .request__form-action .button:hover {
    background: rgba(40, 246, 188, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}
.request__form-action .agree {
  flex: 0 0 203px;
}
@media (width < 767px) {
  .request__form-action {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .request__form-action .agree {
    order: -1;
    flex: 1 1 auto;
    max-width: 205px;
  }
  .request__form-action .button {
    flex: 1 1 auto;
    width: 100%;
    height: 65px;
  }
}

/*==========================================================================
Catalog
============================================================================*/
.catalog__title {
  margin-bottom: 40px;
}
.catalog__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (width < 1000px) {
  .catalog__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width < 880px) {
  .catalog__items {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (width < 450px) {
  .catalog__items {
    gap: 40px 20px;
  }
}
.category-preview {
  display: block;
}
@media (hover: hover) {
  .category-preview:hover .category-preview__image {
    border-color: rgba(255, 255, 255, 0.2);
  }
  .category-preview:hover .category-preview__image img {
    transform: scale(1.06);
  }
}
.category-preview__image {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 15px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid transparent;
}
.category-preview__image img {
  width: 100%;
  aspect-ratio: 1/1;
  height: unset;
  object-fit: contain;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (width < 600px) {
  .category-preview__image {
    padding: 14px;
  }
}
.category-preview__info {
  text-align: center;
}
.category-preview__name {
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: 228px;
  margin-inline: auto;
}
@media (width < 600px) {
  .category-preview__name {
    font-size: 14px;
    text-align: left;
  }
}
.category-preview__descr {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.6);
}

/*==========================================================================
Category
============================================================================*/
.category__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
@media (width < 1000px) {
  .category__head {
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
  }
}
@media (width < 767px) {
  .category__head {
    margin-bottom: 26px;
  }
}
.category__actions {
  display: flex;
  gap: 20px;
}
.category__actions .dropdown {
  width: 292px;
}
@media (width < 1000px) {
  .category__actions .dropdown {
    width: 100%;
  }
}
.category__actions .dropdown__button {
  height: 64px;
  color: #fff;
}
.category__actions .dropdown__button .dropdown__button-text {
  color: #fff;
  font-size: 14px;
}
.category__actions .dropdown__button .dropdown__button-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.3);
}
.category__actions .dropdown__item {
  height: 64px;
  font-size: 14px;
  letter-spacing: -0.01em;
  background: #202125;
}
@media (hover: hover) {
  .category__actions .dropdown__item:hover {
    background: rgba(40, 246, 188, 0.1);
    color: var(--color-primary);
  }
}
@media (width < 600px) {
  .category__actions .dropdown__button-image {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category__actions .dropdown__button {
    height: 46px;
    font-size: 12px;
    gap: 8px;
    padding-inline: 16px;
  }
  .category__actions .dropdown__button .dropdown__button-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
  }
  .category__actions .dropdown__button .dropdown__button-text {
    font-size: 12px;
  }
  .category__actions .dropdown__item {
    height: 42px;
    background: none;
  }
}
@media (width < 369px) {
  .category__actions {
    flex-direction: column;
    gap: 10px;
  }
}
@media (width < 1000px) {
  .category__sort {
    flex: 0 1 50%;
  }
}
.category__content {
  display: grid;
  grid-template-columns: 292px 1fr;
  gap: 26px;
}
@media (width < 1000px) {
  .category__content {
    grid-template-columns: 1fr;
  }
}
@media (width < 1000px) {
  .category__aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f1015;
    z-index: 99;
    max-height: 100%;
    overflow-y: auto;
    z-index: 999;
    padding: 15px 26px 25px 26px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .category__aside .filters__categories,
  .category__aside .filters__groups {
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
  }
  .category__aside.active {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
  .category__aside.active .filters__categories,
  .category__aside.active .filters__groups {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (width < 600px) {
  .category__aside {
    padding-inline: 20px;
  }
}
.category__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 26px;
}
@media (width > 2000px) {
  .category__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (width < 1200px) {
  .category__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 1000px) {
  .category__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (width < 880px) {
  .category__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 767px) {
  .category__grid {
    gap: 20px;
  }
}
@media (width < 600px) {
  .category__grid {
    gap: 40px 20px;
  }
  .category__grid .product-preview__name {
    font-size: 14px;
    text-align: left;
  }
  .category__grid .product-preview__image {
    padding: 14px;
  }
}

.filter-toggle {
  align-items: center;
  gap: 15px;
  height: 64px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 24px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: none;
  text-align: left;
}
@media (hover: hover) {
  .filter-toggle:hover {
    background: rgba(40, 246, 188, 0.1);
  }
}
@media (width < 1000px) {
  .filter-toggle {
    display: flex;
    flex: 0 1 50%;
  }
}
@media (width < 600px) {
  .filter-toggle {
    padding-inline: 16px;
    height: 46px;
    font-size: 12px;
    gap: 8px;
  }
}
@media (width < 369px) {
  .filter-toggle {
    flex: 1 1 auto;
  }
}
.filter-toggle__image {
  flex: 0 0 18px;
}
@media (width < 600px) {
  .filter-toggle__image {
    flex: 0 0 14px;
  }
}
.filter-toggle__text {
  flex: 1;
  font-size: 14px;
}
@media (width < 600px) {
  .filter-toggle__text {
    font-size: 12px;
  }
}
.filter-toggle__arrow {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  letter-spacing: -0.01em;
}
.filter-toggle__arrow svg {
  width: 100%;
  height: 100%;
}
@media (width < 600px) {
  .filter-toggle__arrow {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
  }
}

.close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
}
.close-icon svg {
  width: 16px;
  height: 16px;
}
.close-icon:active {
  color: var(--color-primary);
}
@media (hover: hover) {
  .close-icon:hover {
    color: var(--color-primary);
    background: rgba(40, 246, 188, 0.1);
  }
}

.filters__close {
  display: none;
}
@media (width < 1000px) {
  .filters__close {
    display: flex;
    margin-inline: auto;
    margin-bottom: 15px;
  }
}
.filters__categories {
  padding: 20px 24px;
  border-radius: 15px;
  background: #14151a;
}
.filters__categories-title {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.filters__categories-link {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.filters__categories-link.active {
  color: rgba(255, 255, 255, 0.5);
}
@media (hover: hover) {
  .filters__categories-link:not(.active):hover {
    color: var(--color-primary);
  }
}
.filters__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.filters__group {
  border-radius: 15px;
  background: #14151a;
  overflow: hidden;
}
.filters__group.opened .filters__title-icon {
  transform: scaleY(-1);
  color: rgba(255, 255, 255, 0.3);
}
.filters__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  padding: 20px 24px;
}
.filters__title-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.filters__title-icon svg {
  width: 100%;
  height: 100%;
}
.filters__items {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.filters__items-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
}
.filters__item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.filters__item:not(:last-child) {
  margin-bottom: 8px;
}
.filters__item input {
  display: none;
}
.filters__item:has(input:checked) .filters__item-box {
  border-color: var(--color-primary);
  background: var(--color-primary);
}
.filters__item:has(input:checked) .filters__item-box::after {
  opacity: 1;
}
.filters__item:active .filters__item-box {
  transform: scale(0.9);
}
@media (width < 600px) {
  .filters__item {
    font-size: 12px;
  }
}
@media (hover: hover) {
  .filters__item:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .filters__item:hover .filters__item-box {
    background: rgba(40, 246, 188, 0.2);
  }
}
.filters__item-box {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.filters__item-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/icons/check-dark.svg);
  background-size: 60% 60%;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
}
.filters__actions .button {
  width: 100%;
  height: 64px;
  background: rgba(40, 246, 188, 0.1);
  color: var(--color-primary);
  margin-bottom: 20px;
  border: 1px solid transparent;
}
@media (hover: hover) {
  .filters__actions .button:hover {
    border-color: var(--color-primary);
  }
}
.filters__actions .reset {
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  line-height: 120%;
  color: #b1bad3;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.filters__actions .reset svg {
  width: 12px;
  height: 12px;
}
@media (hover: hover) {
  .filters__actions .reset:hover {
    color: #ff0014;
  }
}

/*==========================================================================
Product
============================================================================*/
.product__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (width < 1200px) {
  .product__main {
    grid-template-columns: 1fr;
  }
}
@media (width < 767px) {
  .product__main {
    gap: 26px;
  }
}
@media (width < 600px) {
  .product__main {
    gap: 20px;
  }
}
.product__main-title {
  display: none;
}
@media (width < 1200px) {
  .product__main-title {
    display: block;
  }
}
.product__gallery {
  min-width: 0;
  width: 100%;
  position: relative;
}
@media (width < 1200px) {
  .product__gallery {
    max-width: 800px;
  }
}
.product__gallery-wrapper {
  min-width: 0;
  width: 100%;
}
.product__gallery-slider-thumbs {
  margin-top: 10px;
  min-width: 0;
  width: 100%;
  flex: 0 1 auto;
}
.product__gallery-item-small {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid transparent;
  cursor: pointer;
}
.product__gallery-item-small.swiper-slide-thumb-active {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.product__gallery-item-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (width < 600px) {
  .product__gallery-item-small {
    padding: 6px;
  }
}
.product__gallery-slider-big {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
  width: 100%;
  aspect-ratio: 1/1;
}
.product__gallery-item {
  width: 100%;
  height: 100%;
  padding: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (width < 600px) {
  .product__gallery-item {
    padding: 32px;
  }
}
.product__name {
  margin-bottom: 30px;
}
@media (width < 1000px) {
  .product__name {
    display: none;
  }
}
.product__buy {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 32px;
}
@media (width < 600px) {
  .product__buy {
    flex-direction: column;
    text-align: center;
  }
}
.product__buy-markeplaces {
  display: flex;
  gap: 10px;
}
.product__buy-markeplace {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .product__buy-markeplace:hover {
    transform: translateY(-4px);
  }
}
.product__buy-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 5px;
}
@media (width < 600px) {
  .product__buy-title {
    font-size: 20px;
  }
}
.product__buy-subtitle {
  font-size: 16px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.5);
}
.product__buy-subtitle a {
  display: inline-block;
  color: var(--color-primary);
  position: relative;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.product__buy-subtitle a::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
}
@media (hover: hover) {
  .product__buy-subtitle a:hover {
    color: #30c097;
  }
}
.product__description {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  line-height: 140%;
}
.product__description p:not(:last-child) {
  margin-bottom: 20px;
}
.reviews {
  padding: 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  margin-top: 26px;
}
@media (width < 767px) {
  .reviews {
    padding: 32px 20px;
  }
}
.reviews__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 500;
  height: 120%;
  margin-bottom: 40px;
}
@media (width < 767px) {
  .reviews__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.reviews__tabs {
  padding: 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  position: relative;
  margin-bottom: 26px;
}
@media (width < 600px) {
  .reviews__tabs {
    flex-direction: column;
    padding: 0;
  }
}
.reviews__tab {
  flex: 1;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.reviews__tab:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.reviews__tab:first-child .reviews__tab-link {
  margin-left: 0;
}
.reviews__tab:last-child .reviews__tab-link {
  margin-right: 0;
}
@media (width < 600px) {
  .reviews__tab:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.reviews__tab-link {
  padding: 12px 0;
  display: block;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  margin-inline: 20px;
  background: transparent;
}
@media (hover: hover) {
  .reviews__tab-link:hover {
    background: rgba(40, 246, 188, 0.1);
    border-color: #28f6bc;
  }
}
@media (width < 600px) {
  .reviews__tab-link {
    margin-inline: auto;
  }
}
.reviews__tab-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}
.reviews__tab-name {
  font-size: 16px;
  font-weight: 500;
}
.reviews__tab-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffc107;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.reviews__tab-val {
  font-size: 12px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.5);
}
.reviews__images-wrapper {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  overflow: hidden;
}
@media (width < 1200px) {
  .reviews__images-wrapper {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (width < 767px) {
  .reviews__images-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.reviews__image {
  aspect-ratio: 1/1;
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.reviews__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (hover: hover) {
  .reviews__image:hover {
    border-color: var(--color-primary);
  }
}
.reviews .reviews__image--more::after {
  content: attr(data-more);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  font-size: 24px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  z-index: 5;
}
@media (width < 767px) {
  .reviews .reviews__image--more::after {
    font-size: 18px;
  }
}
.reviews__item {
  padding: 26px 0;
}
.reviews__item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.reviews__item-info {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
@media (width < 600px) {
  .reviews__item-info {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}
.reviews__item-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews__item-author-photo {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url(../img/icons/person.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.reviews__item-author-name {
  font-size: 18px;
  font-weight: 500;
}
.reviews__item-text {
  font-size: 18px;
  line-height: 155.555556%;
  margin-bottom: 26px;
}
@media (width < 1000px) {
  .reviews__item-text {
    font-size: 16px;
  }
}
@media (width < 767px) {
  .reviews__item-text {
    font-size: 14px;
  }
}
.reviews__item-label {
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 26px;
}
.reviews__item-label a {
  display: inline-block;
  color: var(--color-primary);
  position: relative;
  transition: all 0.3s ease;
  margin-left: 3px;
}
.reviews__item-label a::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
}
@media (hover: hover) {
  .reviews__item-label a:hover::after {
    transform: translateY(-2px);
  }
}
@media (width < 600px) {
  .reviews__item-label {
    font-size: 14px;
  }
}
.reviews__item-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.reviews__item-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.reviews__item-action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
}
.reviews__item-action.--like {
  color: #5db24c;
}
.reviews__item-action.--dislike {
  color: #e35e5e;
}
.reviews__item-action.--dislike svg {
  transform: rotate(-180deg);
}
.reviews__item-like, .reviews__item-dislike {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.reviews__item-like svg, .reviews__item-dislike svg {
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .reviews__item-like:hover {
    color: #5db24c;
  }
}
.reviews__item-dislike svg {
  transform: rotate(-180deg);
}
@media (hover: hover) {
  .reviews__item-dislike:hover {
    color: #e35e5e;
  }
}
.reviews__item-date {
  color: #b4bbc6;
}
@media (width < 600px) {
  .reviews__item-date {
    font-size: 12px;
  }
}
.reviews__items-more {
  display: flex;
  justify-content: center;
}
.reviews__items-more .button {
  background: rgba(40, 246, 188, 0.1);
  color: var(--color-primary);
}
@media (hover: hover) {
  .reviews__items-more .button:hover {
    background: #115f49;
  }
}

.gslide-media.gslide-image {
  box-shadow: none;
}
.gslide-media.gslide-image img {
  background: #14151a;
  border-radius: 12px;
}

.goverlay {
  background: rgba(15, 16, 21, 0.9);
}

.gnext,
.gprev {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease;
}
.gnext svg,
.gprev svg {
  width: 18px;
  height: 18px;
}
.gnext svg path,
.gprev svg path {
  fill: #908f8f !important;
}
@media (hover: hover) {
  .gnext:hover,
  .gprev:hover {
    background: rgba(40, 246, 188, 0.1) !important;
  }
}

.gclose {
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  opacity: 1 !important;
}
.gclose svg {
  width: 16px !important;
  height: 16px !important;
}
.gclose svg path {
  fill: #908f8f !important;
}
@media (hover: hover) {
  .gclose:hover {
    background: rgba(40, 246, 188, 0.1) !important;
  }
}

/*==========================================================================
Product banner
============================================================================*/
.product__banners {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}
@media (width < 1000px) {
  .product__banners {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width < 767px) {
  .product__banners {
    grid-template-columns: 1fr;
  }
}
@media (width < 600px) {
  .product__banners {
    margin-top: 20px;
    gap: 20px;
  }
}
.product__banner {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.product__banner.--large {
  grid-column: 1/-1;
  text-align: center;
}
.product__banner.--large .product__banner-info {
  padding: 23px 32px;
}
.product__banner.--medium {
  grid-column: span 3;
}
.product__banner.--small {
  grid-column: span 2;
}
@media (width < 1000px) {
  .product__banner.--medium {
    grid-column: span 2;
  }
}
@media (width < 767px) {
  .product__banner.--large {
    grid-column: span 1;
  }
  .product__banner.--large .product__banner-info {
    padding: 32px;
    text-align: left;
  }
  .product__banner.--medium {
    grid-column: span 1;
  }
  .product__banner.--small {
    grid-column: span 1;
  }
}
@media (width < 600px) {
  .product__banner.--large .product__banner-info {
    padding: 20px;
  }
}
.product__banner-image {
  width: 100%;
  height: auto;
}
.product__banner-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product__banner-info {
  padding: 32px;
}
@media (width < 600px) {
  .product__banner-info {
    padding: 20px;
  }
}
.product__banner-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  text-wrap: balance;
}
.product__banner-text {
  color: #8f93a8;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

/*==========================================================================
Product video
============================================================================*/
.product__video {
  margin-top: 26px;
  position: relative;
  background: #0f1015;
}
.product__video-wrapper:has(.video-player.is-playing) .product__video-label {
  transform: translateX(-50%) scaleY(0);
}
.product__video-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 12px 70px;
  background-image: url(../img/label.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: top;
  white-space: nowrap;
}
@media (width < 600px) {
  .product__video-label {
    font-size: 14px;
    gap: 10px;
    padding: 11px 50px;
    width: max-content;
  }
}
@media (width < 369px) {
  .product__video-label {
    padding: 11px 40px;
    font-size: 12px;
    gap: 8px;
  }
  .product__video-label img {
    width: 16px;
    height: 16px;
  }
}

.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 450px;
}
.video-player.is-playing .video-player__poster,
.video-player.is-playing .video-player__button {
  display: none;
}
@media (width < 1000px) {
  .video-player {
    min-height: 320px;
  }
}
@media (width < 600px) {
  .video-player {
    min-height: 240px;
  }
}
.video-player video {
  width: 100%;
}
.video-player__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.video-player__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-player__button {
  position: absolute;
  top: calc(50% - 44px);
  left: calc(50% - 44px);
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0f1015;
  color: var(--color-primary);
  z-index: 5;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-player__button svg {
  width: 32px;
  height: 32px;
  margin-right: -5px;
}
@media (hover: hover) {
  .video-player__button:hover {
    background: var(--color-primary);
    color: #0f1015;
  }
}
@media (width < 600px) {
  .video-player__button {
    width: 46px;
    height: 46px;
    top: calc(50% - 23px);
    left: calc(50% - 23px);
  }
  .video-player__button svg {
    width: 17px;
    height: 17px;
    margin-right: -4px;
  }
}

/*==========================================================================
3D model
============================================================================*/
.product__model {
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 450px;
  width: 100%;
}
.product__model::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-image: url(../img/net.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.2;
  min-width: 720px;
}
@media (width < 600px) {
  .product__model {
    height: 335px;
    margin-top: 20px;
    padding: 20px;
  }
}
.product__model-label {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
  gap: 10px;
}
@media (width < 600px) {
  .product__model-label {
    position: static;
    font-size: 18px;
  }
}
.product__model-wrapper {
  position: relative;
  z-index: 3;
}
.product__model-viewer {
  width: 100%;
  height: 450px;
  --progress-bar-color: #28f6bc;
  --progress-bar-height: 4px;
}
@media (width < 600px) {
  .product__model-viewer {
    height: 300px;
  }
}

/*==========================================================================
Specification
============================================================================*/
.product__specs {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 32px;
  margin: 26px 0;
}
@media (width < 600px) {
  .product__specs {
    padding: 32px 20px;
    margin: 20px 0;
  }
}
.product__specs-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 26px;
}
@media (width < 600px) {
  .product__specs-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.product__specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 26px;
}
@media (width < 1000px) {
  .product__specs-list {
    grid-template-columns: 1fr;
  }
}
.product__specs-col .product__specs-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.product__specs-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 25px;
  padding: 15px 0;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.01em;
}
@media (width < 600px) {
  .product__specs-item {
    grid-template-columns: 1fr;
  }
}
.product__specs-name {
  color: rgba(255, 255, 255, 0.5);
}
.product__buttons {
  margin-top: 26px;
  display: flex;
  gap: 26px;
}
@media (width < 1000px) {
  .product__buttons {
    gap: 10px;
  }
}
@media (width < 600px) {
  .product__buttons {
    margin-top: 20px;
    flex-direction: column;
  }
}
.product__button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  height: 65px;
  min-height: 65px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.product__button sup {
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
}
@media (hover: hover) {
  .product__button:hover {
    background: rgba(40, 246, 188, 0.1);
  }
}
@media (width < 1000px) {
  .product__button {
    font-size: 16px;
  }
}
@media (width < 767px) {
  .product__button {
    font-size: 14px;
  }
  .product__button img {
    width: 18px;
    height: 18px;
  }
}

/*==========================================================================
News
============================================================================*/
.news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (width < 1000px) {
  .news__head {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (width < 767px) {
  .news__head {
    padding-bottom: 26px;
  }
}
.news__actions {
  display: flex;
  gap: 12px;
}
@media (width < 600px) {
  .news__actions {
    flex-direction: column;
    gap: 20px;
  }
}
.news__search {
  flex: 1;
  min-width: 398px;
}
@media (width < 1300px) {
  .news__search {
    min-width: unset;
  }
}
.news__search-form {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid transparent;
}
.news__search-form:has(input:focus) {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.05) !important;
}
.news__search-form:has(input:hover) {
  background: rgba(40, 246, 188, 0.1);
}
.news__search-area {
  width: 100%;
}
.news__search-area input {
  width: 100%;
  background: transparent;
  border-radius: 12px;
  padding: 14px 64px 14px 24px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  height: 65px;
}
.news__search-area input::-webkit-search-cancel-button {
  filter: invert(0.5);
  cursor: pointer;
}
.news__search-button {
  position: absolute;
  top: 6px;
  right: 6px;
  height: calc(100% - 12px);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--color-primary);
  color: #0f1015;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid transparent;
}
.news__search-button svg {
  width: 20px;
  height: 20px;
}
@media (hover: hover) {
  .news__search-button:hover {
    transform: scale(0.94);
  }
}
.news__sort {
  flex: 1;
  min-width: 398px;
}
.news__sort .dropdown__button {
  color: #fff;
}
@media (width < 1300px) {
  .news__sort {
    min-width: unset;
  }
}
.news__content {
  padding-top: 40px;
}
@media (width < 767px) {
  .news__content {
    padding-top: 26px;
  }
}
.news__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
}
@media (width < 1000px) {
  .news__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 767px) {
  .news__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.article-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .article-preview:hover {
    background: rgba(255, 255, 255, 0.05);
  }
  .article-preview:hover .article-preview__image img {
    transform: scale(1.05);
  }
  .article-preview:hover .article-preview__name {
    color: var(--color-primary);
  }
}
.article-preview__tags {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-wrap: wrap;
  z-index: 10;
}
@media (width < 600px) {
  .article-preview__tags {
    top: 20px;
    left: 20px;
  }
}
.article-preview__image {
  width: 100%;
  height: 292px;
  overflow: hidden;
  background: #0a0b0c;
}
.article-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.article-preview__info {
  flex: 1;
  padding: 15px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.article-preview__name {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.01em;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.article-preview__text {
  color: #8f93a8;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  flex: 1;
}
.article-preview__date {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 90%;
  letter-spacing: -0.01em;
  color: rgba(143, 147, 168, 0.5);
}

/*==========================================================================
Article page
============================================================================*/
.article {
  overflow: hidden;
}
.article__poster {
  width: 100%;
  height: 500px;
}
.article__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width < 1000px) {
  .article__poster {
    height: 400px;
  }
}
@media (width < 767px) {
  .article__poster {
    height: 340px;
  }
}
@media (width < 600px) {
  .article__poster {
    height: 240px;
  }
}
@media (width > 1001px) {
  .article__body .breadcrumbs__nav {
    justify-content: center;
  }
}
.article__head {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (width < 767px) {
  .article__head {
    padding-bottom: 26px;
  }
}
.article__title {
  text-align: center;
}
@media (width < 1000px) {
  .article__title {
    text-align: left;
  }
}
@media (width < 600px) {
  .article__title {
    text-wrap: balance;
  }
}
.article__subtitle {
  margin-top: 40px;
  text-align: center;
  max-width: 942px;
  margin-inline: auto;
  line-height: 140%;
  font-size: 16px;
}
.article__subtitle p:not(:last-child) {
  margin-bottom: 40px;
}
@media (width < 1000px) {
  .article__subtitle {
    text-align: left;
  }
}
@media (width < 767px) {
  .article__subtitle {
    margin-top: 26px;
  }
  .article__subtitle p:not(:last-child) {
    margin-bottom: 26px;
  }
}
.article__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
}
@media (width < 767px) {
  .article__actions {
    margin: 26px 0 30px;
  }
}
@media (width < 600px) {
  .article__actions {
    margin: 26px 0 20px;
  }
}
.article__actions-title {
  display: flex;
  align-items: center;
  gap: 24px;
}
.article__actions-title .button {
  background: rgba(40, 246, 188, 0.1);
  color: var(--color-primary);
}
@media (hover: hover) {
  .article__actions-title .button:hover {
    background: rgba(40, 246, 188, 0.2);
    color: var(--color-primary);
  }
}
@media (width < 600px) {
  .article__actions-title .button {
    display: none;
  }
}
.article__gallery-slider {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding-left: calc((100vw - 1800px) / 2);
  padding-right: calc((100vw - 1800px) / 2);
}
@media (width < 2000px) {
  .article__gallery-slider {
    padding-left: calc((100vw - 1246px) / 2);
    padding-right: calc((100vw - 1246px) / 2);
  }
}
.article__gallery-slider .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}
@media (width < 1300px) {
  .article__gallery-slider {
    padding-left: 26px;
    padding-right: 26px;
  }
}
@media (width < 767px) {
  .article__gallery-slider {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.article__gallery-slide {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0.2;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.article__gallery-slide.swiper-slide-visible {
  opacity: 1;
}
.article__gallery-slide a {
  display: flex;
  width: 100%;
  height: 100%;
}
.article__gallery-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
@media (hover: hover) {
  .article__gallery-slide:hover img {
    transform: scale(1.02);
  }
}

/*==========================================================================
Article video
============================================================================*/
.article__video {
  margin: 40px 0;
  display: flex;
  gap: 26px;
}
@media (width < 1000px) {
  .article__video {
    flex-direction: column;
  }
}
@media (width < 767px) {
  .article__video {
    margin: 26px 0;
  }
}
.article__video-wrapper {
  flex: 0 1 822px;
}
@media (width > 2000px) {
  .article__video-wrapper {
    flex: 0 1 50%;
  }
}
@media (width < 1000px) {
  .article__video-wrapper {
    flex: 1 1 auto;
  }
}
.article__video-card {
  flex: 0 1 398px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}
@media (width > 2000px) {
  .article__video-card {
    flex: 0 1 50%;
  }
}
@media (width < 1000px) {
  .article__video-card {
    flex: 1 1 auto;
  }
}
.article__video-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 24px;
}
.article__video-text {
  line-height: 140%;
}
.article__video-text p:not(:last-child) {
  margin-bottom: 20px;
}

/*==========================================================================
Article advantages
============================================================================*/
.article__advantages-title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.01em;
  margin: 40px 0;
}
@media (width < 767px) {
  .article__advantages-title {
    margin: 86px 0 26px;
  }
}
@media (width < 600px) {
  .article__advantages-title {
    margin: 40px 0 20px;
    text-wrap: balance;
  }
}
.article__advantages-cards {
  display: flex;
  gap: 26px;
  margin-bottom: 40px;
}
@media (width < 1000px) {
  .article__advantages-cards {
    flex-direction: column;
  }
}
@media (width < 767px) {
  .article__advantages-cards {
    margin-bottom: 0;
  }
}
@media (width < 600px) {
  .article__advantages-cards {
    gap: 20px;
  }
}
.article__advantages-card {
  flex: 1;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
}
@media (width < 600px) {
  .article__advantages-card {
    text-align: center;
  }
}
.article__advantages-head {
  margin-bottom: 15px;
}
@media (width < 1000px) {
  .article__advantages-head {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
@media (width < 600px) {
  .article__advantages-head {
    flex-direction: column;
    align-items: center;
  }
}
.article__advantages-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  margin-bottom: 15px;
}
.article__advantages-icon::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(40, 246, 188, 0.1);
  border-radius: 50%;
  animation: scaling 4s linear 0s infinite;
}
@media (width < 1000px) {
  .article__advantages-icon {
    margin: 0;
  }
}
.article__advantages-name {
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.01em;
}
@media (width < 1000px) {
  .article__advantages-name br {
    display: none;
  }
}
.article__advantages-text {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #8f93a8;
}
.article__advantages-description {
  font-size: 16px;
  line-height: 160%;
  color: #fff;
}
.article__advantages-description p:not(:last-child) {
  margin-bottom: 26px;
}
@media (width < 767px) {
  .article__advantages-description {
    display: none;
  }
}

/*==========================================================================
Dealers
============================================================================*/
@media (width < 600px) {
  .dealers__body .breadcrumbs__nav {
    justify-content: center;
  }
}
.dealers__head {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.dealers__head .button {
  background: rgba(40, 246, 188, 0.1);
  color: var(--color-primary);
}
@media (hover: hover) {
  .dealers__head .button:hover {
    background: rgba(40, 246, 188, 0.2);
    color: var(--color-primary);
  }
}
@media (width < 767px) {
  .dealers__head {
    padding-bottom: 32px;
  }
}
@media (width < 600px) {
  .dealers__head {
    flex-direction: column;
    gap: 26px;
    padding-bottom: 26px;
  }
}
.dealers__marque {
  overflow: hidden;
  position: relative;
  pointer-events: none;
}
.dealers__marque::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc((100vw - 1246px) / 2);
  z-index: 3;
  background: linear-gradient(90deg, #0f1015 0%, transparent 100%);
}
.dealers__marque::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc((100vw - 1246px) / 2);
  z-index: 3;
  background: linear-gradient(270deg, #0f1015 0%, transparent 100%);
}
.dealers__slider {
  padding: 60px 0;
}
.dealers__slider .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}
@media (width < 767px) {
  .dealers__slider {
    padding: 32px 0;
  }
}
@media (width < 600px) {
  .dealers__slider {
    padding: 26px 0;
  }
}
.dealers__slide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  transform: translateZ(0);
}
@media (width < 767px) {
  .dealers__slide {
    max-width: 170px;
  }
}
@media (width < 600px) {
  .dealers__slide {
    max-width: 100px;
    max-height: 60px;
  }
}

/*==========================================================================
Dealers advantages
============================================================================*/
@media (width < 600px) {
  .dealers__advantages {
    margin-top: 26px;
  }
}
.dealers__advantages-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  padding: 32px;
}
.dealers__advantages-title {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (width < 1000px) {
  .dealers__advantages-title {
    flex-direction: column;
    text-align: center;
  }
}
.dealers__advantages-title-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
}
.dealers__advantages-title-icon::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(40, 246, 188, 0.1);
  border-radius: 50%;
  animation: scaling 4s linear 0s infinite;
}
.dealers__advantages-main {
  padding-top: 32px;
  display: flex;
  gap: 26px;
}
@media (width < 1000px) {
  .dealers__advantages-main {
    flex-direction: column;
  }
}
.dealers__advantages-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.dealers__advantage-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 10px;
}
@media (width < 600px) {
  .dealers__advantage-title {
    margin-bottom: 20px;
    text-wrap: balance;
  }
}
.dealers__advantage-text {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.5);
}
.dealers__request {
  display: flex;
  align-items: center;
  gap: 30px;
}
.dealers__request p {
  font-size: 14px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.5);
}
.dealers__request .button {
  width: 345px;
  background: var(--color-primary);
  color: #0f1015;
  min-height: 65px;
  border: 1px solid transparent;
  font-size: 18px;
}
@media (hover: hover) {
  .dealers__request .button:hover {
    background: rgba(40, 246, 188, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}
@media (width < 600px) {
  .dealers__request {
    flex-direction: column;
    gap: 20px;
  }
  .dealers__request p br {
    display: none;
  }
  .dealers__request .button {
    width: 100%;
  }
}

/*==========================================================================
Dealer list
============================================================================*/
@media (width < 600px) {
  .dealers:has(div.dealers__list) .dealers__body .breadcrumbs__nav {
    justify-content: flex-start;
  }
  .dealers:has(div.dealers__list) .dealers__head {
    align-items: flex-start;
    text-align: left;
  }
}
.dealers__title sup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 6px;
  color: #fff;
}
.dealers__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 40px;
}
@media (width < 1000px) {
  .dealers__list {
    grid-template-columns: 1fr;
  }
}
@media (width < 767px) {
  .dealers__list {
    margin-top: 26px;
  }
}
@media (width < 600px) {
  .dealers__list {
    margin-top: 10px;
  }
}
.dealers__list-col {
  width: 100%;
}
.dealers__list-col .dealer:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (hover: hover) {
  .dealers__list-col .dealer:hover {
    border-color: var(--color-primary);
  }
}
@media (width < 600px) {
  .dealers__list-col:first-child .dealer {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.dealer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 24px 0;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .dealer:hover .dealer__name {
    color: var(--color-primary);
  }
  .dealer:hover .dealer__link {
    color: #fff;
  }
  .dealer:hover .dealer__link-arrow {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (width < 600px) {
  .dealer {
    grid-template-columns: 1fr;
  }
}
.dealer__name {
  font-size: 24px;
  font-weight: 50;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.dealer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.dealer__link-arrow {
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(-100%);
  opacity: 0;
}
@media (width < 600px) {
  .dealer__link-arrow {
    display: none;
  }
}

/*==========================================================================
Support
============================================================================*/
.support__content {
  display: flex;
  gap: 26px;
}
@media (width < 1000px) {
  .support__content {
    flex-direction: column;
  }
}
@media (width < 600px) {
  .support__content {
    gap: 20px;
  }
}
.support__card {
  flex: 0 1 50%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.support__card-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 12px 70px;
  background-image: url(../img/label.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: top;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 500;
  width: max-content;
}
@media (width < 600px) {
  .support__card-label {
    font-size: 14px;
    gap: 10px;
    padding: 11px 50px;
    width: max-content;
  }
}
@media (width < 369px) {
  .support__card-label {
    padding: 11px 40px;
    font-size: 12px;
    gap: 8px;
  }
  .support__card-label img {
    width: 16px;
    height: 16px;
  }
}
.support__card-image {
  width: 100%;
  height: 100%;
}
.support__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width < 767px) {
  .support__card-image {
    min-height: 440px;
  }
  .support__card-image img {
    min-height: 440px;
  }
}
.support__card-links {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.support__card-links-wrapper {
  padding: 12px;
  display: flex;
  gap: 12px;
  border-radius: 24px;
  background: rgba(244, 160, 17, 0.05);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}
.support__card-link {
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .support__card-link:hover {
    transform: translateY(-4px);
  }
}
.support__info {
  flex: 0 1 50%;
}
.support__item {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  padding: 32px 46px;
}
.support__item:not(:last-child) {
  margin-bottom: 26px;
}
@media (width < 600px) {
  .support__item:not(:last-child) {
    margin-bottom: 20px;
  }
}
.support__item-row:not(:last-child) {
  margin-bottom: 40px;
}
.support__item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b1bad3;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.support__item-link {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .support__item-link:not(div, span):hover {
    color: var(--color-primary);
  }
}
@media (width < 600px) {
  .support__item-link {
    font-size: 18px;
  }
}

/*==========================================================================
Legal
============================================================================*/
.legal__title {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}
@media (width < 767px) {
  .legal__title {
    padding-bottom: 26px;
    margin-bottom: 26px;
  }
}
.legal__text {
  line-height: 160%;
  font-weight: 400;
  font-size: 18px;
}
.legal__text h2 {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 24px;
}
.legal__text h2:not(:first-child) {
  margin-top: 40px;
}
.legal__text p:not(:last-child) {
  margin-bottom: 10px;
}
@media (width < 1000px) {
  .legal__text {
    font-size: 16px;
  }
  .legal__text h2 {
    font-size: 18px;
  }
}
@media (width < 600px) {
  .legal__text {
    font-size: 14px;
  }
}

/*==========================================================================
404
============================================================================*/
.error-page__body {
  padding: 70px 0;
}
@media (width < 767px) {
  .error-page__body {
    padding: 40px 0;
  }
}
.error-page__image {
  max-width: 630px;
  margin-inline: auto;
}
.error-page__title {
  margin: 46px 0;
  font-size: 26px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: #767777;
  text-align: center;
}
@media (width < 600px) {
  .error-page__title {
    margin: 24px 0;
    font-size: 18px;
  }
}
.error-page__button {
  display: flex;
  justify-content: center;
}
.error-page__button .button {
  gap: 52px;
  height: 70px;
  background: rgba(40, 246, 188, 0.1);
  color: var(--color-primary);
  font-size: 18px;
  padding: 14px 26px;
}
.error-page__button .button svg {
  width: 24px;
  height: 24px;
}
@media (hover: hover) {
  .error-page__button .button:hover {
    background: var(--color-primary);
    color: #0f1015;
  }
}
@media (width < 600px) {
  .error-page__button .button {
    width: 100%;
    justify-content: space-between;
  }
}

/*==========================================================================
Cookies
============================================================================*/
.cookies {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 280px;
}
@media (width < 767px) {
  .cookies {
    left: unset;
    right: 20px;
    height: auto;
  }
}
@media (width < 600px) {
  .cookies {
    right: 0;
    width: 100%;
    max-width: 100%;
    bottom: -20px;
  }
}
.cookies__banner {
  padding: 22px;
  background: #0f1015;
  border-radius: 20px;
  position: relative;
}
@media (width < 600px) {
  .cookies__banner {
    padding-bottom: 42px;
  }
}
.cookies__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cookies__att-text {
  font-size: 10px;
  line-height: 160%;
  margin-bottom: 20px;
}
.cookies__att-text a {
  color: var(--color-primary);
  text-decoration: underline;
}
@media (hover: hover) {
  .cookies__att-text a:hover {
    color: #30c097;
  }
}
.cookies__actions {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.cookies__reject, .cookies__apply {
  flex: 1;
  padding: 10px 6px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 36px;
  min-height: 38px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid transparent;
}
@media (hover: hover) {
  .cookies__reject:hover {
    border-color: #ff0014;
    color: #ff0014;
  }
}
.cookies__apply {
  background: var(--color-primary);
  color: #0f1015;
}
@media (hover: hover) {
  .cookies__apply:hover {
    border-color: var(--color-primary);
    background: rgba(40, 246, 188, 0.1);
    color: var(--color-primary);
  }
}
.cookies__settings-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  color: #b1bad3;
  font-size: 10px;
  font-weight: 500;
  line-height: 150%;
  min-height: 24px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookies__settings-btn svg {
  width: 14px;
  height: 14px;
}
@media (hover: hover) {
  .cookies__settings-btn:hover {
    color: #abc1ff;
  }
}
.cookies__settings-group {
  margin-bottom: 20px;
}
.cookies__setting:not(:last-child) {
  margin-bottom: 20px;
}
.cookies__setting.opened .cookies__setting-name::after {
  transform: scaleY(-1);
}
.cookies__setting-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookies__setting-input {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookies__setting-input:has(input:checked) {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
@media (hover: hover) {
  .cookies__setting-input:hover {
    border-color: var(--color-primary);
  }
}
.cookies__setting-input::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-image: url(../img/icons/check-dark.svg);
  background-size: 60% 60%;
  background-repeat: no-repeat;
  background-position: center center;
}
.cookies__setting-input input {
  display: none;
}
.cookies__setting-name {
  flex: 1;
  font-size: 12px;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.cookies__setting-name::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-image: url(../img/icons/chevron-light.svg);
  background-size: 24px 24px;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .cookies__setting-name:hover {
    color: var(--color-primary);
  }
}
.cookies__setting-descr {
  max-height: 0;
  overflow: hidden;
  font-size: 10px;
  line-height: 140%;
  transition: all 0.2s linear;
}
.cookies__setting-descr p {
  padding-top: 10px;
}