@font-face {
  font-family: 'HostGrotesk';
  font-display: swap;
  src: url('../fonts/HostGrotesk-VariableFont_wght.woff2') format('woff2-variations');
  font-weight: 300 800;
}
:root {
  --container-width: 100rem;
  --container-padding: 2.5rem;
  --app-min-width: 26.25rem;
  --header-offset: 2.5rem;
  --header-height: 3.75rem;
  --plyr-color-main: #5846a6;
}
@media (width < 1024px) {
  :root {
    --header-offset: 0px;
    --container-padding: 1.5rem;
  }
}
@media (width < 480px) {
  :root {
    --container-padding: 1rem;
  }
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.mask {
  --ms: var(--mask-size, 7.5rem);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black var(--ms),
    black calc(100% - var(--ms)),
    transparent
  );
  mask-image: linear-gradient(to right, transparent, black var(--ms), black calc(100% - var(--ms)), transparent);
}
.mask-vertical {
  --ms: var(--mask-size, 7.5rem);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black var(--ms),
    black calc(100% - var(--ms)),
    transparent
  );
  mask-image: linear-gradient(to bottom, transparent, black var(--ms), black calc(100% - var(--ms)), transparent);
}
.shape {
  clip-path: var(--shape);
  border-radius: var(--r);
}
.shape--top-left {
  --shape: shape(
    from 0 calc(var(--h) + var(--r)),
    curve to var(--r) var(--h) with 0 var(--h),
    line to calc(var(--w) - var(--ro)) var(--h),
    curve to var(--w) calc(var(--h) - var(--ro)) with var(--w) var(--h),
    line to var(--w) var(--ro),
    curve to calc(var(--w) + var(--ro)) 0 with var(--w) 0,
    line to calc(100% - var(--r)) 0,
    curve to 100% var(--r) with 100% 0,
    line to 100% calc(100% - var(--r)),
    curve to calc(100% - var(--r)) 100% with 100% 100%,
    line to var(--r) 100%,
    curve to 0 calc(100% - var(--r)) with 0 100%,
    close
  );
}
.shape--top-right {
  --shape: shape(
    from var(--r) 0,
    line to calc(100% - var(--w) - var(--ro)) 0,
    curve to calc(100% - var(--w)) var(--ro) with calc(100% - var(--w)) 0,
    line to calc(100% - var(--w)) calc(var(--h) - var(--ro)),
    curve to calc(100% - var(--w) + var(--ro)) var(--h) with calc(100% - var(--w)) var(--h),
    line to calc(100% - var(--r)) var(--h),
    curve to 100% calc(var(--h) + var(--r)) with 100% var(--h),
    line to 100% calc(100% - var(--r)),
    curve to calc(100% - var(--r)) 100% with 100% 100%,
    line to var(--r) 100%,
    curve to 0 calc(100% - var(--r)) with 0 100%,
    line to 0 var(--r),
    curve to var(--r) 0 with 0 0,
    close
  );
}
.shape--bottom-left {
  --shape: shape(
    from 0 var(--r),
    curve to var(--r) 0 with 0 0,
    line to calc(100% - var(--r)) 0,
    curve to 100% var(--r) with 100% 0,
    line to 100% calc(100% - var(--r)),
    curve to calc(100% - var(--r)) 100% with 100% 100%,
    line to calc(var(--w) + var(--ro)) 100%,
    curve to var(--w) calc(100% - var(--ro)) with var(--w) 100%,
    line to var(--w) calc(100% - var(--h) + var(--ro)),
    curve to calc(var(--w) - var(--ro)) calc(100% - var(--h)) with var(--w) calc(100% - var(--h)),
    line to var(--r) calc(100% - var(--h)),
    curve to 0 calc(100% - var(--h) - var(--r)) with 0 calc(100% - var(--h)),
    close
  );
}
.shape--bottom-right {
  --shape: shape(
    from var(--r) 0,
    line to calc(100% - var(--r)) 0,
    curve to 100% var(--r) with 100% 0,
    line to 100% calc(100% - var(--h) - var(--r)),
    curve to calc(100% - var(--r)) calc(100% - var(--h)) with 100% calc(100% - var(--h)),
    line to calc(100% - var(--w) + var(--ro)) calc(100% - var(--h)),
    curve to calc(100% - var(--w)) calc(100% - var(--h) + var(--ro)) with calc(100% - var(--w)) calc(100% - var(--h)),
    line to calc(100% - var(--w)) calc(100% - var(--ro)),
    curve to calc(100% - var(--w) - var(--ro)) 100% with calc(100% - var(--w)) 100%,
    line to var(--r) 100%,
    curve to 0 calc(100% - var(--r)) with 0 100%,
    line to 0 var(--r),
    curve to var(--r) 0 with 0 0,
    close
  );
}
/* base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (width >= 1024px) {
  * ::-webkit-scrollbar {
    width: 0.438rem;
    height: 0.438rem;
  }
  * ::-webkit-scrollbar-thumb {
    background-color: #5846a6;
    border-radius: 0.438rem;
    background-clip: padding-box;
  }
  * ::-webkit-scrollbar-track {
    background: transparent;
  }
}
*:after,
*:before {
  box-sizing: inherit;
}
html {
  overflow: hidden scroll;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
}
@media (width < 1680px) and (width >= 1024px) {
  html {
    font-size: 0.96vw;
  }
}
html:only-child {
  display: flex !important;
}
@media (width >= 1024px) {
  html:has(.header-nav.active),
  html:has(.market-fiter.active) {
    overflow: hidden scroll !important;
  }
}
body {
  font-family: 'HostGrotesk', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #21242b;
  min-width: var(--app-min-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  background-color: #b1b1c3;
}
body:has(.header) {
  padding-top: calc(var(--header-offset) + var(--header-height));
}
.container {
  margin-left: auto;
  margin-right: auto;
  width: calc(var(--container-width) + 2 * var(--container-padding));
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  max-width: 100%;
}
@media (width < 1200px) {
  .hidden-desktop {
    display: none !important;
  }
}
@media (width < 1024px) {
  .hidden-tablet {
    display: none !important;
  }
}
@media (width < 768px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (width >= 768px) {
  .visible-mobile {
    display: none !important;
  }
}
@media (width >= 1024px) {
  .visible-tablet {
    display: none !important;
  }
}
@media (width >= 1200px) {
  .visible-desktop {
    display: none !important;
  }
}
.cover-img {
  display: flex;
  overflow: hidden;
  will-change: transform;
}
.cover-img picture,
.cover-img img,
.cover-img video,
.cover-img canvas {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
template {
  display: none;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
picture img {
  display: block;
}
ul,
ol {
  list-style: none;
}
b,
strong {
  font-weight: 700;
}
button {
  all: unset;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  appearance: button;
}
a:focus-visible,
button:focus-visible {
  outline: solid 0.125rem rgba(88, 70, 166, 0.5);
  outline-offset: 0.125rem;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent;
}
svg {
  all: unset;
  flex: none;
}
use {
  fill: currentColor;
}
.swiper-slide {
  height: auto;
}
a {
  text-decoration: none;
  color: #5846a6;
}
.icon {
  --size: 1.5rem;
  width: var(--size);
  height: var(--size);
}
.icon-logo {
  height: auto;
  aspect-ratio: 48/22;
}
.btn {
  --height: 3.375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--height);
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  max-width: 100%;
  color: #fff;
  background-color: #5846a6;
  flex: none;
  font-size: 1.125rem;
  font-weight: 700;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  text-align: center;
  border-radius: var(--height);
  transition:
    background-color 0.4s,
    opacity 0.4s,
    color 0.4s,
    border-color 0.4s;
}
.btn:hover {
  background-color: #7e71b8;
}
.btn[disabled],
.btn.disabled {
  pointer-events: none;
  color: #b1b1c3;
  background-color: #a0a0b3;
}
.btn--border {
  background-color: #c9c9d6;
  border: solid 1px #5846a6;
  color: #5846a6;
}
.btn--border:hover {
  color: #fff;
  background-color: #5846a6;
}
.swiper-horizontal {
  top: unset;
  margin-top: 0;
}
.form-group {
  display: grid;
  gap: 1.25rem;
}
@media (width >= 768px) {
  .form-group {
    grid-template-columns: 1fr 1fr;
  }
}
.form-block {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-block-title {
  font-size: 1.25rem;
  margin-right: auto;
  line-height: 1.35;
  font-style: italic;
  letter-spacing: -0.05em;
}
.form-block-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-block-link {
  font-size: 0.75rem;
  transition: color 0.4s;
  line-height: 1.33;
}
.form-block-link:hover {
  color: #5846a6;
}
.form-block-alert {
  padding: 0 1.25rem;
  font-size: 0.75rem;
  line-height: 1.33;
  display: none;
}
.form-block-alert.active {
  display: block;
}
.input-block {
  display: flex;
  flex-direction: column;
  position: relative;
}
.input-block:has(> .icon:first-child) .input {
  padding-left: 3rem;
}
.input-block:has(> .icon:last-child) .input,
.input-block:has(> .password-toggle-btn) .input {
  padding-right: 3rem;
}
.input-block > .icon {
  --size: 1.25rem;
  position: absolute;
  left: 1rem;
  top: calc(50% - 0.625rem);
}
.input {
  --color: var(--input-color, #21242b);
  --color-placeholder: var(--input-color-placeholder, #8a8a9a);
  --height: var(--input-height, 3.375rem);
  --bg: var(--input-bg, #c9c9d6);
  font-variation-settings: inherit;
  height: var(--height);
  border: solid 1px #c9c9d6;
  display: block;
  width: 100%;
  padding: 0 var(--input-padding, 1.25rem);
  appearance: none;
  box-shadow: none;
  caret-color: var(--color);
  transition:
    border-color 0.4s,
    background-color 0.4s,
    box-shadow 0.4s;
  color: var(--color);
  outline: none;
  line-height: 1.4;
  text-overflow: ellipsis;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: 'HostGrotesk', sans-serif;
  background-color: var(--bg);
  border-radius: 0.625rem;
}
.input::-webkit-input-placeholder {
  color: var(--color-placeholder);
}
.input:-moz-placeholder {
  color: var(--color-placeholder);
}
.input::-moz-placeholder {
  color: var(--color-placeholder);
}
.input:-ms-input-placeholder {
  color: var(--color-placeholder);
}
.input:focus:not(.select-toggle):not([readonly]) {
  border-color: #7e71b8;
}
.input:-webkit-autofill {
  -webkit-text-fill-color: var(--color);
  background-color: transparent;
  -webkit-transition:
    background-color 5000000s 0s,
    border-color 0.4s;
  transition:
    background-color 5000000s 0s,
    border-color 0.4s;
}
.input:-webkit-autofill::first-line {
  font-family: 'HostGrotesk', sans-serif;
  background: none;
}
.input::-webkit-outer-spin-button,
.input::-webkit-inner-spin-button {
  appearance: none;
  display: none;
}
.input::-webkit-search-decoration,
.input::-webkit-search-cancel-button,
.input::-webkit-search-results-button,
.input::-webkit-search-results-decoration {
  appearance: none;
  display: none;
}
.input[type='number'] {
  -moz-appearance: textfield;
}
.input::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
}
.input[type='date']:invalid {
  color: var(--color-placeholder);
}
.input[type='date']:valid {
  color: var(--color);
}
.textarea {
  resize: none;
  height: 6.625rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.tab-block:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  will-change: transform;
}
.tab-block.active {
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
[data-aos='fade-up'] {
  opacity: 0;
  transform: translateY(2.5rem);
  transition-property: transform, opacity;
  transition-duration: 0.4s;
  transition-delay: 0.2s;
}
[data-aos='fade-up'].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.select {
  position: relative;
  display: flex;
  flex-direction: column;
}
.select.active {
  z-index: 66;
}
.select.active .select-options {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.select-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.select-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.select-title {
  flex: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select-title:has(span) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.select-title > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select-title[data-placeholder]:empty:before {
  content: attr(data-placeholder);
  color: #8a8a9a;
  overflow: hidden;
  text-overflow: ellipsis;
}
.select-arrow {
  border-top: solid 0.375rem #5846a6;
  border-left: solid 0.313rem transparent;
  border-right: solid 0.313rem transparent;
}
.select-options {
  background-color: #5846a6;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 1.5rem;
  padding: 1.25rem 0;
}
.select-options-list {
  overflow: hidden auto;
  max-height: 20rem;
  display: flex;
  flex-direction: column;
}
.select-option {
  display: flex;
  align-self: stretch;
  padding: 0.5rem 1.75rem;
  align-items: center;
  transition: background-color 0.4s;
  gap: 0.5rem;
  font-weight: 700;
  color: #fff;
  font-size: 1.125rem;
  flex: none;
}
.select-option .icon {
  opacity: 0;
  transition: opacity 0.4s;
  margin-left: auto;
  --size: 1rem;
}
.select-option:hover {
  background-color: #7e71b8;
}
.select-option.active {
  pointer-events: none;
}
.select-option.active .icon {
  opacity: 1;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 666666;
}
.modal:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal.open,
.modal.close {
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.modal.open .modal-body,
.modal.close .modal-body {
  transition: transform 0.4s;
}
.modal.active .modal-body {
  transform: scale(1);
}
.modal-wrapp {
  width: 100%;
  height: 100%;
  display: flex;
  background: rgba(33, 36, 43, 0.8);
  overflow: hidden;
  overflow-y: scroll;
  outline: none;
  padding: 1.5rem;
}
@media (width < 480px) {
  .modal-wrapp {
    padding: 1rem;
  }
}
.modal-body {
  width: 31.25rem;
  max-width: 100%;
  margin: auto;
  transform: scale(0.8);
  position: relative;
  padding: 2rem;
  border-radius: 2.5rem;
  background-color: #b1b1c3;
}
@media (width < 1024px) {
  .modal-body {
    border-radius: 1.5rem;
    padding: 1.5rem;
  }
}
.modal-close-btn {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  display: flex;
  margin: -0.5rem;
  padding: 0.5rem;
  color: #21242b;
  transition: color 0.4s;
  z-index: 9;
}
@media (width < 1024px) {
  .modal-close-btn {
    right: 1rem;
    top: 1rem;
  }
}
.modal-close-btn:hover {
  color: #5846a6;
}
.modal-close-btn svg {
  --size: 1.25rem;
}
.modal-head {
  padding-right: 1.5rem;
  margin-bottom: 1.5rem;
}
.modal-title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
}
.marquee {
  overflow: hidden;
  display: flex;
  --gap: 1rem;
  max-width: 120rem;
  margin: 0 auto;
}
@media (width >= 1024px) {
  .marquee-vertical {
    flex-direction: column;
  }
  .marquee-vertical .marquee-track {
    flex-direction: column;
    animation-name: marquee-vertical;
    padding: 0;
    padding-bottom: var(--gap);
  }
  .marquee-vertical .marquee-group {
    flex-direction: column;
  }
  .marquee-vertical.marquee-reverse .marquee-track {
    animation-name: marquee-vertical-reverse;
    padding: 0;
    padding-top: var(--gap);
  }
}
.marquee-reverse {
  justify-content: flex-end;
}
.marquee-reverse .marquee-track {
  animation-name: marquee-reverse;
  padding-right: 0;
  padding-left: var(--gap);
}
.marquee-track {
  animation: marquee var(--speed, 16s) linear infinite;
  display: flex;
  gap: var(--gap);
  flex: none;
  padding-right: var(--gap);
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-group {
  display: flex;
  gap: var(--gap);
  flex: none;
}
.marquee-slide {
  flex: none;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-vertical {
  to {
    transform: translateY(-50%);
  }
}
@keyframes marquee-reverse {
  to {
    transform: translateX(50%);
  }
}
@keyframes marquee-vertical-reverse {
  to {
    transform: translateY(50%);
  }
}
.checkbox {
  --icon: 1.75rem;
  --radius: 0.625rem;
  display: inline-flex;
  align-items: flex-start;
  width: fit-content;
  gap: 0.625rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  text-align: left;
}
.checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  opacity: 0;
  border-radius: var(--radius);
  width: var(--icon);
  height: var(--icon);
}
.checkbox > i {
  flex: none;
  border-radius: var(--radius);
  width: var(--icon);
  height: var(--icon);
  display: grid;
  place-items: center;
  color: #5846a6;
  transition:
    background-color 0.4s,
    border-color 0.4s;
  background-color: #c9c9d6;
}
.checkbox > i svg {
  transition:
    opacity 0.4s,
    transform 0.4s;
  opacity: 0;
  transform: scale(0);
  --size: 1.25rem;
}
.checkbox > span {
  align-self: center;
}
.checkbox:has(input:checked) > i svg {
  opacity: 1;
  transform: scale(1);
}
.checkbox:has(:focus-visible) > i {
  outline: solid 0.125rem rgba(88, 70, 166, 0.5);
  outline-offset: 0.125rem;
}
.checkbox a {
  transition: color 0.4s;
  font-weight: 800;
}
.checkbox a:hover {
  color: #7e71b8;
}
.radio {
  --icon: 1.75rem;
  --radius: 50%;
  display: inline-flex;
  align-items: flex-start;
  width: fit-content;
  gap: 0.75rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
  text-align: left;
}
.radio input {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  opacity: 0;
  border-radius: var(--radius);
  width: var(--icon);
  height: var(--icon);
}
.radio > i {
  flex: none;
  border: solid 1px #3f4a62;
  border-radius: var(--radius);
  width: var(--icon);
  height: var(--icon);
  display: grid;
  place-items: center;
  color: #fff;
  transition:
    background-color 0.4s,
    border-color 0.4s;
  background-color: #bdbdcb;
}
.radio > i:before {
  content: '';
  transition:
    opacity 0.4s,
    transform 0.4s;
  opacity: 0;
  transform: scale(0);
  width: 1rem;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background-color: currentColor;
}
.radio > span {
  align-self: center;
}
.radio:has(input:checked) > i:before {
  opacity: 1;
  transform: scale(1);
}
.radio:has(:focus-visible) > i {
  outline: solid 0.125rem rgba(88, 70, 166, 0.5);
  outline-offset: 0.125rem;
}
.range {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}
.range .input {
  --height: 2.75rem;
  font-size: 0.875rem;
  padding: 0 0.75rem;
  background-color: #33363d;
  --color: #fff;
  border-color: #33363d;
}
.range-slider {
  flex: auto;
  min-width: 0;
  height: 0.625rem;
  background-color: #33363d;
  border-radius: 0.5rem;
}
.range-slider .range-slider__thumb {
  width: 1.375rem;
  height: 1.375rem;
  background-color: #21242b;
  border: solid 0.313rem #7e71b8;
  box-shadow: 0px 0px 0.563rem 0px #00000040;
}
.range-slider .range-slider__range {
  border-radius: inherit;
  background-color: #7e71b8;
  pointer-events: none;
}
.range-slider-disabled-min [data-lower] {
  width: 0;
  pointer-events: none;
}
.range-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.slider-dots {
  display: flex;
  margin-top: 1.5rem;
  justify-content: center;
  gap: 0.625rem;
  width: auto !important;
}
.slider-dots span {
  width: 0.625rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #33363d;
  margin: 0;
  transition: background-color 0.4s;
  opacity: 1;
  transform: scale(1);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.slider-dots span:hover {
  background-color: #4a4f59;
}
.slider-dots span.swiper-pagination-bullet-active {
  background-color: var(--color, #5846a6);
}
.spoiler {
  --padding-y: 1.25rem;
  --padding-x: 1.5rem;
  display: flex;
  flex-direction: column;
}
.spoiler.active .spoiler-main {
  grid-template-rows: 1fr;
}
.spoiler.active .spoiler-toggle:after {
  transform: rotate(-180deg);
}
.spoiler-toggle {
  padding: var(--padding-y) var(--padding-x);
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  transition: color 0.4s;
  font-weight: 800;
  text-transform: uppercase;
}
.spoiler-toggle:hover {
  color: #7e71b8;
}
.spoiler-toggle:after {
  content: '';
  flex: none;
  margin-left: auto;
  border-top: solid 0.375rem #7e71b8;
  border-left: solid 0.313rem transparent;
  border-right: solid 0.313rem transparent;
  transition: transform 0.4s;
}
.spoiler-main {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s;
}
.spoiler-body {
  overflow: hidden;
}
.spoiler-content {
  padding: 0 var(--padding-x) var(--padding-y);
}
.quantity {
  flex: none;
  width: 8.25rem;
  position: relative;
  z-index: 6;
  display: flex;
}
.quantity-btn {
  width: 2.75rem;
  --height: 2.75rem;
  border-radius: 50%;
  padding: 0;
}
.quantity-input {
  width: 2.75rem;
  padding: 0 0.25rem;
  height: 2.75rem;
  border: 0;
  border-radius: 0;
  background: none;
  text-align: center;
  --input-color: #fff;
}
.glightbox-mobile .goverlay,
.goverlay {
  background: rgba(33, 36, 43, 0.8);
  height: auto;
  width: auto;
  inset: 0;
}
.glightbox-container {
  height: auto;
  bottom: 0;
}
.gslide-description[style='max-width: 1440;'] {
  max-width: 100rem !important;
}
.gslide-title:last-child {
  margin-bottom: 0;
}
.glightbox-clean .gslide-title {
  font-family: 'HostGrotesk', sans-serif;
}
.glightbox-clean .gslide-media {
  box-shadow: none;
}
.accordion-item {
  display: flex;
  flex-direction: column;
  background-color: #21242b;
  border-radius: 2.5rem;
  color: #fff;
  padding: 1.5rem 2.25rem;
}
@media (width < 1024px) {
  .accordion-item {
    padding: 1rem 1.5rem;
    border-radius: 1.5rem;
  }
}
.accordion-item.active .accordion-item-main {
  grid-template-rows: 1fr;
}
.accordion-item.active .accordion-item-toggle > i svg:first-child {
  opacity: 0;
  transform: scale(0);
}
.accordion-item.active .accordion-item-toggle > i svg:last-child {
  opacity: 1;
  transform: scale(1);
}
.accordion-item-toggle {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 800;
}
.accordion-item-toggle:hover > i {
  background-color: #7e71b8;
}
.accordion-item-toggle > i {
  width: 2.75rem;
  aspect-ratio: 1;
  flex: none;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background-color: #5846a6;
  color: #fff;
  margin: -0.375rem -1.125rem -0.375rem auto;
  transition: background-color 0.4s;
}
@media (width < 1024px) {
  .accordion-item-toggle > i {
    margin: -0.25rem -0.75rem -0.25rem auto;
  }
}
.accordion-item-toggle > i svg {
  transition:
    transform 0.4s,
    opacity 0.4s;
}
.accordion-item-toggle > i svg:last-child {
  position: absolute;
  left: calc(50% - 0.5 * var(--size));
  top: calc(50% - 0.5 * var(--size));
  opacity: 0;
  transform: scale(0);
}
.accordion-item-main {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s;
}
.accordion-body {
  overflow: hidden;
}
.accordion-item-content {
  padding-top: 1.5rem;
  font-size: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-weight: 600;
}
.content-text {
  --content-gap: 2rem;
  display: flow-root;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 600;
}
@media (width < 1024px) {
  .content-text {
    font-size: 1rem;
    --content-gap: 1.5rem;
  }
}
.content-text h1,
.content-text h2,
.content-text h3,
.content-text h4,
.content-text h5,
.content-text h6 {
  margin: calc(2 * var(--content-gap)) 0 var(--content-gap);
  font-weight: 800;
}
.content-text h1:first-child,
.content-text h2:first-child,
.content-text h3:first-child,
.content-text h4:first-child,
.content-text h5:first-child,
.content-text h6:first-child {
  margin-top: 0;
}
.content-text h1:last-child,
.content-text h2:last-child,
.content-text h3:last-child,
.content-text h4:last-child,
.content-text h5:last-child,
.content-text h6:last-child {
  margin-bottom: 0;
}
.content-text h1 {
  font-size: 2.5rem;
  line-height: 1.25;
}
@media (width < 768px) {
  .content-text h1 {
    font-size: 2.25rem;
  }
}
.content-text h2 {
  font-size: 2rem;
  line-height: 1.2;
}
.content-text h3 {
  font-size: 1.5rem;
  line-height: 1.25;
}
.content-text h4,
.content-text h5,
.content-text h6 {
  font-size: inherit;
}
.content-text b,
.content-text strong {
  font-weight: 800;
}
.content-text p {
  margin-bottom: var(--content-gap);
}
.content-text p:last-child {
  margin-bottom: 0;
}
.content-text a:not(.btn) {
  transition: color 0.4s;
}
.content-text a:not(.btn):hover {
  color: #7e71b8;
}
.content-text ol {
  list-style: none;
  counter-reset: counter;
  margin-bottom: var(--content-gap);
  display: flow-root;
}
.content-text ol:last-child {
  margin-bottom: 0;
}
.content-text ol li {
  padding-left: 2rem;
  position: relative;
}
.content-text ol li:before {
  content: counter(counter) '.';
  position: absolute;
  flex: none;
  left: 0;
  top: 0;
  counter-increment: counter;
  width: 2rem;
  text-align: center;
}
.content-text ul {
  list-style: none;
  margin-bottom: var(--content-gap);
  display: flow-root;
}
.content-text ul:last-child {
  margin-bottom: 0;
}
.content-text ul li {
  display: flex;
  padding-left: 2rem;
  position: relative;
}
.content-text ul li:before {
  content: '';
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: currentColor;
  left: 0.75rem;
  top: calc(0.5lh - 0.125rem);
}
.content-text figure {
  margin: calc(1.5 * var(--content-gap)) 0;
}
.content-text figure:first-child {
  margin-top: 0;
}
.content-text figure:last-child {
  margin-bottom: 0;
}
.content-text img {
  display: block;
  min-height: 15rem;
  object-fit: cover;
}
.header {
  position: absolute;
  inset: var(--header-offset) 0 auto;
  z-index: 666;
  --bth-height: calc(var(--header-height) - 0.375rem);
  font-size: 1.125rem;
  font-weight: 700;
  transition:
    opacity 0.4s,
    transform 0.4s;
}
@media (width < 1024px) {
  .header {
    top: 0;
    position: fixed;
    font-size: 1rem;
  }
  .header .container {
    padding: 0;
  }
}
.header.hide:not(:hover) {
  transform: translateY(-100%);
  opacity: 0;
}
.header.fixed {
  position: fixed;
  top: 0;
}
.header.fixed:before {
  opacity: 1;
}
.header-body {
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0.188rem;
  border-radius: 2.5rem;
  background-color: #21242b;
  color: #fff;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .header-body {
    border-radius: 0;
    gap: 1rem;
    padding: 0.188rem var(--container-padding);
  }
}
.header-body .logo {
  margin-right: 2.25rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: inherit;
}
@media (width < 1024px) {
  .logo {
    gap: 0.5rem;
  }
}
.logo img {
  max-width: 3.375rem;
  max-height: 3.375rem;
  object-fit: contain;
  flex: none;
}
.logo-title {
  font-size: 1.125rem;
  font-weight: 500;
}
@media (width < 1024px) {
  .logo-title {
    font-size: 1rem;
  }
}
.logo-title span {
  font-weight: 800;
}
@media (width < 1024px) {
  .header-nav {
    background-color: rgba(33, 36, 43, 0.8);
    top: calc(var(--header-height) - 1px);
  }
  .header-nav .modal-wrapp {
    padding: 0;
    background: none;
  }
  .header-nav .modal-body {
    width: 20rem;
    margin: 0 0 auto auto;
    transform: translateX(100%);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #21242b;
    min-height: 100%;
    padding: 1.5rem;
  }
  .header-nav.active .modal-body {
    transform: translateX(0);
  }
}
@media (width >= 1024px) {
  .header-nav {
    all: unset;
    display: contents;
  }
  .header-nav:not(.active) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header-nav .modal-wrapp {
    all: unset;
    display: contents;
  }
  .header-nav .modal-body {
    all: unset;
    display: contents;
  }
}
.header-link {
  height: var(--bth-height);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  margin: 0 -0.75rem;
  padding: 0 0.75rem;
  transition: color 0.4s;
  border-radius: var(--bth-height);
}
@media (width < 1024px) {
  .header-link {
    height: auto;
    padding: 0.75rem 1.5rem;
    margin: 0 -1.5rem;
  }
}
.header-link:hover {
  color: #7e71b8;
}
.header-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .header-menu {
    flex-direction: column;
    gap: 0.75rem;
    align-items: unset;
  }
}
.header-menu a:not(.btn) {
  height: var(--bth-height);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  margin: 0 -0.75rem;
  padding: 0 0.75rem;
  transition: color 0.4s;
  border-radius: var(--bth-height);
}
@media (width < 1024px) {
  .header-menu a:not(.btn) {
    height: auto;
    padding: 0.75rem 1.5rem;
    margin: 0 -1.5rem;
  }
}
.header-menu a:not(.btn):hover {
  color: #7e71b8;
}
@media (width < 1024px) {
  .header-menu a.btn {
    width: 100%;
  }
}
.header-btns {
  order: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .header-btns {
    margin-top: auto;
    flex-direction: column;
    align-items: unset;
    gap: 0.75rem;
    border-top: solid 1px #3f4a62;
    padding-top: 1rem;
  }
}
.header-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}
@media (width < 1024px) {
  .header-links {
    gap: 1rem;
    padding-right: 1rem;
  }
}
.header-links:after {
  content: '';
  position: absolute;
  right: 0;
  top: calc(50% - 1.125rem);
  height: 2.25rem;
  border-right: solid 1px #3f4a62;
}
.header-currency .select-toggle {
  gap: 0.5rem;
}
.header-currency .select-options {
  left: auto;
  right: 0;
  top: calc(100% + 0.75rem);
}
.header-cart {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: inherit;
}
.header-cart:hover .header-cart-icon {
  background-color: #7e71b8;
}
.header-cart-icon {
  width: 2.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #5846a6;
  display: grid;
  place-items: center;
  transition: background-color 0.4s;
}
.header-cart-count:empty:before {
  content: '0';
  color: #3f4a62;
}
.header-nav-toggle {
  order: 2;
  padding: 0.5rem;
  margin: -0.5rem;
  display: flex;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
}
@media (width >= 1024px) {
  .header-nav-toggle {
    display: none;
  }
}
.header-nav-toggle svg {
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.header-nav-toggle svg:last-child {
  position: absolute;
  left: calc(50% - 0.5 * var(--size));
  top: calc(50% - 0.5 * var(--size));
  opacity: 0;
  transform: scale(0);
}
.header-nav-toggle.active svg:first-child {
  opacity: 0;
  transform: scale(0);
}
.header-nav-toggle.active svg:last-child {
  opacity: 1;
  transform: scale(1);
}
.header-credits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  white-space: nowrap;
  margin-right: 1rem;
}
@media (width < 1024px) {
  .header-credits {
    padding: 0.5rem 0;
    margin: 0;
  }
}
.header-credits img {
  flex: none;
  width: 1.5rem;
}
.header-cabinet .select-toggle {
  gap: 0.875rem;
  justify-content: center;
}
.header-cabinet .select-toggle:hover .header-cabinet-icon {
  background-color: #7e71b8;
}
.header-cabinet .select-options {
  left: auto;
  right: 0;
  top: calc(100% + 0.75rem);
  width: 12.5rem;
}
@media (width < 1024px) {
  .header-cabinet .select-options {
    top: auto;
    bottom: calc(100% + 0.75rem);
  }
}
.header-cabinet-icon {
  width: 4.75rem;
  border-radius: var(--bth-height);
  height: var(--bth-height);
  flex: none;
  display: grid;
  place-items: center;
  background-color: #5846a6;
  transition: background-color 0.4s;
}
.main {
  padding: 2.5rem 0 3.75rem;
  flex: auto;
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) {
  .main {
    padding: 1.5rem 0 2.5rem;
  }
}
.section {
  --padding: 1.875rem;
  padding: var(--padding) 0;
}
@media (width < 1024px) {
  .section {
    --padding: 1.5rem;
  }
}
.section:first-child {
  padding-top: 0;
}
.section:last-child {
  padding-bottom: 0;
}
.home-hero {
  --r: 2.5rem;
  --ro: 2.5rem;
  --w: 33.75rem;
  --h: 14.75rem;
}
@media (width < 1024px) {
  .home-hero {
    --r: 1.5rem;
    --ro: 1.5rem;
    --w: 20rem;
    --h: 8.75rem;
  }
}
.home-hero .container {
  position: relative;
}
.home-hero-slider {
  overflow: visible;
}
.home-hero-slider.swiper-initialized .home-hero-slide:nth-child(n + 2) {
  visibility: visible;
}
@media (width < 1024px) {
  .home-hero-slider {
    clip-path: var(--shape);
    border-radius: var(--r);
    --shape: shape(
      from 0 var(--r),
      curve to var(--r) 0 with 0 0,
      line to calc(100% - var(--r)) 0,
      curve to 100% var(--r) with 100% 0,
      line to 100% calc(100% - var(--r)),
      curve to calc(100% - var(--r)) 100% with 100% 100%,
      line to calc(var(--w) + var(--ro)) 100%,
      curve to var(--w) calc(100% - var(--ro)) with var(--w) 100%,
      line to var(--w) calc(100% - var(--h) + var(--ro)),
      curve to calc(var(--w) - var(--ro)) calc(100% - var(--h)) with var(--w) calc(100% - var(--h)),
      line to var(--r) calc(100% - var(--h)),
      curve to 0 calc(100% - var(--h) - var(--r)) with 0 calc(100% - var(--h)),
      close
    );
  }
}
.home-hero-slide {
  min-height: 35.313rem;
  position: relative;
  padding: 2.625rem;
  color: #fff;
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  transition-property: opacity;
}
.home-hero-slide:nth-child(n + 2) {
  visibility: hidden;
}
@media (width < 1024px) {
  .home-hero-slide {
    gap: 2rem;
    padding: 2rem;
    min-height: 33.75rem;
  }
}
@media (width < 768px) {
  .home-hero-slide {
    flex-direction: column;
    padding: 1.5rem 1.5rem calc(var(--h) + 1.5rem);
    gap: 1.5rem;
  }
}
.home-hero-slide:hover .home-hero-slide-cta-title > i {
  transform: rotate(45deg);
}
.home-hero-slide:hover .home-hero-slide-title svg {
  transform: rotate(45deg);
}
.home-hero-slide.swiper-slide-active {
  z-index: 6;
}
.video-bg {
  position: absolute;
  inset: 0;
  background-color: #21242b;
}
.video-bg:not(.shape) {
  border-radius: inherit;
}
.home-hero-slide-body {
  position: relative;
  padding-bottom: var(--h);
  max-width: 39.875rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (width < 1024px) {
  .home-hero-slide-body {
    gap: 1.5rem;
  }
}
@media (width < 768px) {
  .home-hero-slide-body {
    padding: 0;
  }
}
.home-hero-slide-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--color);
  font-size: 1.125rem;
  font-weight: 800;
}
@media (width < 768px) {
  .home-hero-slide-label {
    font-size: 1rem;
  }
}
.home-hero-slide-label i {
  display: flex;
  gap: 0.5rem;
}
@media (width < 768px) {
  .home-hero-slide-label i {
    gap: 0.25rem;
  }
}
.home-hero-slide-title {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  font-size: 4.375rem;
  line-height: 0.94;
  font-weight: 800;
}
@media (width < 1024px) {
  .home-hero-slide-title {
    font-size: 3.125rem;
    line-height: 1;
  }
}
@media (width < 768px) {
  .home-hero-slide-title {
    font-size: 2.25rem;
    gap: 0.5rem;
    line-height: 1.2;
  }
}
.home-hero-slide-title svg {
  color: var(--color);
  margin-bottom: 0.75rem;
  transition: transform 0.4s;
}
@media (width < 1024px) {
  .home-hero-slide-title svg {
    margin-bottom: 0.5rem;
  }
}
@media (width < 768px) {
  .home-hero-slide-title svg {
    margin-bottom: 0.375rem;
  }
}
.home-hero-slide-img {
  position: absolute;
  inset: auto 7.5rem 0 var(--w);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}
.home-hero-slide-img img {
  max-width: unset;
  max-height: 37.5rem;
  object-fit: contain;
  object-position: center bottom;
}
@media (width < 1024px) {
  .home-hero-slide-img img {
    max-height: 30rem;
  }
}
.home-hero-slide-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media (width < 768px) {
  .home-hero-slide-cta {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
  }
}
.home-hero-slide-logo {
  display: flex;
}
@media (width < 768px) {
  .home-hero-slide-logo {
    width: 7.5rem;
    flex: none;
  }
}
.home-hero-slide-logo img {
  max-height: 2rem;
  object-fit: contain;
}
.home-hero-slide-cta-title {
  width: 5rem;
  display: flex;
  flex-direction: column;
  height: 24rem;
  flex: none;
  border-radius: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.313rem;
  backdrop-filter: blur(1.25rem);
}
@media (width < 1024px) {
  .home-hero-slide-cta-title {
    width: 4rem;
    border-radius: 2rem;
    height: 22.5rem;
    gap: 0.75rem;
  }
}
@media (width < 768px) {
  .home-hero-slide-cta-title {
    height: auto;
    flex-direction: row;
    align-items: center;
    width: auto;
    flex: unset;
  }
}
.home-hero-slide-cta-title > i {
  flex: none;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: var(--color);
  color: #21242b;
  transition: transform 0.4s;
}
@media (width < 768px) {
  .home-hero-slide-cta-title > i {
    width: 2rem;
  }
  .home-hero-slide-cta-title > i svg {
    --size: 1rem;
  }
}
.home-hero-slide-cta-title > span {
  font-size: 0.813rem;
  font-weight: 800;
  margin: auto;
  --gradient-start: var(--color);
  --gradient-end: #fff;
  background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  color: transparent;
  padding: 0.5rem 0 0.5rem 0.5rem;
}
@media (width >= 768px) {
  .home-hero-slide-cta-title > span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    padding: 0.75rem;
  }
}
.home-hero-nav {
  position: absolute;
  left: var(--container-padding);
  bottom: 0;
  width: var(--w);
  height: var(--h);
  z-index: 2;
  padding-top: 1.25rem;
  display: flex;
}
@media (width < 1024px) {
  .home-hero-nav {
    padding-top: 0.75rem;
  }
}
.home-hero-nav-slide {
  pointer-events: none;
  flex: 1;
  transition: flex 0.4s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.home-hero-nav-slide.active {
  flex: 0;
}
.home-hero-nav-slide-main {
  flex: auto;
  margin-right: 1.25rem;
  pointer-events: auto;
  border-radius: 2.5rem 1.563rem 2.5rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  will-change: transform;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
@media (width < 1024px) {
  .home-hero-nav-slide-main {
    margin-right: 0.75rem;
    border-radius: 1.5rem 0.75rem 1.5rem 1.5rem;
  }
}
.home-hero-nav-slide-img {
  position: absolute;
  inset: 1rem 0 0;
  border-radius: inherit;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.home-hero-nav-slide-img img {
  max-width: none;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.home-hero-nav-slide-body {
  flex: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem;
  border-radius: inherit;
  align-self: flex-end;
  min-width: 12.5rem;
}
@media (width < 1024px) {
  .home-hero-nav-slide-body {
    min-width: 9.25rem;
  }
}
.home-hero-nav-slide-logo {
  display: flex;
  justify-content: flex-end;
}
.home-hero-nav-slide-logo img {
  max-height: 1.5rem;
  object-fit: contain;
}
.home-hero-nav-slide-arrow {
  width: 1.875rem;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: var(--color);
  color: #21242b;
}
.home-hero-nav-slide-arrow svg {
  --size: 0.75rem;
}
.handpicked {
  --r: 2.5rem;
  --ro: 2.5rem;
  --w: 66rem;
  --h: 5rem;
}
@media (width < 1024px) {
  .handpicked {
    --r: 1.5rem;
    --ro: 1.5rem;
    --w: 11.25rem;
    --h: 3.75rem;
  }
}
@media (width < 768px) {
  .handpicked {
    --w: 4rem;
  }
}
.handpicked .container {
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) {
  .handpicked .container {
    gap: 1.5rem;
  }
}
.handpicked-nav {
  position: relative;
  z-index: 2;
  gap: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 1024px) and (width >= 768px) {
  .handpicked-nav {
    margin-right: var(--w);
  }
}
@media (width >= 1024px) {
  .handpicked-nav {
    gap: 5rem;
    padding: 0 2rem;
    margin-bottom: calc(-1 * var(--h));
    height: var(--h);
    width: var(--w);
    align-self: flex-end;
  }
}
.handpicked-nav-btn {
  display: flex;
  filter: invert(0.5);
  transition: filter 0.4s;
}
.handpicked-nav-btn:hover,
.handpicked-nav-btn.active {
  filter: invert(0);
}
.handpicked-nav-btn img {
  height: 2rem;
  object-fit: contain;
}
.handpicked-body {
  position: relative;
  padding: 0 1.5rem 1.25rem;
}
@media (width < 1024px) {
  .handpicked-body {
    padding: 0 1.25rem 1.25rem;
  }
}
@media (width < 768px) {
  .handpicked-body {
    padding: 0 1rem 1rem;
  }
}
@media (width < 480px) {
  .handpicked-body {
    padding: 0 0.5rem 0.5rem;
  }
}
.handpicked-title {
  width: calc(100% - var(--w));
  min-height: var(--h);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
@media (width < 1024px) {
  .handpicked-title {
    font-size: 2rem;
  }
}
@media (width < 480px) {
  .handpicked-title {
    font-size: 1.75rem;
  }
}
.handpicked-tabs {
  padding-top: 1.5rem;
}
@media (width < 1024px) {
  .handpicked-tabs {
    padding-top: 1.25rem;
  }
}
@media (width < 768px) {
  .handpicked-tabs {
    padding-top: 1rem;
  }
}
@media (width < 480px) {
  .handpicked-tabs {
    padding-top: 0.5rem;
  }
}
.handpicked-tab {
  position: relative;
  z-index: 1;
}
.handpicked-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
@media (width < 1024px) {
  .handpicked-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
  }
}
@media (width < 768px) {
  .handpicked-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 480px) {
  .handpicked-list {
    gap: 0.25rem;
  }
}
.product-item {
  display: flex;
  flex-direction: column;
  background-color: #2c2f35;
  border-radius: 1.25rem;
  overflow: hidden;
  will-change: transform;
  color: #fff;
  position: relative;
  min-height: 19.5rem;
}
.product-item:before {
  content: '';
  position: absolute;
  width: calc(100% + 20rem);
  left: 50%;
  top: 100%;
  aspect-ratio: 562/330;
  border-radius: 50%;
  background: #444850;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  transition: transform 0.4s;
}
.product-item:hover:before {
  transform: translate(-50%, -50%) scale(1.2);
}
.product-item:has(.cover-img):before {
  display: none;
}
.product-item:has(.cover-img):hover .product-item-img img {
  transform: scale(1.08);
}
.product-item-head {
  padding: 0 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}
.product-item-view-in-steam {
  margin: 0.438rem auto 0 0;
  flex: none;
  display: flex;
  color: #717274;
  transition: color 0.4s;
  position: relative;
  z-index: 6;
}
.product-item-view-in-steam:hover {
  color: var(--color);
}
.product-item-view-in-steam svg {
  --size: 1.625rem;
}
.product-item-category {
  padding: 0.25rem 0.625rem;
  height: 1.625rem;
  background-color: var(--color);
  border-radius: 0 0 0.5rem 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.product-item-img {
  padding: 0 1.5rem;
  height: 8.438rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-item-img img {
  max-height: 100%;
  object-fit: contain;
}
.product-item-img.cover-img {
  padding: 0;
  margin: -2.75rem 0 0.5rem;
  height: 11.188rem;
}
.product-item-img.cover-img img {
  object-fit: cover;
  transition: transform 0.4s;
}
.product-item-body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1.5rem 1.5rem;
}
.product-item-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  line-height: 1.24;
  position: relative;
  z-index: 1;
  min-height: 2lh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-item-price {
  display: flex;
  white-space: nowrap;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-top: -0.375rem;
  justify-content: center;
}
.product-item-cost {
  font-size: 0.875rem;
  font-weight: 600;
}
@media (width < 1024px) {
  .product-item-cost {
    font-size: 0.813rem;
  }
}
.product-item-ns {
  font-size: 0.688rem;
  color: #717274;
  font-weight: 600;
}
@media (width < 1024px) {
  .product-item-ns {
    font-size: 0.625rem;
  }
}
.product-item-ns:not(:first-child) {
  padding-left: 0.5rem;
  margin-left: 0.5rem;
  position: relative;
}
.product-item-ns:not(:first-child):before {
  content: '|';
  top: 50%;
  right: 100%;
  transform: translate(50%, -50%);
  font-size: 0.875rem;
  position: absolute;
}
.product-item-buy-btn {
  align-self: center;
  display: flex;
  margin: -0.5rem;
  padding: 0.5rem;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #7e71b8;
  transition: color 0.4s;
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
  z-index: 6;
}
.product-item-buy-btn:hover {
  color: var(--color);
}
.product-item-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.broadcast-body {
  position: relative;
  padding: 1.5rem;
  border-radius: 2.5rem;
  overflow: hidden;
  will-change: transform;
  background-color: #21242b;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .broadcast-body {
    border-radius: 1.5rem;
    padding: 1.25rem;
    gap: 1.25rem;
  }
}
@media (width < 768px) {
  .broadcast-body {
    padding: 1rem;
    gap: 1rem;
  }
}
@media (width < 480px) {
  .broadcast-body {
    padding: 1rem 0.5rem 0.5rem;
  }
}
.broadcast-bg {
  position: absolute;
  inset: 0;
}
.broadcast-bg:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #21242b, rgba(33, 36, 43, 0), #21242b);
}
.broadcast-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.broadcast-title {
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1.2;
}
.broadcast-live {
  color: #ff0000;
  padding: 0.25rem 0.375rem;
  border-radius: 0.313rem;
  border: solid 1px;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}
.broadcast-live:before {
  content: '';
  width: 0.375rem;
  flex: none;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
}
.broadcast-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
@media (width < 1024px) {
  .broadcast-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
@media (width < 768px) {
  .broadcast-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
@media (width < 480px) {
  .broadcast-list {
    gap: 0.25rem;
  }
}
.broadcast-item {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  will-change: transform;
  min-height: 7.5rem;
  color: #fff;
  background-color: #2c2f35;
}
.broadcast-item:hover .broadcast-item-body {
  opacity: 1;
}
.broadcast-item-img {
  position: absolute;
  inset: 0;
  padding: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.broadcast-item-img img {
  max-height: 100%;
  object-fit: contain;
}
.broadcast-item-img.cover-img {
  padding: 0;
}
.broadcast-item-img.cover-img img {
  object-fit: cover;
}
.broadcast-item-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  flex: auto;
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
  transition: opacity 0.4s;
  opacity: 0;
}
.best .container {
  display: grid;
  gap: 1.25rem;
}
@media (width >= 1024px) {
  .best .container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.best-item {
  position: relative;
  --w: 16.875rem;
  --h: 5rem;
  --r: 2.5rem;
  --ro: 2.5rem;
  --m: 1.5rem;
  padding-bottom: 1.5rem;
  min-width: 0;
}
@media (width < 1024px) {
  .best-item {
    --w: 5.875rem;
    --h: 4.375rem;
    --r: 1.5rem;
    --ro: 1.5rem;
    --m: 1.25rem;
  }
}
@media (width < 768px) {
  .best-item {
    --m: 1rem;
  }
}
@media (width < 480px) {
  .best-item {
    --m: 0.5rem;
  }
}
.best-item .slider-dots {
  margin-left: var(--m);
  margin-right: var(--m);
}
.best-item-bg {
  position: absolute;
  inset: 0;
  background-color: #21242b;
}
.best-item-bg-img {
  height: 25rem;
  position: absolute;
  inset: 0 0 auto;
}
.best-item-bg-img:before,
.best-item-bg-img:after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.best-item-bg-img:before {
  background-color: rgba(0, 0, 0, 0.3);
}
.best-item-bg-img:after {
  background-image: linear-gradient(to bottom, rgba(33, 36, 43, 0), #21242b);
}
.best-item-head {
  display: flex;
  align-items: center;
  height: var(--h);
  position: relative;
  z-index: 1;
  margin-bottom: 6.5rem;
}
.best-item-logo {
  width: calc(100% - var(--w));
  padding: 0 1.25rem;
  margin-right: 1.25rem;
  display: flex;
  justify-content: center;
}
.best-item-logo img {
  max-height: 2rem;
  object-fit: contain;
}
.best-item-arrow {
  flex: none;
  width: 3.375rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color);
  color: #21242b;
  display: grid;
  place-items: center;
  transition: transform 0.4s;
}
.best-item-arrow svg {
  --size: 1rem;
}
.best-item-arrow:hover {
  transform: rotate(45deg);
}
.best-item-slider {
  width: calc(100% - 2 * var(--m));
}
.best-item-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (width < 768px) {
  .best-item-slide {
    gap: 1rem;
  }
}
@media (width < 480px) {
  .best-item-slide {
    gap: 0.5rem;
  }
}
.advantages-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (width < 1024px) {
  .advantages-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
}
@media (width < 768px) {
  .advantages-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
.advantages-item {
  --w: 53%;
  --h: 2.5rem;
  --r: 2.5rem;
  --ro: 1.5rem;
  background-color: #21242b;
  min-height: 8.125rem;
  color: #fff;
  display: flex;
}
@media (width < 1024px) {
  .advantages-item {
    --r: 1.5rem;
  }
}
.advantages-item:nth-child(odd) {
  --shape: shape(
    from var(--r) 0,
    line to calc(100% - var(--r)) 0,
    curve to 100% var(--r) with 100% 0,
    line to 100% calc(100% - var(--h) - var(--r)),
    curve to calc(100% - var(--r)) calc(100% - var(--h)) with 100% calc(100% - var(--h)),
    line to calc(100% - var(--w) + var(--ro)) calc(100% - var(--h)),
    curve to calc(100% - var(--w)) calc(100% - var(--h) + var(--ro)) with calc(100% - var(--w)) calc(100% - var(--h)),
    line to calc(100% - var(--w)) calc(100% - var(--ro)),
    curve to calc(100% - var(--w) - var(--ro)) 100% with calc(100% - var(--w)) 100%,
    line to var(--r) 100%,
    curve to 0 calc(100% - var(--r)) with 0 100%,
    line to 0 var(--r),
    curve to var(--r) 0 with 0 0,
    close
  );
}
.advantages-item:nth-child(odd) .advantages-item-title {
  margin-bottom: var(--h);
}
.advantages-item:nth-child(even) {
  --shape: shape(
    from var(--r) 0,
    line to calc(100% - var(--w) - var(--ro)) 0,
    curve to calc(100% - var(--w)) var(--ro) with calc(100% - var(--w)) 0,
    line to calc(100% - var(--w)) calc(var(--h) - var(--ro)),
    curve to calc(100% - var(--w) + var(--ro)) var(--h) with calc(100% - var(--w)) var(--h),
    line to calc(100% - var(--r)) var(--h),
    curve to 100% calc(var(--h) + var(--r)) with 100% var(--h),
    line to 100% calc(100% - var(--r)),
    curve to calc(100% - var(--r)) 100% with 100% 100%,
    line to var(--r) 100%,
    curve to 0 calc(100% - var(--r)) with 0 100%,
    line to 0 var(--r),
    curve to var(--r) 0 with 0 0,
    close
  );
}
.advantages-item:nth-child(even) .advantages-item-title {
  margin-top: var(--h);
}
.advantages-item-icon {
  width: calc(100% - var(--w));
  flex: none;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages-item-icon img {
  width: 4.5rem;
}
.advantages-item-title {
  padding: 0.75rem 2rem 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.reviews {
  max-width: 120rem;
  margin: 0 auto;
  --ms: var(--mask-size, 7.5rem);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black var(--ms),
    black calc(100% - var(--ms)),
    transparent
  );
  mask-image: linear-gradient(to right, transparent, black var(--ms), black calc(100% - var(--ms)), transparent);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (width < 1024px) {
  .reviews {
    --mask-size: 2.5rem;
  }
}
.reviews-slider {
  --gap: 1.25rem;
}
.reviews-item {
  width: 29.125rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #bdbdcb;
  border-radius: 1.875rem;
  line-height: 1.2;
}
@media (width < 1024px) {
  .reviews-item {
    width: 20rem;
  }
}
.reviews-item-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.reviews-item-rating {
  font-weight: 800;
  text-transform: uppercase;
}
@media (width >= 1024px) {
  .reviews-item-rating {
    font-size: 1.125rem;
  }
}
.reviews-item-stars {
  display: flex;
  gap: 0.125rem;
  color: #5846a6;
}
.reviews-item-stars svg {
  --size: 1rem;
}
.reviews-item-text {
  font-size: 1.25rem;
  font-weight: 500;
}
@media (width < 1024px) {
  .reviews-item-text {
    font-size: 1.125rem;
  }
}
.reviews-item-name {
  margin: auto 0 0 auto;
  color: #717274;
  font-size: 1.063rem;
  font-weight: 600;
}
@media (width < 1024px) {
  .reviews-item-name {
    font-size: 0.938rem;
  }
}
.skins .container {
  display: grid;
  gap: 1.25rem;
}
@media (width >= 768px) {
  .skins .container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.skins-item {
  position: relative;
  min-height: 0;
  aspect-ratio: 520/472;
  display: flex;
  flex-direction: column;
  --w: 16.875rem;
  --h: 5rem;
  --r: 2.5rem;
  --ro: 2.5rem;
  --m: 1.875rem;
}
.skins-item:hover .skins-item-arrow {
  transform: rotate(45deg);
}
@media (width < 1024px) {
  .skins-item {
    --w: 5.875rem;
    --h: 4.375rem;
    --r: 1.5rem;
    --ro: 1.5rem;
    --m: 1.25rem;
  }
}
.skins-item-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.skins-item-img img {
  object-position: center bottom;
}
.skins-item-body {
  position: relative;
  z-index: 1;
  flex: auto;
  padding: var(--m);
  display: flex;
  flex-direction: column;
  color: #fff;
}
.skins-item-number {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  display: flex;
}
.skins-item-number:after {
  content: '+';
  color: var(--color);
}
.skins-item-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.skins-item-foot {
  display: flex;
  align-items: center;
  height: var(--h);
  position: relative;
  z-index: 1;
  margin-top: auto;
}
.skins-item-logo {
  width: calc(100% - var(--w));
  padding: 0 1.25rem;
  margin-right: 1.25rem;
  display: flex;
  justify-content: center;
}
.skins-item-logo img {
  max-height: 2rem;
  object-fit: contain;
}
.skins-item-arrow {
  flex: none;
  width: 3.375rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color);
  color: #21242b;
  display: grid;
  place-items: center;
  transition: transform 0.4s;
}
.skins-item-arrow svg {
  --size: 1rem;
}
.hub-link {
  --p: 4.5rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr min-content 1fr;
  gap: 5.375rem;
  padding: var(--p);
  border-radius: 2.5rem;
  overflow: hidden;
  will-change: transform;
  color: #fff;
  font-weight: 800;
}
@media (width < 1024px) {
  .hub-link {
    --p: 1.5rem;
    border-radius: 1.5rem;
    grid-template-columns: 1fr min-content;
    gap: 1.5rem;
  }
}
.hub-link:hover .hub-link-icon {
  transform: scale(1.2);
}
.hub-link-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
}
.hub-link-title {
  font-size: 3.125rem;
  line-height: 1.2;
}
@media (width < 768px) {
  .hub-link-title {
    font-size: 2.5rem;
  }
}
.hub-link-desc {
  line-height: 1.33;
}
@media (width >= 768px) {
  .hub-link-desc {
    font-size: 1.125rem;
  }
}
.hub-link-icon {
  width: 6.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(228.87deg, #7e71b8 -3.15%, #5846a6 92.35%);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  transition: transform 0.4s;
}
@media (width < 768px) {
  .hub-link-icon {
    width: 4.5rem;
  }
}
.hub-link-icon:before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: solid 0.25rem;
  border-radius: 50%;
}
@media (width < 768px) {
  .hub-link-icon:before {
    inset: 0.75rem;
    border-width: 0.125rem;
  }
}
.hub-link-icon svg {
  --size: 3rem;
}
@media (width < 768px) {
  .hub-link-icon svg {
    --size: 2rem;
  }
}
.hub-link-img {
  margin: auto 0 calc(-1 * var(--p));
  max-width: 35.25rem;
  display: flex;
  position: relative;
  z-index: 1;
}
@media (width < 1024px) {
  .hub-link-img {
    grid-column: span 2;
    margin-left: auto;
    margin-right: auto;
  }
}
.blog .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.blog-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}
.blog-list {
  display: grid;
  gap: 3.75rem 1.25rem;
  padding-bottom: 2.5rem;
}
@media (width >= 1024px) {
  .blog-list {
    grid-template-columns: 1fr 1fr;
  }
}
.blog-item {
  --r: 2.5rem;
  --w: 9.5rem;
  --h: 2.5rem;
  --ro: 1.5rem;
  display: flex;
  gap: 1.5rem;
  color: #fff;
  background-color: #21242b;
  border-radius: 2.5rem;
}
@media (width < 1024px) {
  .blog-item {
    --r: 1.5rem;
    border-radius: 1.5rem;
  }
}
@media (width < 768px) {
  .blog-item {
    --w: 5rem;
    gap: 1rem;
  }
}
.blog-item:hover .blog-item-img img {
  transform: scale(1.06);
}
.blog-item-img {
  flex: none;
  width: 18.625rem;
  margin-bottom: calc(-1 * var(--h));
}
@media (width < 768px) {
  .blog-item-img {
    width: 10rem;
  }
}
.blog-item-img img {
  transition: transform 0.4s;
}
.blog-item-body {
  padding: 1.5rem 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width < 768px) {
  .blog-item-body {
    padding: 1rem 1rem 1rem 0;
  }
}
.blog-item-date {
  margin-bottom: -0.375rem;
  font-size: 1.063rem;
  color: #717274;
  line-height: 1;
  font-weight: 600;
}
@media (width < 768px) {
  .blog-item-date {
    font-size: 0.938rem;
  }
}
.blog-item-title {
  line-height: 1;
  font-size: 1.5rem;
  font-weight: 800;
}
@media (width < 768px) {
  .blog-item-title {
    font-size: 1.25rem;
  }
}
.blog-item-desc {
  font-weight: 500;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (width >= 768px) {
  .blog-item-desc {
    font-size: 1.25rem;
  }
}
.footer {
  margin-top: auto;
  padding-bottom: var(--container-padding);
}
.footer-main {
  padding: 2.5rem 1.875rem;
  border-radius: 2.5rem;
  background: #21242b url(../img/footer-logo.svg) center center / 39.188rem 39.188rem no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 4.125rem;
}
@media (width < 1024px) {
  .footer-main {
    padding: 1.5rem;
    border-radius: 1.5rem;
    gap: 2.5rem;
  }
}
.footer-body {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
}
@media (width < 1024px) {
  .footer-body {
    gap: 1.5rem;
  }
}
@media (width < 768px) {
  .footer-body {
    flex-direction: column;
  }
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
@media (width < 1024px) {
  .footer-nav {
    gap: 1.5rem;
  }
}
@media (width >= 768px) {
  .footer-nav {
    width: 44.25rem;
  }
}
@media (width < 480px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
  .footer-nav .footer-section:nth-child(odd):last-child {
    grid-column: 1 / -1;
  }
}
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-section-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #7e71b8;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-weight: 700;
}
@media (width >= 1024px) {
  .footer-menu {
    font-size: 1.125rem;
  }
}
.footer-menu a {
  display: flex;
  margin: -0.5rem;
  padding: 0.5rem;
  color: inherit;
  transition: color 0.4s;
}
.footer-menu a:hover {
  color: #7e71b8;
}
@media (width >= 768px) {
  .footer-section--address {
    width: 29.5rem;
  }
}
.footer-address {
  line-height: 1.7;
  font-weight: 700;
}
@media (width >= 1024px) {
  .footer-address {
    font-size: 1.125rem;
  }
}
.footer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (width < 1024px) {
  .footer-foot {
    gap: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
}
.footer-copyright {
  color: #717274;
  font-weight: 500;
}
@media (width < 1024px) {
  .footer-copyright {
    order: 2;
  }
}
.footer-ps {
  color: #717274;
}
.footer-ps:before {
  content: '* ';
  color: #ff0000;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (width < 768px) {
  .footer-links {
    gap: 1.5rem;
  }
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media (width < 768px) {
  .footer-social {
    gap: 1.25rem;
  }
}
.footer-social:not(:last-child) {
  padding-right: 2rem;
  position: relative;
}
@media (width < 768px) {
  .footer-social:not(:last-child) {
    padding-right: 1.5rem;
  }
}
.footer-social:not(:last-child):after {
  content: '';
  position: absolute;
  right: 0;
  top: calc(50% - 1.125rem);
  height: 2.25rem;
  border-right: solid 1px #3f4a62;
}
.footer-social a {
  display: flex;
  transform-origin: center bottom;
}
.footer-social a:hover {
  animation: social 0.4s;
}
.footer-social a img {
  max-width: 1.625rem;
}
@keyframes social {
  20% {
    transform: rotate(8deg);
  }
  40% {
    transform: rotate(-6deg);
  }
  60% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
}
.footer-payment {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media (width < 768px) {
  .footer-payment {
    gap: 1.25rem;
  }
}
.footer-payment-item {
  display: flex;
}
.footer-payment-item img {
  max-height: 1.625rem;
  object-fit: contain;
}
.modal-auth .modal-wrapp {
  padding-top: 3.75rem;
}
.modal-auth .modal-body {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.modal-auth-figure {
  width: min(26.25rem, 100%);
  height: 10.75rem;
  --r: 2.5rem;
  --ro: 1.5rem;
  --w: 17.5rem;
  --h: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 2.5rem;
  position: relative;
  margin-bottom: 2rem;
}
.modal-auth-img {
  width: min(16.625rem, 100%);
  display: flex;
  height: 0;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.modal-auth-form {
  width: min(22.5rem, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.modal-auth-form-title {
  text-align: center;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
}
.modal-auth-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.modal-auth-form-btns {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
}
.modal-auth-form-submit {
  min-width: 8.5rem;
}
.modal-auth-form-link {
  font-size: 1.125rem;
  font-weight: 700;
  transition: color 0.4s;
}
.modal-auth-form-link:hover {
  color: #7e71b8;
}
.modal-auth-form-steam {
  font-weight: 500;
  border-radius: 0.625rem;
  margin-top: 0.875rem;
}
.modal-auth-form-steam svg {
  --size: 1.75rem;
}
.modal-auth-foot {
  margin: 2.5rem -2rem -2rem;
  padding: 1.5rem 2rem;
  border-radius: inherit;
  background-color: #5846a6;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
}
@media (width < 1024px) {
  .modal-auth-foot {
    margin: 2rem -1.5rem -1.5rem;
    padding: 1.5rem;
  }
}
.modal-auth-foot-link {
  color: inherit;
  font-weight: 800;
  transition: color 0.4s;
}
.modal-auth-foot-link:hover {
  color: #7e71b8;
}
.input-promo-code {
  border-color: #5846a6;
}
.input-promo-code::-webkit-input-placeholder {
  color: #5846a6;
}
.input-promo-code:-moz-placeholder {
  color: #5846a6;
}
.input-promo-code::-moz-placeholder {
  color: #5846a6;
}
.input-promo-code:-ms-input-placeholder {
  color: #5846a6;
}
.market-nav {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (width < 1024px) {
  .market-nav {
    margin-bottom: 2rem;
    flex-direction: column;
    align-items: unset;
  }
}
.market-nav-game {
  flex: none;
  display: flex;
  align-items: center;
  gap: 0.188rem;
  border-radius: 2rem;
  background-color: #21242b;
  padding: 0.188rem;
}
@media (width >= 1024px) {
  .market-nav-game {
    width: 30.625rem;
  }
}
.market-nav-game-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
  padding: 0 1.5rem;
  border-radius: 2rem;
  flex: auto;
  min-width: 0;
  transition: background-color 0.4s;
}
.market-nav-game-link img {
  max-height: 1.25rem;
  object-fit: contain;
  filter: brightness(0) invert(0.5);
  transition: filter 0.4s;
}
.market-nav-game-link:hover img {
  filter: brightness(0) invert(1);
}
.market-nav-game-link.active {
  background-color: var(--color);
}
.market-nav-game-link.active img {
  filter: brightness(0) invert(1);
}
.market-nav-category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.market-nav-category-link {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  min-height: 1.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background-color: #828291;
  border-radius: 0.938rem;
  transition: background-color 0.4s;
}
.market-nav-category-link:hover,
.market-nav-category-link.active {
  background-color: #5846a6;
}
.market-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (width < 1024px) {
  .market-head {
    flex-direction: column;
    align-items: unset;
    margin-bottom: 2rem;
  }
}
.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
}
@media (width < 1024px) {
  .page-title {
    font-size: 2rem;
  }
}
.market-head-filter {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (width < 1024px) {
  .market-head-filter {
    display: grid;
  }
}
@media (width < 1024px) and (width >= 768px) {
  .market-head-filter {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width >= 1024px) {
  .market-head-filter .input {
    width: 21.375rem;
  }
}
.market-main {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (width < 1024px) {
  .market-main {
    flex-direction: column;
    align-items: unset;
  }
}
@media (width < 1024px) {
  .market-fiter .modal-body {
    background-color: #21242b;
    padding: 1.5rem;
    flex: none;
    border-radius: 2.5rem;
    display: flex;
    flex-direction: column;
    color: #fff;
  }
}
@media (width >= 1024px) {
  .market-fiter {
    all: unset;
    display: contents;
  }
  .market-fiter:not(.active) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .market-fiter .modal-wrapp {
    all: unset;
    display: contents;
  }
  .market-fiter .modal-body {
    all: unset;
    box-sizing: border-box;
    width: 15.625rem;
    background-color: #21242b;
    padding: 1.5rem;
    flex: none;
    border-radius: 2.5rem;
    display: flex;
    flex-direction: column;
    color: #fff;
  }
}
.market-fiter-item {
  margin: 0 -1.5rem;
}
.market-fiter-item .range {
  padding-top: 0.375rem;
}
.market-fiter-item + .market-fiter-item {
  border-top: solid 1px #33363d;
}
.market-fiter-item .spoiler-content {
  max-height: 20rem;
  overflow-y: auto;
}
.market-fiter-item .checkbox {
  font-size: 1rem;
  font-weight: 600;
}
.market-fiter-item .checkbox > i {
  background-color: #33363d;
  color: #7e71b8;
}
.market-fiter-item .radio {
  font-size: 1rem;
  font-weight: 600;
}
.market-fiter-item .radio > i {
  background-color: transparent;
  border: solid 0.125rem #33363d;
  color: #5846a6;
}
.market-fiter-item-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.range--exterior .range-slider {
  height: 0.875rem;
  background-image: linear-gradient(
    to right,
    #41b98f var(--factory-new),
    #6f8bed var(--factory-new),
    #6f8bed var(--minimal-wear),
    #62aefd var(--minimal-wear),
    #62aefd var(--field-tested),
    #986548 var(--field-tested),
    #986548 var(--well-worn),
    #e46b6b var(--well-worn)
  );
}
.range--exterior .range-slider__thumb {
  width: 0.375rem;
  height: 1.375rem;
  background-color: #fff;
  border: 0;
  box-shadow: 0px 0px 0.563rem 0px #00000040;
  border-radius: 0.188rem;
  top: 0;
  transform: translateX(-50%);
}
.range--exterior .range-slider__range {
  display: none;
}
.market-fiter-submit {
  --height: 2.75rem;
  font-size: 1rem;
}
.market-body {
  flex: auto;
  min-width: 0;
  border-radius: 2.5rem;
  padding: 1.5rem;
  background-color: #21242b;
  color: #fff;
}
@media (width < 1024px) {
  .market-body {
    padding: 1.25rem;
    border-radius: 1.5rem;
  }
}
@media (width < 768px) {
  .market-body {
    padding: 1rem 1rem 1.25rem;
  }
}
@media (width < 480px) {
  .market-body {
    padding: 0.5rem 0.5rem 1.25rem;
  }
}
.market-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (width < 1024px) {
  .market-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
  }
}
@media (width < 768px) {
  .market-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 480px) {
  .market-list {
    gap: 0.25rem;
  }
}
.pagination {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.pagination--dark .pagination-links > *.active {
  color: #fff;
}
.pagination--dark .btn[disabled],
.pagination--dark .btn.disabled {
  color: #545659;
  background-color: #2c2f35;
}
.pagination-btn {
  --height: 2.75rem;
  font-size: 1rem;
}
.pagination-links {
  display: flex;
  font-size: 1rem;
  font-weight: 800;
}
@media (width < 1024px) {
  .pagination-links {
    margin: 0 auto;
  }
  .pagination-links:before {
    content: attr(data-title);
  }
}
.pagination-links > * {
  width: 2.75rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #7e71b8;
}
.pagination-links > *.active {
  color: #21242b;
  pointer-events: none;
}
@media (width < 1024px) {
  .pagination-links > * {
    display: none;
  }
}
.pagination-links a {
  transition: color 0.4s;
}
.pagination-links a:hover {
  color: #5846a6;
}
.modal-cart .modal-body {
  margin-right: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  width: 32.5rem;
}
.modal-cart .modal-title {
  padding-right: 1.5rem;
}
.modal-cart.active .modal-body {
  transform: translateX(0);
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cart-item {
  padding: 1.875rem 1.5rem 1.875rem 1.875rem;
  gap: 1.5rem;
  min-height: unset;
}
@media (width >= 768px) {
  .cart-item {
    flex-direction: row;
    align-items: center;
  }
}
.cart-item:before {
  top: 190%;
}
@media (width < 768px) {
  .cart-item:before {
    top: 130%;
  }
}
.cart-item .product-item-category {
  position: absolute;
  right: 1.5rem;
  max-width: calc(100% - 11.75rem);
  top: 0;
}
.cart-item .product-item-img {
  width: 6.875rem;
  padding: 0;
  height: 5.25rem;
  margin: 0;
  flex: none;
}
.cart-item .product-item-body {
  margin: 0;
  gap: 0.375rem;
  padding: 0;
  flex: auto;
  min-width: 0;
}
.cart-item .product-item-title {
  text-align: left;
}
.cart-item .product-item-price {
  justify-content: flex-start;
}
@media (width < 768px) {
  .cart-item .quantity {
    position: absolute;
    right: 1.875rem;
    top: 3rem;
  }
}
.cart-item-body {
  flex: auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.cart-item-delete {
  flex: none;
  color: #e46b6b;
  transition: color 0.4s;
  position: relative;
  z-index: 6;
}
.cart-item-delete:hover {
  color: #ff0000;
}
.modal-cart-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}
.modal-cart-total {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: solid 1px #9b9ba6;
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
}
.modal-cart-total .product-item-price {
  margin: 0;
}
.modal-cart-total .product-item-cost {
  font-size: inherit;
}
.modal-cart-total .product-item-ns {
  font-size: 1rem;
}
.modal-cart-total .product-item-ns:not(:first-child) {
  padding-left: 1.25rem;
  margin-left: 1.25rem;
}
.modal-cart-total .product-item-ns:not(:first-child):before {
  content: '|';
  font-size: 1.25rem;
}
.modal-cart-total-title {
  text-transform: uppercase;
}
.modal-cart-submit {
  margin-left: auto;
}
.page-head {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (width < 1024px) {
  .page-head {
    margin-bottom: 1.5rem;
  }
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #717274;
}
.breadcrumbs li:not(:last-child) {
  position: relative;
  padding-right: 1rem;
  margin-right: 1rem;
}
.breadcrumbs li:not(:last-child):after {
  content: '';
  position: absolute;
  top: calc(0.5lh - 0.188rem);
  left: calc(100% - 0.188rem);
  width: 0.375rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: solid 0.125rem #5846a6;
}
.breadcrumbs a {
  color: #21242b;
  transition: color 0.4s;
}
.breadcrumbs a:hover {
  color: #5846a6;
}
.product-main {
  display: grid;
  gap: 1.25rem;
}
@media (width >= 1024px) {
  .product-main {
    grid-template-columns: 1fr 1fr;
  }
}
.product-cell {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.product-card {
  background-color: #21242b;
  color: #fff;
  border-radius: 2.5rem;
  padding: 2.25rem;
  overflow: hidden;
  will-change: transform;
}
@media (width < 1024px) {
  .product-card {
    padding: 1.25rem;
    border-radius: 1.5rem;
  }
}
.product-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 790/480;
  min-height: 20rem;
}
.product-img {
  position: absolute;
  inset: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  max-height: 100%;
  object-fit: cover;
}
.product-img.cover-img {
  inset: 0;
}
.product-img.cover-img img {
  object-fit: cover;
}
.product-gallery-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: auto;
  align-items: flex-start;
  gap: 2rem;
}
.product-info {
  margin: auto 0 -2.25rem;
  padding: 1.25rem;
  border-radius: 1.25rem 1.25rem 0 0;
  background-color: #33363d;
}
.product-info-table {
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
}
.product-info-table td {
  vertical-align: top;
  padding: 0 0.625rem 0.625rem 0;
}
.product-info-table td:first-child {
  color: #717274;
}
.product-info-table td:last-child {
  padding-right: 0;
}
.product-info-table tr:last-child td {
  padding-bottom: 0;
}
.product-view-in-steam {
  display: flex;
  color: #717274;
  transition: color 0.4s;
}
.product-view-in-steam:hover {
  color: #5846a6;
}
.product-exterior {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-exterior--fn {
  --color: #41b98f;
}
.product-exterior--mw {
  --color: #6f8bed;
}
.product-exterior--ft {
  --color: #62aefd;
}
.product-exterior--ww {
  --color: #986548;
}
.product-exterior--bs {
  --color: #e46b6b;
}
.product-exterior-body {
  margin: 0.75rem -2.25rem 0 auto;
  display: flex;
  position: relative;
  max-width: 45.125rem;
}
.product-exterior-body > img {
  width: 100%;
}
.product-exterior-chart {
  position: absolute;
  inset: 9.896% 26.18% 5.208% 0;
  display: grid;
  grid-template-columns: 0.3058fr 0.1969fr 0.1595fr 0.2045fr 0.1333fr;
}
.product-exterior-chart-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.5rem 0.875rem;
  position: relative;
  border-radius: 0.5rem;
  opacity: 50%;
}
.product-exterior-chart-item:before,
.product-exterior-chart-item:after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  display: none;
}
.product-exterior-chart-item:before {
  background-color: currentColor;
  opacity: 0.1;
}
.product-exterior-chart-item:after {
  border: solid 0.125rem;
  --offset: 0.563rem;
  clip-path: polygon(
    0% 0%,
    0% 100%,
    100% 100%,
    100% 0%,
    100% 0%,
    calc(100% - var(--offset)) 0%,
    calc(100% - var(--offset)) 100%,
    var(--offset) 100%,
    var(--offset) 0%,
    calc(100% - var(--offset)) 0%,
    100% 0%
  );
}
.product-exterior-chart-item.active {
  opacity: 1;
}
.product-exterior-chart-item.active:before,
.product-exterior-chart-item.active:after {
  display: block;
}
.product-exterior-chart-item.active .product-exterior-chart-item-pointer {
  display: block;
}
.product-exterior-chart-item--fn {
  color: #41b98f;
}
.product-exterior-chart-item--mw {
  color: #6f8bed;
}
.product-exterior-chart-item--ft {
  color: #62aefd;
}
.product-exterior-chart-item--ww {
  color: #986548;
}
.product-exterior-chart-item--bs {
  color: #e46b6b;
}
.product-exterior-chart-item-title {
  position: relative;
  z-index: 2;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
}
.product-exterior-chart-item-pointer {
  position: absolute;
  left: calc(var(--exterior-percent) * 1% - 0.125rem);
  width: 0.25rem;
  top: -4.25rem;
  bottom: 60%;
  background: linear-gradient(to top, currentColor, #21242b);
  display: none;
}
.product-exterior-info {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  text-transform: uppercase;
}
.product-exterior-title {
  font-size: 1.25rem;
  color: var(--color);
}
.product-exterior-number {
  font-size: 0.938rem;
}
.product-form {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.875rem 0.875rem 0.875rem 2.25rem;
}
@media (width < 1024px) {
  .product-form {
    padding: 1.25rem;
  }
}
@media (width < 768px) {
  .product-form {
    flex-direction: column;
    align-items: unset;
  }
}
.product-price {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  line-height: 1;
  font-weight: 800;
}
@media (width < 768px) {
  .product-price {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.product-cost {
  font-size: 1.75rem;
}
.product-credits {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.188rem;
  color: #717274;
}
.product-credits img {
  flex: none;
  width: 2.25rem;
}
.product-form-btns {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.product-add-to-favorites {
  display: flex;
  position: relative;
  color: #5846a6;
  transition: color 0.4s;
}
.product-add-to-favorites:hover {
  color: #7e71b8;
}
.product-add-to-favorites:before {
  content: '';
  position: absolute;
  inset: 0.25rem 0.5rem 0.75rem;
  background-color: #fff;
  transition: opacity 0.4s;
  opacity: 0;
}
.product-add-to-favorites svg {
  --size: 2.375rem;
  position: relative;
  z-index: 1;
}
.product-add-to-favorites.active:before {
  opacity: 1;
}
@media (width < 768px) {
  .product-form-submit {
    flex: auto;
  }
}
.product-history {
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.product-history-title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}
.product-history-nav {
  padding: 0.25rem;
  display: flex;
  border-radius: 1.375rem;
  gap: 0.25rem;
  background-color: #33363d;
}
@media (width >= 480px) {
  .product-history-nav {
    width: 18.75rem;
  }
}
.product-history-btn {
  flex: auto;
  padding: 0 1rem;
  border-radius: 1.125rem;
  position: relative;
  display: flex;
  height: 2.125rem;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #717274;
  transition:
    color 0.3s,
    background-color 0.4s;
  text-decoration: none;
}
.product-history-btn:hover {
  color: #fff;
}
.product-history-btn.active {
  pointer-events: none;
  color: #fff;
  background-color: #7e71b8;
}
.product-history-chart {
  aspect-ratio: 742/436;
}
.checkout-form {
  gap: 2.5rem;
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) {
  .checkout-form {
    gap: 2rem;
  }
}
.checkout-items {
  display: grid;
  gap: 1.25rem;
}
@media (width >= 1024px) {
  .checkout-items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width >= 768px) {
  .checkout-items .cart-item:before {
    top: 270%;
  }
}
.checkout-form-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
}
@media (width < 1024px) {
  .checkout-form-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (width >= 1024px) {
  .checkout-form-foot {
    align-self: flex-end;
    align-items: center;
  }
}
.checkout-form-total {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.checkout-form-total .product-item-cost {
  font-size: inherit;
}
.checkout-form-total .product-item-price {
  margin: 0;
}
.checkout-form-total .product-item-ns {
  font-size: 1rem;
}
.checkout-form-total .product-item-ns:not(:first-child) {
  padding-left: 1.25rem;
  margin-left: 1.25rem;
}
.checkout-form-total .product-item-ns:not(:first-child):before {
  content: '|';
  font-size: 1.25rem;
}
@media (width < 480px) {
  .checkout-form-submit {
    width: 100%;
  }
}
.article {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.article-img {
  --r: 2.5rem;
  --ro: 2.5rem;
  --w: 67.5%;
  --h: 5rem;
  aspect-ratio: 1600/490;
  min-height: 17.5rem;
}
@media (width < 1024px) {
  .article-img {
    --r: 1.5rem;
    --ro: 1.5rem;
    --w: 67.5%;
    --h: 2.5rem;
  }
}
.article-content {
  width: min(48.75rem, 100%);
  margin: 0 auto;
}
.article-share {
  padding-top: 2rem;
  border-top: solid 1px #9b9ba6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.article-share-title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
}
.article-share-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.share-btn {
  display: flex;
  border-radius: 50%;
  width: 2.25rem;
}
.share-btn img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: inherit;
  object-fit: cover;
  transition: transform 0.4s;
}
.share-btn:hover img {
  transform: translateY(-0.375rem);
}
.video-hub {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.video-hub-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.video-hub-section-title {
  padding-bottom: 0.5rem;
  border-bottom: solid 1px #9b9ba6;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 800;
}
.video-hub-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media (width < 768px) {
  .video-hub-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 480px) {
  .video-hub-list {
    grid-template-columns: 1fr;
  }
}
.video-hub-item {
  border-radius: 2.5rem;
  aspect-ratio: 16/9;
}
@media (width < 1024px) {
  .video-hub-item {
    border-radius: 1.5rem;
  }
}
.video-hub-item:after {
  content: '';
  position: absolute;
  width: 4.375rem;
  height: 3.5rem;
  background-image: url(../img/youtube-play.svg);
  background-size: 100% 100%;
  transition: transform 0.4s;
  left: calc(50% - 2.188rem);
  top: calc(50% - 1.75rem);
}
@media (width < 1024px) {
  .video-hub-item:after {
    scale: 0.8;
  }
}
.video-hub-item:hover:after {
  transform: scale(0.88);
}
.faq {
  display: grid;
  gap: 1.25rem;
}
@media (width >= 1024px) {
  .faq {
    grid-template-columns: 1fr 1fr;
  }
}
.faq-cell {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contacts {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  justify-content: space-between;
}
@media (width < 1024px) {
  .contacts {
    flex-direction: column;
    align-items: unset;
  }
}
.contacts-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width >= 1024px) {
  .contacts-body {
    width: 34.375rem;
  }
}
.contacts-item {
  font-weight: 500;
  font-size: 1.5rem;
}
.contacts-item a {
  transition: color 0.4s;
}
.contacts-item a:hover {
  color: #7e71b8;
}
.contacts-form {
  width: 40rem;
  background-color: #21242b;
  color: #fff;
  border-radius: 2.5rem;
}
@media (width < 1024px) {
  .contacts-form {
    border-radius: 1.5rem;
  }
}
.contacts-form-title {
  min-height: var(--h);
  width: calc(100% - var(--w));
  display: flex;
  align-items: center;
  padding: 0 2.25rem;
  font-size: 2.5rem;
  font-weight: 800;
}
@media (width < 1024px) {
  .contacts-form-title {
    padding: 0 1.5rem;
  }
}
.contacts-form-body {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (width < 1024px) {
  .contacts-form-body {
    padding: 1.5rem;
  }
}
.contacts-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contacts-form-inputs .input {
  background-color: #33363d;
  border-color: #33363d;
  --input-color: #fff;
}
.contacts-form-inputs .textarea {
  height: 9.5rem;
}
.contacts-form-submit {
  align-self: flex-start;
  min-width: 9.5rem;
}
.page-404 {
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-404-body {
  display: flex;
  justify-content: center;
  min-height: 14.625rem;
}
@media (width < 1024px) {
  .page-404-body {
    min-height: unset;
    padding: 1.5rem 0;
  }
}
@media (width < 768px) {
  .page-404-body {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
}
.page-404-code {
  display: flex;
  align-items: center;
  padding-right: 4rem;
  margin-right: 3.5rem;
  position: relative;
  font-size: 8.375rem;
  font-weight: 700;
  line-height: 1;
}
.page-404-code:after {
  content: '';
  position: absolute;
  inset: 0 0 0 calc(100% - 0.5rem);
  border-radius: 0.5rem;
  background-color: #5846a6;
}
@media (width < 1024px) {
  .page-404-code {
    font-size: 6rem;
  }
}
@media (width < 768px) {
  .page-404-code {
    padding: 0 0 2.5rem;
    margin: 0 0 2rem;
    justify-content: center;
  }
  .page-404-code:after {
    inset: calc(100% - 0.5rem) 0 0;
  }
}
.page-404-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  align-items: flex-start;
}
@media (width < 768px) {
  .page-404-content {
    align-items: center;
    text-align: center;
  }
}
.page-404-title {
  font-size: 1.5rem;
  font-weight: 700;
}
.page-404-btn {
  min-width: 9.5rem;
}
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (width < 1024px) {
  .orders-list {
    gap: 3rem;
  }
}
.orders-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.orders-item-info {
  display: flex;
  gap: 1.25rem 2.75rem;
  align-items: center;
}
@media (width < 768px) {
  .orders-item-info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.orders-item-info:has(.orders-item-info-main) {
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 1rem;
}
@media (width >= 1024px) {
  .orders-item-info:has(.orders-item-info-main) {
    width: 50%;
    padding-right: 0.625rem;
  }
}
.orders-item-btn {
  min-width: 9.5rem;
}
.orders-item-info-main {
  display: flex;
  gap: 1.25rem 2.75rem;
  flex-wrap: wrap;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media (width >= 1024px) {
  .favorites-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.product-item-remove-from-favorites {
  position: relative;
  display: flex;
  z-index: 4;
  color: #5846a6;
  transition: color 0.4s;
}
.product-item-remove-from-favorites > svg:first-child {
  --size: 1.75rem;
}
.product-item-remove-from-favorites > svg:last-child {
  --size: 1rem;
  position: absolute;
  top: 0.188rem;
  left: calc(50% - 0.5 * var(--size));
  z-index: 2;
  color: #fff;
}
.product-item-remove-from-favorites:before {
  content: '';
  position: absolute;
  inset: 0.125rem 0.375rem 0.625rem;
  background-color: currentColor;
  transition: opacity 0.4s;
}
.product-item-remove-from-favorites:hover {
  color: #7e71b8;
}
.balance-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 2.5rem;
  background-color: #21242b;
  color: #fff;
  overflow: hidden;
  will-change: transform;
}
@media (width < 1024px) {
  .balance-card {
    border-radius: 1.5rem;
  }
}
.balance-level {
  margin-bottom: 3.75rem;
}
@media (width < 1024px) {
  .balance-level {
    margin-bottom: 3rem;
  }
}
.balance-level:last-child {
  margin-bottom: 0;
}
.balance-level-stages {
  margin: 0;
  overflow: visible;
}
@media (width >= 1024px) {
  .balance-level-stages .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.25rem;
  }
}
.balance-level-stage {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  text-align: center;
  border-radius: 1.25rem;
  background-color: #2c2f35;
  overflow: hidden;
  will-change: transform;
  position: relative;
}
@media (width < 1024px) {
  .balance-level-stage {
    width: 12.75rem;
  }
}
.balance-level-stage:before {
  content: '';
  position: absolute;
  width: calc(100% + 17.5rem);
  left: 50%;
  top: 100%;
  aspect-ratio: 562/330;
  border-radius: 50%;
  background: #444850;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  transition: transform 0.4s;
}
.balance-level-stage.active .balance-level-stage-img {
  opacity: 1;
}
.balance-level-stage.active .balance-level-stage-title {
  color: #fff;
}
.balance-level-stage-img {
  margin: -1rem -1rem 0;
  display: flex;
  opacity: 0.3;
  transition: opacity 0.4s;
  position: relative;
  z-index: 1;
}
.balance-level-stage-img img {
  aspect-ratio: 1;
  object-fit: contain;
  width: 100%;
}
.balance-level-stage-title {
  font-size: 0.875rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  color: #717274;
  transition: color 0.4s;
  position: relative;
  z-index: 1;
}
.balance-level-progress {
  height: 0.875rem;
  background-color: #33363d;
  border-radius: 0.875rem;
  position: relative;
}
.balance-level-progress:before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--percent) * 1%);
  background-color: #5846a6;
  border-radius: inherit;
}
.balance-title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}
.balance-level-title {
  margin-top: -0.25rem;
}
.balance-body {
  display: flex;
  gap: 1.25rem;
}
@media (width < 1024px) {
  .balance-body {
    flex-direction: column;
  }
}
@media (width >= 1024px) {
  .balance-available {
    flex: none;
    width: 32.5rem;
  }
}
.balance-credits {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.balance-credits > img {
  flex: none;
  width: 3.75rem;
}
.balance-credits-body {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
.balance-credits-ns {
  font-size: 2.25rem;
}
.balance-credits-cost {
  font-size: 1.25rem;
  color: #717274;
}
.balance-top-up-btn {
  margin: 0.5rem auto 0 0;
}
.balance-history {
  flex: auto;
  min-width: 0;
}
.balance-history-table {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (width < 768px) {
  .balance-history-table {
    display: block;
  }
}
@media (width < 768px) {
  .balance-history-table thead {
    display: none;
  }
}
.balance-history-table thead td {
  padding-top: 0;
  padding-bottom: 0.5rem;
  border-bottom-width: 0.375rem;
  color: #717274;
}
@media (width >= 768px) {
  .balance-history-table td {
    padding: 1.25rem 2rem 1.25rem 0;
    border-bottom: solid 1px #33363d;
  }
  .balance-history-table td:last-child {
    padding-right: 0;
    text-align: right;
  }
}
@media (width < 768px) {
  .balance-history-table td {
    display: grid;
    grid-column: span 2;
    grid-template-columns: subgrid;
    gap: 1.25rem;
  }
  .balance-history-table td:before {
    content: attr(data-title);
    color: #8a8a9a;
  }
}
@media (width < 768px) {
  .balance-history-table tbody {
    display: flex;
    flex-direction: column;
  }
}
@media (width < 768px) {
  .balance-history-table tbody tr {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }
  .balance-history-table tbody tr:not(:last-child) {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: solid 1px #3f4a62;
  }
}
.balance-history-table tbody tr:last-child td {
  padding-bottom: 0;
  border-bottom: 0;
}
.balance-history-table-cost {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
}
.balance-history-table-credits {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #717274;
}
.balance-history-table-credits b {
  color: #21242b;
}
.balance-history-table-credits > img {
  flex: none;
  width: 1.125rem;
}
.modal-top-up .modal-body {
  width: 31.25rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 3.75rem 4.375rem 4.375rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .modal-top-up .modal-body {
    padding: 3.5rem 1.5rem 2rem;
  }
}
.modal-top-up-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.modal-top-up-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.modal-top-up-desc {
  font-weight: 800;
  color: #717274;
}
.top-up-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.top-up-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.top-up-form-submit {
  align-self: flex-start;
  min-width: 8.5rem;
}
.settings {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (width < 1024px) {
  .settings {
    gap: 3rem;
  }
}
.settings-form {
  --r: 2.5rem;
  --ro: 2.5rem;
  --h: 5rem;
  --w: 72%;
  background-color: #21242b;
  color: #fff;
}
@media (width < 1024px) {
  .settings-form {
    --r: 1.5rem;
    --ro: 1.5rem;
    --w: 16.25rem;
  }
}
@media (width < 768px) {
  .settings-form {
    --w: 5rem;
  }
}
.settings-form-title {
  min-height: var(--h);
  width: calc(100% - var(--w));
  display: flex;
  align-items: center;
  padding: 0 2.25rem;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  justify-content: center;
}
@media (width < 1024px) {
  .settings-form-title {
    padding: 0 1.5rem;
  }
}
@media (width < 768px) {
  .settings-form-title {
    font-size: 1.75rem;
  }
}
.settings-form-body {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (width < 1024px) {
  .settings-form-body {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}
.settings-form-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.875rem;
}
@media (width < 1024px) {
  .settings-form-inputs {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
@media (width < 768px) {
  .settings-form-inputs {
    grid-template-columns: 1fr;
  }
}
.settings-form-input-wrapp {
  gap: 0.5rem;
  display: flex;
  background-color: #33363d;
  border-color: #33363d;
}
.settings-form-input-wrapp:has(.input:focus) {
  border-color: #7e71b8;
}
.settings-form-input-title {
  align-self: center;
  flex: none;
  color: #8a8a9a;
}
.settings-form-input {
  width: 0;
  flex: auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 0;
  background: none;
  border: 0;
  backdrop-filter: unset;
  height: auto;
  --input-color: #fff;
  --input-color-placeholder: #fff;
}
.settings-form-input:focus {
  background: none;
}
.settings-form-submit {
  align-self: flex-start;
  min-width: 10.875rem;
}
.cookies {
  position: fixed;
  inset: auto 0 0;
  z-index: 66;
  pointer-events: none;
  padding: 0 var(--container-padding) var(--container-padding);
}
@media (width < 1024px) {
  .cookies {
    padding: 0;
  }
}
.cookies.hide .cookies-main {
  opacity: 0;
  transform: translateY(100%);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.4s,
    opacity 0.4s,
    visibility 0.4s;
}
.cookies-main {
  width: min(71.25rem, 100%);
  border-radius: 2.5rem;
  background-color: #21242b;
  color: #fff;
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: auto;
  margin: 0 auto;
}
@media (width < 1024px) {
  .cookies-main {
    border-radius: 1.5rem 1.5rem 0 0;
    padding: var(--container-padding);
    gap: var(--container-padding);
  }
}
@media (width < 768px) {
  .cookies-main {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cookies-body {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
}
.cookies-body a {
  transition: color 0.4s;
}
.cookies-body a:hover {
  color: #7e71b8;
}
