@font-face {
  font-family: 'BricolageGrotesque';
  font-display: swap;
  src: url('../fonts/BricolageGrotesque-VariableFont_opsz,wdth,wght.woff2') format('woff2-variations');
  font-weight: 200 800;
}
:root {
  --container-width: 80rem;
  --container-padding: 4rem;
  --app-min-width: 25rem;
  --header-height: 6.25rem;
  --content-gap: 1rem;
}
@media (width < 1024px) {
  :root {
    --container-padding: 1.5rem;
    --header-height: 4.5rem;
  }
}
@media (width < 768px) {
  :root {
    --container-padding: 1rem;
  }
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
@property --gradient-start {
  syntax: '<color>';
  inherits: true;
  initial-value: #000;
}
@property --gradient-end {
  syntax: '<color>';
  inherits: true;
  initial-value: #000;
}
.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);
}
.gradient {
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
}
.gradient-border {
  --bw: var(--border-width, 1px);
  position: relative;
}
.gradient-border:before {
  content: '';
  position: absolute;
  inset: 0;
  padding: var(--bw);
  border-radius: inherit;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
/* base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@media (width >= 1024px) {
  *::-webkit-scrollbar {
    width: 0.375rem;
    height: 0.375rem;
  }
  *::-webkit-scrollbar-thumb {
    background-color: #7570c2;
    border-radius: 0.375rem;
    background-clip: padding-box;
  }
  *::-webkit-scrollbar-track {
    background: transparent;
    border: solid 1px transparent;
    border-radius: 0.375rem;
  }
}
*: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 < 1500px) and (width >= 1024px) {
  html {
    font-size: 1.06vw;
  }
}
@media (width < 1680px) and (width >= 1024px) {
  html:has(.cabinet) {
    font-size: 0.96vw;
  }
}
html:has(.page-head):before {
  display: none;
}
html:has(.sticky) body {
  overflow: visible;
}
html:has(.sticky):has(.header.hide) .sticky {
  top: 1.5rem;
}
html:only-child {
  display: flex !important;
}
body {
  font-family: 'BricolageGrotesque', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #25283b;
  min-width: var(--app-min-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fff;
  overflow: hidden;
  padding: 0 !important;
  background: url(../img/bg.webp) center top / cover;
}
@media (width < 1024px) {
  body {
    background-size: 64rem 85.375rem;
    background-repeat: repeat-y;
  }
}
body:has(.header) {
  padding-top: var(--header-height) !important;
}
@media (width >= 1024px) {
  body:has(.cabinet-sidebar) {
    padding-top: 0 !important;
  }
}
.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%;
}
.contain-img {
  display: flex;
  flex-direction: column;
  flex: none;
}
.contain-img img {
  max-height: 100%;
  object-fit: contain;
  margin: auto;
}
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(117, 112, 194, 0.5);
}
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: #7570c2;
}
.icon {
  --size: 1.5rem;
  width: var(--size);
  height: var(--size);
}
.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.625rem;
  max-width: 100%;
  flex: none;
  font-size: 1.125rem;
  background-image: linear-gradient(100deg, #6b8ed4, #c78fed, #6b8ed4);
  background-size: 200% 100%;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 62.438rem;
  color: #fff;
  transition:
    color 0.4s,
    box-shadow 0.4s,
    border-color 0.4s,
    background-color 0.4s,
    background-position-x 0.4s,
    opacity 0.4s;
}
.btn .icon {
  --size: 1rem;
}
.btn:hover {
  background-position-x: 100%;
}
.btn[disabled],
.btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.btn--small {
  --height: 2.75rem;
  font-size: 1rem;
  padding: 0.375rem 1.25rem;
}
.btn--border {
  border: solid 0.125rem #cccae9;
}
.btn--white {
  background: #fff;
  color: #7570c2;
}
.btn--white:hover {
  color: #9794d1;
}
.btn--white-orange {
  background: #fff;
  color: #e98557;
}
.btn--white-orange:hover {
  color: #ec956d;
}
.link {
  font-size: 1.125rem;
  --gradient-start: #6b8ed4;
  --gradient-end: #c78fed;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  color: transparent;
  transition:
    --gradient-start 0.4s,
    --gradient-end 0.4s;
}
.link:hover:hover {
  --gradient-start: #c78fed;
  --gradient-end: #6b8ed4;
}
.form-alert {
  margin: 1.5rem 0;
  display: none;
  border: solid 1px rgba(229, 88, 83, 0.3);
  background-color: rgba(229, 88, 83, 0.1);
  color: #e55853;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.42;
}
.form-alert svg {
  --size: 1rem;
  margin-top: 0.125rem;
}
.form-alert.active {
  display: flex;
}
.form-alert:first-child {
  margin-top: 0;
}
.form-alert:last-child {
  margin-bottom: 0;
}
.form-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: grid;
  gap: 1.5rem;
}
@media (width >= 768px) {
  .form-group {
    gap: 1.25rem;
    grid-template-columns: 1fr 1fr;
  }
}
.form-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-block-head,
.form-block-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.form-block-link {
  font-size: 0.75rem;
  transition: color 0.4s;
  line-height: 1.33;
}
.form-block-link:hover {
  color: #9794d1;
}
.form-block-alert {
  font-size: 0.875rem;
  line-height: 1.33;
  display: none;
}
.form-block-alert.invalid {
  color: #e55853;
}
.form-block-alert.valid {
  color: #3ac48d;
}
.form-block-alert.active {
  display: block;
}
.input-block {
  display: flex;
  position: relative;
}
.input-block.gradient-border {
  border-radius: 0.563rem;
}
.input-block.gradient-border:before {
  transition: opacity 0.4s;
}
.input-block.gradient-border:has(:focus):before {
  opacity: 0;
}
.input-block:has(> .icon:first-child) .input {
  padding-left: 2.25rem;
}
.input-block:has(> .icon:last-child) .input,
.input-block:has(> .password-toggle-btn) .input {
  padding-right: 2.25rem;
}
.input-block > .icon {
  --size: 1rem;
  position: absolute;
  left: 0.75rem;
  top: calc(50% - 0.5 * var(--size));
  color: #505367;
  z-index: 1;
}
.input-block > .icon:last-child {
  left: auto;
  right: 0.75rem;
}
.password-toggle-btn {
  position: absolute;
  right: 0.75rem;
  top: calc(50% - 0.5rem);
  display: flex;
  transition: color 0.4s;
  color: #505367;
}
.password-toggle-btn:hover {
  color: #7570c2;
}
.password-toggle-btn svg {
  --size: 1rem;
}
.input {
  --color: var(--input-color, #25283b);
  --color-placeholder: var(--input-color-placeholder, rgba(80, 83, 103, 0.5));
  font-variation-settings: inherit;
  height: 3.375rem;
  border: solid 1px #fff;
  display: block;
  width: 100%;
  padding: 0 0.75rem;
  appearance: 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.42;
  text-overflow: ellipsis;
  font-family: 'BricolageGrotesque', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background-color: #fff;
  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: #7570c2;
}
.input.invalid {
  border-color: rgba(229, 88, 83, 0.6);
}
.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: 'BricolageGrotesque', 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::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.9;
  cursor: pointer;
}
.input::-webkit-inner-spin-button,
.input::-webkit-clear-button {
  display: none;
}
.input[type='number'] {
  -moz-appearance: textfield;
}
.input[type='date']:invalid {
  color: var(--color-placeholder);
}
.input[type='date']:valid {
  color: var(--color);
}
.textarea {
  resize: none;
  height: 8rem;
  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;
  flex: none;
}
.tab-block.active {
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.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.875rem;
  --radius: 0.625rem;
  display: inline-flex;
  align-items: flex-start;
  width: fit-content;
  gap: 0.75rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.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;
  background-color: #fff;
  border-radius: var(--radius);
  width: var(--icon);
  height: var(--icon);
  display: grid;
  place-items: center;
  transition:
    background-color 0.4s,
    border-color 0.4s;
}
.checkbox > i svg {
  transition:
    opacity 0.4s,
    transform 0.4s;
  opacity: 0;
  transform: scale(0);
  --size: 1.25rem;
}
.checkbox > i svg use {
  fill: url(#icon-gradient);
}
.checkbox > span {
  align-self: center;
}
.checkbox:has(input:checked) > i svg {
  opacity: 1;
  transform: scale(1);
}
.checkbox a {
  transition: color 0.4s;
  font-weight: 700;
}
.checkbox a:hover {
  color: #9794d1;
}
.checkbox:has(:focus-visible) > i {
  outline: solid 0.125rem rgba(117, 112, 194, 0.5);
}
.radio {
  --icon: 1.875rem;
  --radius: 50%;
  display: inline-flex;
  gap: 0.75rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.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 0.125rem #7570c2;
  border-radius: var(--radius);
  width: var(--icon);
  height: var(--icon);
  display: grid;
  place-items: center;
  position: relative;
}
.radio > i:before {
  content: '';
  position: absolute;
  inset: 0.375rem;
  background-color: #7570c2;
  border-radius: inherit;
  opacity: 0;
  transform: scale(0);
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.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(117, 112, 194, 0.5);
}
[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);
}
.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:not(.active) .swiper-slide {
  pointer-events: none;
  visibility: hidden;
}
.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-color: rgba(20, 18, 45, 0.5);
  padding: 2.5rem var(--container-padding);
  overflow: hidden;
  overflow-y: scroll;
  outline: none;
}
@media (width < 1024px) {
  .modal-wrapp {
    padding: var(--container-padding);
  }
}
.modal-body {
  width: 32.5rem;
  max-width: 100%;
  padding: 1.5rem;
  margin: auto;
  position: relative;
  transform: scale(0.8);
  border-radius: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: #fff;
  box-shadow:
    0px 0.25rem 0.375rem -0.25rem #0000001a,
    0px 0.625rem 0.938rem -0.188rem #0000001a;
}
.modal-close-btn {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  display: flex;
  margin: -0.5rem;
  padding: 0.5rem;
  transition: opacity 0.4s;
  color: #25283b;
}
.modal-close-btn:hover {
  opacity: 0.7;
}
.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.active .select-toggle-state:before {
  content: attr(data-text-active);
}
.select.active .select-arrow {
  transform: rotate(-180deg);
}
.select.drop-top .select-options {
  top: auto;
  bottom: calc(100% + var(--offset));
}
.select.drop-top .select-search {
  order: 1;
  border-top: solid 1px #c7c5e4;
  border-bottom: 0;
  margin-top: 0.25rem;
  margin-bottom: 0;
}
.select.drop-right .select-options {
  left: auto;
  right: 0;
}
.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.5rem;
}
.select-arrow {
  margin-left: auto;
  transition: transform 0.4s;
  --size: 0.75rem;
}
.select-arrow use {
  fill: url(#icon-gradient);
}
.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: var(--color-placeholder);
  overflow: hidden;
  text-overflow: ellipsis;
}
.select-toggle-state {
  flex: none;
  font-size: 0.625rem;
  color: #505367;
  text-transform: uppercase;
}
.select-toggle-state:before {
  content: attr(data-text);
}
.select-options {
  --offset: 0.25rem;
  position: absolute;
  inset: calc(100% + var(--offset)) 0 auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0.625rem;
  background-color: #fff;
  padding: 0.5rem;
  box-shadow: 0px 0px 1.25rem 0px #d6d4f5;
}
.select-search {
  border-bottom: solid 1px #c7c5e4;
  position: relative;
  display: block;
  z-index: 1;
  margin-bottom: 0.25rem;
}
.select-search .icon {
  --size: 1rem;
  position: absolute;
  left: 0.75rem;
  top: calc(50% - 0.5 * var(--size));
  color: #505367;
}
.select-search-input {
  height: 2.5rem;
  font-size: 0.875rem;
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0 1rem 0 2.5rem;
  color: #25283b;
  width: 100%;
  outline: none;
}
.select-search-input::-webkit-input-placeholder {
  color: rgba(80, 83, 103, 0.5);
}
.select-search-input:-moz-placeholder {
  color: rgba(80, 83, 103, 0.5);
}
.select-search-input::-moz-placeholder {
  color: rgba(80, 83, 103, 0.5);
}
.select-search-input:-ms-input-placeholder {
  color: rgba(80, 83, 103, 0.5);
}
.select-search-input::-webkit-search-decoration,
.select-search-input::-webkit-search-cancel-button,
.select-search-input::-webkit-search-results-button,
.select-search-input::-webkit-search-results-decoration {
  appearance: none;
  display: none;
}
.select-options-list {
  overflow: hidden auto;
  max-height: 14.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  position: relative;
  z-index: 1;
}
.select-option {
  width: 100%;
  padding: 0.5rem;
  align-items: center;
  display: flex;
  min-height: 2.25rem;
  gap: 0.5rem;
  border-radius: 0.5rem;
  color: #25283b;
  flex: none;
  transition:
    color 0.4s,
    background-color 0.4s;
}
.select-option .icon {
  opacity: 0;
  transition: opacity 0.4s;
  margin-left: auto;
  --size: 1rem;
  color: #505367;
}
.select-option:hover {
  color: #7570c2;
}
.select-option.active {
  color: #25283b;
  background-color: rgba(117, 112, 194, 0.15);
}
.select-option.active .icon {
  opacity: 1;
}
.accordion {
  display: flex;
  flex-direction: column;
}
.accordion-item {
  --padding: 1.125rem;
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px rgba(255, 255, 255, 0.08);
}
.accordion-item.active .accordion-item-main {
  grid-template-rows: 1fr;
}
.accordion-item.active .accordion-item-toggle > i {
  transform: rotate(-180deg);
}
.accordion-item-toggle {
  padding: var(--padding) 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.938rem;
  line-height: 1.26;
  transition: color 0.4s;
  font-weight: 500;
}
.accordion-item-toggle:hover {
  color: #7570c2;
}
.accordion-item-toggle > i {
  flex: none;
  display: flex;
  margin-left: auto;
}
.accordion-item-toggle > i svg {
  --size: 1rem;
}
.accordion-item-main {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s;
}
.accordion-body {
  overflow: hidden;
}
.accordion-item-content {
  padding-bottom: var(--padding);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.frame {
  border-radius: 2rem;
  position: absolute;
  inset: 0;
}
.frame:before,
.frame:after {
  content: '';
  position: absolute;
  width: 0.25rem;
  height: 2.625rem;
  border-radius: 0.25rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1.875rem);
  top: calc(50% - 1.313rem);
}
.frame:before {
  left: 0.313rem;
}
.frame:after {
  right: 0.313rem;
}
.shape {
  --h: 5rem;
  --w: 1rem;
  --r: 0.5rem;
  position: absolute;
  inset: 0;
  border-radius: calc(2 * var(--r));
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1.875rem);
  clip-path: shape(
    from 0 0,
    /* top */ line to 100% 0,
    /* right side до вирізу */ line to 100% calc(50% - var(--h) / 2 - var(--r)),
    /* right cutout */ curve to calc(100% - var(--r)) calc(50% - var(--h) / 2) with 100% calc(50% - var(--h) / 2),
    line to calc(100% - var(--w) + var(--r)) calc(50% - var(--h) / 2),
    curve to calc(100% - var(--w)) calc(50% - var(--h) / 2 + var(--r)) with calc(100% - var(--w))
      calc(50% - var(--h) / 2),
    line to calc(100% - var(--w)) calc(50% + var(--h) / 2 - var(--r)),
    curve to calc(100% - var(--w) + var(--r)) calc(50% + var(--h) / 2) with calc(100% - var(--w))
      calc(50% + var(--h) / 2),
    line to calc(100% - var(--r)) calc(50% + var(--h) / 2),
    curve to 100% calc(50% + var(--h) / 2 + var(--r)) with 100% calc(50% + var(--h) / 2),
    /* right side після вирізу */ line to 100% 100%,
    /* bottom */ line to 0 100%,
    /* left side до вирізу */ line to 0 calc(50% + var(--h) / 2 + var(--r)),
    /* left cutout */ curve to var(--r) calc(50% + var(--h) / 2) with 0 calc(50% + var(--h) / 2),
    line to calc(var(--w) - var(--r)) calc(50% + var(--h) / 2),
    curve to var(--w) calc(50% + var(--h) / 2 - var(--r)) with var(--w) calc(50% + var(--h) / 2),
    line to var(--w) calc(50% - var(--h) / 2 + var(--r)),
    curve to calc(var(--w) - var(--r)) calc(50% - var(--h) / 2) with var(--w) calc(50% - var(--h) / 2),
    line to var(--r) calc(50% - var(--h) / 2),
    curve to 0 calc(50% - var(--h) / 2 - var(--r)) with 0 calc(50% - var(--h) / 2),
    close
  );
}
.range-slider-wrapp {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}
.range-slider-wrapp .input {
  height: 2.75rem;
  font-size: 1rem;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
}
.range-slider {
  flex: auto;
  min-width: 0;
  height: 0.5rem;
  background-color: #fdfdfd;
  border-radius: 0.5rem;
}
.range-slider .range-slider__thumb {
  width: 1.625rem;
  height: 1.625rem;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
}
.range-slider .range-slider__thumb:before {
  content: '';
  position: absolute;
  inset: 0.375rem;
  background-color: #fdfdfd;
  border-radius: inherit;
}
.range-slider .range-slider__range {
  border-radius: inherit;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  pointer-events: none;
}
.range-slider-disabled-min [data-lower] {
  width: 0;
  pointer-events: none;
}
.range-slider-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.375rem;
}
.range-slider-min-max {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.938rem;
  font-weight: 500;
}
#icon-gradient .gradient-start {
  stop-color: #6b8ed4;
}
#icon-gradient .gradient-end {
  stop-color: #c78fed;
}
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.slider-dots.swiper-pagination-lock {
  display: none;
}
@media (width < 1024px) {
  .slider-dots {
    gap: 0.5rem;
  }
}
.slider-dots span {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 62.438rem;
  background-color: #fdfdfd;
  margin: 0 !important;
  position: relative;
  flex: none;
  transition: width 0.4s;
}
@media (width < 1024px) {
  .slider-dots span {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.slider-dots span:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  transition: opacity 0.4s;
  opacity: 0;
}
.slider-dots span.swiper-pagination-bullet-active {
  width: 2.625rem;
}
@media (width < 1024px) {
  .slider-dots span.swiper-pagination-bullet-active {
    width: 1.5rem;
  }
}
.slider-dots span.swiper-pagination-bullet-active:before {
  opacity: 1;
}
.loader {
  width: 2rem;
  aspect-ratio: 4;
  background: radial-gradient(circle closest-side, #000 90%, #0000) 0 / calc(100% / 3) 100% space;
  clip-path: inset(0 100% 0 0);
  animation: l1 0.6s steps(4) infinite;
}
@keyframes l1 {
  to {
    clip-path: inset(0 -34% 0 0);
  }
}
.radio-btns {
  display: flex;
  padding: 0.313rem;
  border-radius: 0.625rem;
  gap: 0.125rem;
  background-color: #fff;
  flex-wrap: wrap;
}
.radio-btn,
.checkbox-btn {
  position: relative;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  color: #505367;
  text-align: center;
  transition:
    color 0.4s,
    background-color 0.4s;
}
.radio-btn input,
.checkbox-btn input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: 1;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0;
}
.radio-btn:hover,
.checkbox-btn:hover {
  color: #7570c2;
}
.radio-btn:has(:checked),
.checkbox-btn:has(:checked) {
  color: #fff;
  background-color: #7570c2;
}
.checkbox-btn {
  background-color: #fff;
  min-height: 2rem;
  border-radius: 62.438rem;
  font-size: 0.813rem;
}
.radio-btn {
  flex: auto;
}
.content-text {
  display: flow-root;
  line-height: 1.4;
}
.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: 700;
}
.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.25rem;
  line-height: 1.25;
}
@media (width < 768px) {
  .content-text h1 {
    font-size: 1.875rem;
  }
}
.content-text h2 {
  font-size: 1.5rem;
  line-height: 1.2;
}
.content-text h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}
.content-text h4,
.content-text h5,
.content-text h6 {
  font-size: 1.125rem;
  line-height: 1.25;
}
.content-text b,
.content-text strong {
  font-weight: 700;
}
.content-text p {
  margin-bottom: var(--content-gap);
}
.content-text p:last-child {
  margin-bottom: 0;
}
.content-text a:not(.btn) {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.125rem;
  transition: text-decoration-color 0.4s;
}
.content-text a:not(.btn):hover {
  text-decoration-color: transparent;
}
.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 {
  margin-bottom: calc(0.4 * var(--content-gap));
  padding-left: 1.5rem;
  position: relative;
}
.content-text ol li:last-child {
  margin-bottom: 0;
}
.content-text ol li:before {
  content: counter(counter) '.';
  position: absolute;
  flex: none;
  left: 0;
  top: 0;
  counter-increment: counter;
  width: 1.5rem;
  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 {
  margin-bottom: calc(0.4 * var(--content-gap));
  padding-left: 1.5rem;
  position: relative;
}
.content-text ul li:last-child {
  margin-bottom: 0;
}
.content-text ul li:before {
  content: '';
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: currentColor;
  left: 0.375rem;
  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;
}
.content-text blockquote {
  margin: calc(1.5 * var(--content-gap)) 0;
  padding-left: 1.625rem;
  border-left: solid 0.125rem rgba(37, 40, 59, 0.4);
  font-size: 1.75rem;
  line-height: 1.4;
  color: #25283b;
}
@media (width < 1024px) {
  .content-text blockquote {
    font-size: 1.5rem;
  }
}
.content-text blockquote:first-child {
  margin-top: 0;
}
.content-text blockquote:last-child {
  margin-bottom: 0;
}
.content-text blockquote p {
  --content-gap: 1.25rem;
}
.content-text blockquote p:first-child:before {
  content: '“';
}
.content-text blockquote p:last-of-type:after {
  content: '”';
}
.content-text blockquote cite {
  display: block;
  font-style: normal;
  font-size: 0.688rem;
  color: #505367;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.content-text blockquote cite:before {
  content: '— ';
}
.content-text table {
  margin: var(--content-gap) 0;
  width: 100%;
  table-layout: fixed;
  font-size: 0.875rem;
}
.content-text table:first-child {
  margin-top: 0;
}
.content-text table:last-child {
  margin-bottom: 0;
}
.content-text table td {
  border: solid 0.125rem #c7c5e4;
  padding: 0.5rem 0.75rem;
}
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 666;
  transition:
    transform 0.4s,
    opacity 0.4s;
}
.header:before {
  content: '';
  position: absolute;
  inset: 0;
  transition: opacity 0.4s;
  opacity: 0;
  background-color: #fff;
}
.header.fixed:not(.hide):before {
  opacity: 1;
}
@media (width < 1024px) {
  .header:has(.header-nav.active):before {
    opacity: 1;
  }
}
.header.hide:not(:hover) {
  transform: translateY(-100%);
  opacity: 0;
}
.header .container {
  display: flex;
  align-items: center;
  height: var(--header-height);
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 2.5rem;
}
@media (width < 1024px) {
  .header .container {
    gap: 1.5rem;
  }
}
.logo {
  display: flex;
  flex: none;
}
.logo img {
  max-height: 2.75rem;
  object-fit: contain;
}
@media (width < 1024px) {
  .header-nav {
    background-color: rgba(20, 18, 45, 0.8);
    top: var(--header-height);
  }
  .header-nav.disabled {
    pointer-events: none;
  }
  .header-nav .modal-wrapp {
    padding: 0;
    background: none;
  }
  .header-nav .modal-body {
    width: min(20rem, 100%);
    margin: 0 0 auto auto;
    transform: translateX(100%);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 100%;
    padding: 1.5rem;
    background-color: #fff;
  }
  .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:not(.active) .modal-body {
    transition: unset;
    transform: none;
  }
  .header-nav .modal-wrapp {
    all: unset;
    display: contents;
  }
  .header-nav .modal-body {
    all: unset;
    display: contents;
  }
}
.header-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media (width < 1024px) {
  .header-menu {
    flex-direction: column;
    gap: 0.75rem;
    align-items: unset;
  }
}
.header-menu a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: color 0.4s;
  margin: 0 -1.5rem;
  padding: 0.75rem 1.5rem;
}
@media (width >= 1024px) {
  .header-menu a {
    position: relative;
    min-width: 5.625rem;
    min-height: 4rem;
    justify-content: center;
    margin: 0 -1rem;
    padding: 1.25rem 1rem;
  }
  .header-menu a:before {
    content: '';
    position: absolute;
    left: calc(50% - 2.813rem);
    bottom: 0;
    height: 0.313rem;
    width: 5.625rem;
    background-image: url(../img/header-menu.svg);
    background-size: 100% 100%;
    transition: opacity 0.4s;
    opacity: 0;
  }
  .header-menu a:hover:before {
    opacity: 1;
  }
}
.header-menu .active > a:before {
  opacity: 1;
}
.header-cell {
  display: flex;
}
@media (width >= 1024px) {
  .header-cell {
    min-width: 15rem;
    flex: none;
  }
}
.header-cell-btns {
  justify-content: flex-end;
}
@media (width < 1024px) {
  .header-cell-btns {
    margin-top: auto;
  }
}
.header-btns {
  display: flex;
  padding: 0.188rem;
  border-radius: 1.625rem;
  background-color: #7570c2;
  height: 3.125rem;
}
@media (width < 1024px) {
  .header-btns {
    width: 100%;
  }
}
.header-cta {
  padding: 0.5rem 0.625rem 0.5rem 1rem;
  display: flex;
  align-items: center;
  border-radius: 1.5rem;
  color: #fff;
  transition: opacity 0.4s;
  justify-content: center;
}
@media (width < 1024px) {
  .header-cta {
    flex: auto;
  }
}
.header-cta:hover {
  opacity: 0.7;
}
.header-login {
  box-shadow: 0px 0px 0.313rem 0px #00000040;
  min-height: 0;
  padding: 0.125rem 1.25rem;
  font-size: 1rem;
}
@media (width < 1024px) {
  .header-login {
    flex: auto;
  }
}
.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);
}
.home-hero {
  padding-top: 2rem;
}
@media (width < 1024px) {
  .home-hero {
    padding: 1.5rem 0;
  }
}
.home-hero .container {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (width < 1024px) {
  .home-hero .container {
    gap: 1rem;
  }
}
.home-hero-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  align-items: center;
  max-width: 51.25rem;
  margin: 0 auto;
}
.home-hero-title {
  font-size: 4.375rem;
  font-weight: 500;
  line-height: 1;
}
@media (width < 1024px) {
  .home-hero-title {
    font-size: 3rem;
  }
}
@media (width < 768px) {
  .home-hero-title {
    font-size: 2rem;
  }
}
.home-hero-title span {
  font-size: 1.7714em;
}
.home-hero-desc {
  font-size: 1.125rem;
  line-height: 1.5;
}
.home-hero-btns {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.home-hero-main {
  position: relative;
}
@media (width >= 1024px) {
  .home-hero-main {
    margin: 0 -6.25rem 8.875rem;
  }
}
.home-hero-body {
  position: relative;
  min-height: 17.5rem;
  padding: 1.875rem 35.313rem 1.875rem 6.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
@media (width < 1024px) {
  .home-hero-body {
    gap: 1rem;
    padding: 1.5rem 2rem;
    min-height: 0;
  }
}
.home-hero-nav-title {
  position: relative;
  z-index: 1;
  font-size: 1.375rem;
}
@media (width < 1024px) {
  .home-hero-nav-title {
    font-size: 1.125rem;
  }
}
.home-hero-nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.25rem;
}
@media (width < 768px) {
  .home-hero-nav {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.home-hero-nav-item {
  padding: 0.5rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  transition:
    background-color 0.4s,
    box-shadow 0.4s;
  box-shadow: 0px 0px 1.938rem 0px rgba(0, 0, 0, 0);
}
.home-hero-nav-item.active {
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 1.938rem 0px rgba(0, 0, 0, 0.25);
}
.home-hero-nav-item.active .home-hero-nav-item-title {
  opacity: 1;
}
.home-hero-nav-item-img {
  width: min(7.5rem, 100%);
  aspect-ratio: 1;
}
.home-hero-nav-item-title {
  padding: 0 0.5rem 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.home-hero-slider {
  width: min(35.313rem, 100%);
  margin: 0 auto;
}
@media (width >= 1024px) {
  .home-hero-slider {
    position: absolute;
    right: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
}
.home-hero-slider.swiper-initialized .home-hero-slide:nth-child(n + 2) {
  visibility: visible;
}
.home-hero-slide {
  aspect-ratio: 1;
  transition-property: opacity;
}
.home-hero-slide:nth-child(n + 2) {
  visibility: hidden;
}
.section {
  --padding: 4.5rem;
  padding: var(--padding) 0;
}
@media (width < 1024px) {
  .section {
    --padding: 2.5rem;
  }
}
.section .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (width < 1024px) {
  .section .container {
    gap: 1.5rem;
  }
}
.platform-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .platform-head {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.section-title {
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (width < 1024px) {
  .section-title {
    font-size: 2rem;
  }
}
.platform-title {
  --gradient-start: #6b8ed4;
  --gradient-end: #c78fed;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  color: transparent;
  transition:
    --gradient-start 0.4s,
    --gradient-end 0.4s;
}
@media (width >= 1024px) {
  .platform-title {
    font-size: 2.875rem;
  }
}
.platform-desc {
  font-size: 1.125rem;
}
@media (width >= 1024px) {
  .platform-desc {
    flex: auto;
    font-size: 2.188rem;
    line-height: 1.2;
    max-width: 59.25rem;
    display: flex;
    flex-direction: column;
  }
  .platform-desc > span {
    display: flex;
  }
  .platform-desc > span:first-child {
    padding-left: 4.5rem;
    justify-content: flex-end;
  }
  .platform-desc > span:last-child {
    padding-right: 4.5rem;
  }
}
.platform-list {
  display: grid;
  gap: 1.25rem;
}
@media (width >= 480px) {
  .platform-list {
    grid-template-columns: 1fr 1fr;
  }
}
.platform-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width >= 1024px) {
  .platform-item {
    aspect-ratio: 630/470;
    min-height: 0;
    border-radius: 1.875rem;
    padding: 0.875rem;
    position: relative;
    overflow: hidden;
    will-change: transform;
  }
}
@media (width >= 1024px) {
  .platform-item-img {
    position: absolute;
    inset: 0;
  }
}
@media (width < 1024px) {
  .platform-item-img {
    aspect-ratio: 630/470;
    border-radius: 1.5rem;
  }
}
.platform-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (width >= 1024px) {
  .platform-item-body {
    position: relative;
    z-index: 1;
    width: min(18.125rem, 100%);
    padding: 1.25rem 1.5rem;
    border-radius: 1.25rem;
    background-color: rgba(255, 255, 255, 0.01);
    color: #fff;
    backdrop-filter: blur(1.875rem);
    margin: auto 0 0 auto;
    gap: 0.625rem;
  }
}
.platform-item-title {
  font-size: 1.5rem;
  line-height: 1;
}
@media (width < 1024px) {
  .platform-item-title br {
    display: none;
  }
}
@media (width >= 1024px) {
  .platform-item-desc {
    min-height: 4lh;
  }
}
.section-head {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) {
  .section-head {
    gap: 0.25rem;
  }
}
.section-label {
  --gradient-start: #6b8ed4;
  --gradient-end: #c78fed;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  color: transparent;
  transition:
    --gradient-start 0.4s,
    --gradient-end 0.4s;
  font-size: 1.5rem;
  line-height: 1;
  width: fit-content;
}
@media (width >= 1024px) {
  .section-label--right {
    margin-left: auto;
  }
}
.tools-grid {
  display: grid;
  gap: 1.25rem;
}
@media (width >= 1024px) {
  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.tools-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (width < 1024px) {
  .tools-list {
    gap: 1.25rem;
  }
}
@media (width >= 1024px) {
  .tools-list:last-child {
    margin-top: 8.25rem;
  }
}
.tools-item {
  position: relative;
  padding-bottom: 6.25rem;
}
.tools-item-img {
  position: absolute;
  right: calc(50% + 1.25rem);
  bottom: 0;
  width: 11.25rem;
  aspect-ratio: 1;
  z-index: 2;
}
.tools-item-body {
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  min-height: 8.25rem;
  background-color: #7570c2;
  color: #fff;
  border-radius: 1.875rem;
}
@media (width < 768px) {
  .tools-item-body {
    padding: 1.25rem;
  }
}
.tools-item-body:before {
  content: '';
  position: absolute;
  inset: 0 2.5rem -1.125rem;
  border-radius: 1.875rem;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  z-index: -1;
}
.tools-item-title {
  display: flex;
  padding: 0 0.75rem 3rem 0;
  align-items: flex-start;
  font-size: 1.5rem;
  line-height: 1;
  gap: 0.75rem;
}
@media (width >= 768px) {
  .tools-item-title:after {
    content: '';
    flex: auto;
    min-width: 1.5rem;
    border-top: dashed 1px rgba(255, 255, 255, 0.2);
    margin-top: calc(0.5lh - 1px);
  }
}
.tools-item-desc {
  color: #cecced;
}
@media (width < 768px) {
  .tools-item-desc {
    font-size: 0.875rem;
  }
}
.tools-cta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}
@media (width < 1024px) {
  .tools-cta {
    flex-direction: column;
  }
}
.tools-cta-gallery {
  display: flex;
  gap: 0.625rem;
}
.tools-cta-gallery-item {
  width: 5.625rem;
  aspect-ratio: 1;
  flex: none;
}
@media (width < 1024px) {
  .tools-cta-gallery-item {
    display: none;
  }
}
.tools-cta-gallery-item:nth-child(2) {
  width: 17rem;
  margin: -4.875rem 0;
  transform: scale(1.3);
}
@media (width < 1024px) {
  .tools-cta-gallery-item:nth-child(2) {
    display: flex;
    transform: none;
    margin: -4.875rem 0 -1.5rem;
  }
}
.tools-cta-body {
  width: 24.375rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
@media (width < 1024px) {
  .tools-cta-body {
    width: auto;
    align-items: center;
  }
}
.tools-cta-head {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.tools-cta-title {
  font-size: 1.5rem;
  line-height: 1;
}
.tools-cta-label {
  padding: 0.375rem 0.625rem;
  background-color: rgba(255, 255, 255, 0.64);
  border-radius: 6.188rem;
  font-size: 0.688rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 800;
  color: #7570c2;
}
.tools-cta-desc {
  color: #cecced;
}
@media (width < 1024px) {
  .tools-cta-desc {
    text-align: center;
  }
}
.tools-cta-btn {
  font-size: 1rem;
  --height: 3rem;
}
.how-list {
  counter-reset: c;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (width < 1024px) {
  .how-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 768px) {
  .how-list {
    grid-template-columns: 1fr;
  }
}
.how-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
  position: relative;
  border-radius: 1.875rem;
  padding: 1.125rem 1.875rem 1.875rem;
}
.how-item:after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1.875rem);
}
.how-item:before {
  content: '';
  position: absolute;
  inset: auto 2.125rem -0.625rem;
  border-radius: 0 0 1.875rem 1.875rem;
  height: 1.5rem;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  z-index: -1;
}
.how-item > * {
  position: relative;
  z-index: 1;
}
.how-item-head {
  display: flex;
  align-items: flex-start;
}
.how-item-head:before {
  content: counter(c, decimal-leading-zero);
  counter-increment: c;
  font-size: 3rem;
  line-height: 1;
  color: #fff;
}
.how-item-img {
  width: 6.938rem;
  flex: none;
  aspect-ratio: 1;
  margin: -0.25rem 0 -0.5rem -1.5rem;
}
.how-item-title {
  font-size: 1.5rem;
  line-height: 1.2;
}
.how-item-desc {
  color: #505367;
}
.section-btn-wrapp {
  display: flex;
}
.section-read-more-btn {
  margin: 0 auto;
}
.pricing-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (width < 1024px) {
  .pricing-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 480px) {
  .pricing-list {
    grid-template-columns: 1fr;
  }
}
.pricing-item {
  border-radius: 1.875rem;
  overflow: hidden;
  will-change: transform;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 1.75rem 1.5rem 1.875rem;
  position: relative;
  box-shadow: 0px 0px 1.25rem 0px #d6d4f5;
  backdrop-filter: blur(1.875rem);
  background-color: rgba(255, 255, 255, 0.3);
  justify-content: space-between;
}
.pricing-item:after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 0.375rem;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
}
.pricing-item--best {
  background-color: #7570c2;
  color: #fff;
}
@media (width < 1024px) {
  .pricing-item--best {
    grid-column: 1/-1;
  }
}
.pricing-item--best .pricing-item-desc,
.pricing-item--best .pricing-item-tokens-desc,
.pricing-item--best .pricing-item-sum-title {
  color: #cecced;
}
.pricing-item--best .pricing-item-btn {
  border: solid 0.125rem #cecced;
}
.pricing-item-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.pricing-item-title {
  font-size: 1.5rem;
  line-height: 1.2;
}
.pricing-item-desc {
  color: #505367;
}
.pricing-item-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pricing-item-tokens {
  padding-bottom: 1rem;
  border-bottom: solid 1px #fdfdfd;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.pricing-item-tokens-sum {
  font-size: 2rem;
  line-height: 1;
}
.pricing-item-tokens-desc {
  font-size: 0.875rem;
  color: #505367;
}
.pricing-item-sum {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  justify-content: space-between;
}
.pricing-item-sum-title {
  font-size: 0.875rem;
  color: #505367;
}
.pricing-item-sum-cost {
  font-size: 1.25rem;
  line-height: 1;
  white-space: nowrap;
}
.pricing-item-btn {
  margin: 0 auto;
}
.pricing-item-best {
  position: relative;
  padding: 0.375rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.64);
  margin: 3.375rem -1.5rem 0;
}
.pricing-item-best-title {
  position: relative;
  z-index: 1;
  font-size: 0.688rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #7570c2;
  font-weight: 800;
  text-align: center;
}
.pricing-item-best-img {
  position: absolute;
  bottom: calc(100% - 1.625rem);
  right: calc(50% - 6.75rem);
  width: 5.375rem;
  aspect-ratio: 1;
}
@media (width >= 1024px) {
  .friendly .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.friendly-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width >= 1024px) {
  .friendly-body {
    gap: 2rem;
    max-width: 34.125rem;
  }
}
.friendly-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.friendly-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.friendly-item-icon {
  width: 2rem;
  flex: none;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  color: #fff;
}
.friendly-item-icon svg {
  --size: 0.875rem;
}
.friendly-item-body {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.friendly-item-title {
  min-height: 2rem;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1.2;
}
.friendly-item-desc {
  color: #505367;
}
.friendly-img {
  width: 39.438rem;
  aspect-ratio: 1;
  margin: calc(-1.5 * var(--padding)) 0;
}
@media (width < 1024px) {
  .friendly-img {
    margin: calc(-1 * var(--padding)) auto;
    max-width: 100%;
  }
}
.reviews-slider {
  --mask-size: 1.25rem;
  width: auto;
  margin: 0 calc(-1 * var(--mask-size));
  padding: 0 var(--mask-size);
  --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);
}
@media (width < 1024px) {
  .reviews-slider {
    --mask-size: var(--container-padding);
  }
}
.reviews-slide {
  padding: 1.75rem;
  border-radius: 1.875rem;
  background-color: rgba(255, 255, 255, 0.3);
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) and (width >= 480px) {
  .reviews-slide {
    width: 25.813rem;
  }
}
.reviews-slide-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.reviews-slide-stars svg {
  --size: 1rem;
}
.reviews-slide-stars svg use {
  fill: url(#icon-gradient);
}
.reviews-slide-text {
  font-size: 1.25rem;
}
.reviews-slide-text:before,
.reviews-slide-text:after {
  --gradient-start: #6b8ed4;
  --gradient-end: #c78fed;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  color: transparent;
  transition:
    --gradient-start 0.4s,
    --gradient-end 0.4s;
  font-size: 1.875rem;
  line-height: 0.9;
}
.reviews-slide-text:before {
  content: '“';
}
.reviews-slide-text:after {
  content: '”';
}
.reviews-slide-user {
  margin-left: auto;
  color: #505367;
  font-size: 1.125rem;
}
.cta-main {
  position: relative;
  display: flex;
  align-items: center;
  padding: 3rem 4.75rem;
  min-height: 17.5rem;
  margin: 0 -6.25rem 3rem;
}
@media (width < 1024px) {
  .cta-main {
    margin: 0;
    flex-direction: column;
    padding: 1.5rem 2rem;
  }
}
.cta-img {
  flex: none;
  position: relative;
  z-index: 1;
  width: 35.313rem;
  margin: -12rem -4rem;
  aspect-ratio: 1;
}
@media (width < 1024px) {
  .cta-img {
    max-width: 100%;
    margin: 0 auto -2rem;
    order: 1;
  }
}
.cta-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 48.375rem;
}
.cta-desc {
  color: #505367;
}
.cta-btn {
  margin: 0.75rem auto 0 0;
}
.footer {
  padding: 3.375rem 0;
  border-top: solid 1px #fdfdfd;
  margin-top: auto;
  font-size: 0.875rem;
}
@media (width < 1024px) {
  .footer {
    padding: 2.5rem 0;
  }
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (width < 1024px) {
  .footer .container {
    gap: 2rem;
  }
}
.footer-body {
  display: flex;
  gap: 7.125rem;
}
@media (width < 1024px) {
  .footer-body {
    gap: 2rem;
  }
}
@media (width < 768px) {
  .footer-body {
    flex-direction: column;
  }
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-info-title {
  text-transform: uppercase;
  font-weight: 700;
}
.footer-info-desc {
  line-height: 1.6;
}
@media (width >= 768px) {
  .footer-address {
    max-width: 19.75rem;
    margin-right: auto;
  }
}
@media (width >= 768px) {
  .footer-disclaimer {
    text-align: right;
    max-width: 14rem;
  }
}
.footer-nav {
  display: flex;
  gap: 5.75rem;
  flex: none;
}
@media (width < 1024px) {
  .footer-nav {
    gap: 2rem;
  }
}
@media (width < 768px) {
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}
@media (width < 1024px) {
  .footer-menu {
    gap: 1.25rem;
  }
}
@media (width >= 768px) {
  .footer-menu:last-child li {
    justify-content: flex-end;
  }
}
.footer-menu li {
  display: flex;
}
.footer-menu a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: inherit;
  margin: -0.5rem;
  padding: 0.5rem;
  transition: color 0.4s;
}
.footer-menu a:hover {
  color: #7570c2;
}
.footer-menu a svg {
  --size: 0.875rem;
}
.footer-foot {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
@media (width < 768px) {
  .footer-foot {
    flex-direction: column;
    align-items: unset;
  }
}
.footer-copyright {
  color: #505367;
}
.footer-payments {
  display: flex;
  gap: 3.375rem;
  align-items: center;
}
@media (width < 1024px) {
  .footer-payments {
    gap: 2rem;
  }
}
.footer-payment {
  display: flex;
}
.footer-payment img {
  max-height: 1.625rem;
  object-fit: contain;
}
.registration {
  flex: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.auth-title {
  font-size: 2.188rem;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}
@media (width < 1024px) {
  .auth-title {
    font-size: 1.75rem;
  }
}
.registration-main {
  flex: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  --container-width: 54.125rem;
}
.registration-body {
  flex: auto;
  min-height: 12.5rem;
  position: relative;
}
.chat {
  position: absolute;
  inset: 0;
  overflow: hidden auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  --mask-size: 1.5rem;
  padding: var(--mask-size) 0;
  --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);
  scroll-padding: var(--mask-size);
}
.chat::-webkit-scrollbar {
  display: none;
}
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-message {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  max-width: calc(100% - 2rem);
}
.chat-message--my {
  color: #fff;
  align-self: flex-end;
  flex-direction: row-reverse;
}
.chat-message--my .chat-message-body {
  margin: 0 1rem 0 0;
  background-color: #7570c2;
}
.chat-message--my .chat-message-body:before {
  right: auto;
  left: 100%;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.chat-message-avatar {
  width: 4.375rem;
  aspect-ratio: 1;
  flex: none;
}
.chat-message-body {
  padding: 1.25rem;
  background-color: #fff;
  border-radius: 1.25rem;
  position: relative;
  margin-left: 1rem;
  min-height: calc(2.5rem + 1lh);
  align-items: center;
  display: flex;
}
.chat-message-body:not(:has(.chat-message-text:empty)) .loader {
  display: none;
}
.chat-message-body:before {
  content: '';
  position: absolute;
  top: 1.25rem;
  right: 100%;
  background-color: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  width: 1rem;
  height: 0.875rem;
}
.chat-form {
  padding-bottom: 2rem;
  transition: opacity 0.4s;
}
.chat-form:not(.active) {
  opacity: 0.4;
  pointer-events: none;
}
.chat-form-body {
  position: relative;
}
.chat-input {
  padding: 0 5.313rem 0 1.75rem;
  height: 3.75rem;
  border-radius: 1.875rem;
}
.chat-submit {
  width: 3.375rem;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  right: 0.188rem;
  top: calc(50% - 1.688rem);
  padding: 0;
  min-height: 0;
  height: auto;
}
.chat-submit .icon {
  --size: 1.5rem;
}
.chat-checkbox-list {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}
@media (width < 1024px) {
  .chat-checkbox-list {
    gap: 0.5rem;
  }
}
.chat-checkbox-list:not(:last-child) {
  pointer-events: none;
}
.chat-checkbox {
  position: relative;
  padding: 0.5rem 1.25rem;
  display: flex;
  border-radius: 1.375rem;
  align-items: center;
  min-height: 2.75rem;
  font-size: 0.875rem;
  border: solid 1px #7570c2;
  transition:
    color 0.4s,
    background-color 0.4s;
}
@media (width < 1024px) {
  .chat-checkbox {
    height: 2.625rem;
    padding: 0.5rem 1rem;
  }
}
.chat-checkbox:hover {
  color: #7570c2;
}
.chat-checkbox:has(:checked) {
  background-color: #7570c2;
  color: #fff;
}
.chat-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-radius: inherit;
}
.registration-progress {
  width: 13.125rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  border: solid 1px #7570c2;
  display: flex;
  min-width: 0;
}
.registration-progress:before {
  content: '';
  transition: width 0.4s;
  width: calc(var(--percent) * 1%);
  background-color: #7570c2;
}
.auth-submit {
  min-width: 8.25rem;
  position: relative;
  z-index: 1;
}
.registration-submit {
  margin: 0.25rem auto 0;
}
.auth-footer {
  padding: 2rem 0;
}
@media (width < 1024px) {
  .auth-footer {
    padding: 1.5rem 0;
  }
}
.auth-footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (width < 1024px) {
  .auth-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
}
@media (width < 1024px) {
  .auth-footer .copyright {
    order: 1;
    text-align: center;
  }
}
.auth-nav {
  padding: 0.188rem;
  display: flex;
  align-items: center;
  margin: 0 auto;
  border-radius: 1.5rem;
  border: solid 1px #c7c5e4;
}
.auth-nav-title {
  padding: 0.5rem 1.5rem;
}
.auth {
  margin: 3rem 0 3.75rem;
  flex: auto;
}
@media (width < 1024px) {
  .auth {
    margin: 1.5rem 0 2.5rem;
  }
}
.auth .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
}
.auth .checkbox {
  font-size: 0.875rem;
}
.auth .form-alert {
  margin: 0;
}
.auth-body {
  width: min(25rem, 100%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0 auto;
}
.auth-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.auth-foot {
  display: grid;
  grid-template-columns: 1fr min-content 1fr;
  align-items: start;
  justify-items: end;
}
@media (width < 1024px) {
  .auth-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
@media (width < 1024px) {
  .auth-img {
    order: 1;
    max-width: 100%;
  }
}
.auth-img-body {
  width: 31.25rem;
  aspect-ratio: 1;
  margin: -3rem -4.625rem -5.5rem 0;
  display: flex;
}
@media (width < 1024px) {
  .auth-img-body {
    max-width: 100%;
    margin: -2.5rem auto;
  }
}
.auth-btns {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  align-items: center;
  white-space: nowrap;
}
@media (width < 1024px) {
  .auth-btns {
    gap: 1.5rem;
  }
}
.cookies {
  position: fixed;
  inset: auto 0 0;
  z-index: 66;
  pointer-events: none;
  padding: 0 var(--container-padding) 1rem;
}
@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(55rem, 100%);
  border-radius: 2.5rem;
  background-color: #fff;
  padding: 0.188rem;
  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-size: 0.875rem;
  line-height: 1.3;
}
@media (width >= 1024px) {
  .cookies-body {
    padding: 1rem 1.5rem;
  }
}
.cookies-body .link {
  font-size: inherit;
}
.page-404 .container {
  display: flex;
  align-items: center;
}
@media (width < 1024px) {
  .page-404 .container {
    flex-direction: column;
    align-items: unset;
  }
}
.page-404-body {
  padding: 2.5rem 0;
  flex: auto;
  min-width: 0;
  gap: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (width < 1024px) {
  .page-404-body {
    padding: 1.5rem 0 0;
    gap: 1.5rem;
  }
}
.page-404-title {
  font-size: 29.375rem;
  line-height: 0.66;
  font-weight: 500;
}
@media (width < 1024px) {
  .page-404-title {
    font-size: 13.125rem;
    line-height: 0.8;
  }
}
.page-404-img {
  flex: none;
  width: 49.75rem;
  aspect-ratio: 1;
  margin: 0 -5rem;
}
@media (width < 1024px) {
  .page-404-img {
    max-width: 100%;
    margin: 0 auto;
  }
}
.page-main {
  padding: 2.5rem 0 5rem;
}
@media (width < 1024px) {
  .page-main {
    padding: 1.5rem 0 2.5rem;
  }
}
.contact-us {
  display: flex;
  min-height: 44.125rem;
  position: relative;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}
@media (width < 1024px) {
  .contact-us {
    min-height: 0;
  }
}
@media (width < 1024px) and (width >= 768px) {
  .contact-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 768px) {
  .contact-us {
    flex-direction: column;
    align-items: unset;
  }
}
.contact-us-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width >= 1024px) {
  .contact-us-body {
    max-width: 23.75rem;
  }
}
.contact-us-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-us-company {
  font-size: 1.375rem;
}
.contact-us-desc {
  font-size: 1.125rem;
  line-height: 1.55;
}
.contact-us-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.contact-us-link {
  transition: color 0.4s;
  font-size: 1.5rem;
}
.contact-us-link:hover {
  color: #9794d1;
}
.contact-us-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.875rem;
  border-radius: 1.875rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1.875rem);
  position: relative;
  z-index: 1;
}
@media (width >= 1024px) {
  .contact-us-form {
    width: 25.75rem;
  }
}
.contact-us-form-title {
  font-size: 2.188rem;
  text-align: center;
}
@media (width < 1024px) {
  .contact-us-form-title {
    font-size: 1.75rem;
  }
}
.contact-us-form-submit {
  min-width: 8.25rem;
  margin: 0 auto;
}
@media (width >= 1024px) {
  .contact-us-img {
    position: absolute;
    left: calc(50% - 30rem);
    top: -4rem;
    pointer-events: none;
  }
}
@media (width < 1024px) {
  .contact-us-img {
    max-width: 100%;
    grid-column: 1/-1;
    min-width: 0;
  }
}
.contact-us-img {
  width: min(54.125rem, 100%);
  aspect-ratio: 1;
}
@media (width < 1024px) {
  .contact-us-img {
    margin: -5rem 0 -7.5rem;
  }
}
@media (width < 768px) {
  .contact-us-img {
    margin: -1.5rem 0 -3.75rem;
  }
}
.cabinet-sidebar {
  font-size: 0.875rem;
}
@media (width >= 1024px) {
  .cabinet-sidebar {
    bottom: 0;
    right: auto;
    width: 17.188rem;
    display: flex;
    flex-direction: column;
    padding: 0.625rem 0.313rem 0.625rem 0.625rem;
  }
  .cabinet-sidebar:before {
    display: none;
  }
  .cabinet-sidebar.hide:not(:hover) {
    transform: none;
    opacity: 1;
  }
  .cabinet-sidebar .container {
    height: 100%;
    padding: 1.25rem;
    border-radius: 1.25rem;
    justify-content: unset;
    align-items: unset;
    flex-direction: column;
    min-height: 100%;
    flex: none;
    gap: 1.25rem;
  }
  .cabinet-sidebar .container:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(1.875rem);
  }
  .cabinet-sidebar .logo {
    position: relative;
    z-index: 1;
  }
}
.cabinet-sidebar-body {
  --mask-size: 1.25rem;
  flex: auto;
  margin: -1.25rem;
  padding: 1.25rem;
  overflow: hidden auto;
  --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);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cabinet-nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.cabinet-menu {
  padding-bottom: 0.625rem;
  border-bottom: solid 1px #fff;
}
@media (width < 1024px) {
  .cabinet-menu {
    border-bottom-color: #c7c5e4;
  }
}
.cabinet-menu a {
  display: flex;
  min-height: 2.25rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.625rem;
  color: #505367;
  align-items: center;
  gap: 1.375rem;
  transition:
    color 0.4s,
    background-color 0.4s;
}
.cabinet-menu a:hover {
  color: #7570c2;
}
.cabinet-menu a svg {
  --size: 1rem;
}
.cabinet-menu .active a {
  color: #25283b;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (width < 1024px) {
  .cabinet-menu .active a {
    background-color: #7570c2;
    color: #fff;
  }
}
.cabinet-menu .logout a,
.cabinet-menu .cabinet-menu-red a {
  color: #e55853;
}
.cabinet-menu .logout a:hover,
.cabinet-menu .cabinet-menu-red a:hover {
  color: #ec837f;
}
.cabinet-sidebar-balance {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.cabinet-sidebar-balance-credits {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.cabinet-sidebar-balance-credits-head {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}
.cabinet-sidebar-balance-credits-left {
  flex: none;
}
.cabinet-sidebar-balance-credits-state {
  height: 0.5rem;
  border-radius: 0.5rem;
  background-color: #fff;
  display: flex;
}
@media (width < 1024px) {
  .cabinet-sidebar-balance-credits-state {
    background-color: rgba(117, 112, 194, 0.1);
  }
}
.cabinet-sidebar-balance-credits-state:before {
  content: '';
  margin: -1px 0;
  width: calc(var(--percent) * 1%);
  border-radius: 0.625rem;
  background:
    repeating-linear-gradient(-50deg, rgba(255, 255, 255, 0.2) 0px 0.375rem, transparent 0.375rem 0.75rem),
    linear-gradient(100.26deg, #6b8ed4, #c78fed);
}
.cabinet-sidebar-balance-top-up {
  align-self: flex-start;
}
.cabinet-sidebar-foot {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.cabinet-sidebar-user.select .select-options {
  bottom: 0;
  top: auto;
  border-radius: 1.875rem;
  backdrop-filter: blur(1.875rem);
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
  padding: 1.25rem;
}
@media (width >= 1024px) {
  .cabinet-sidebar-user.select .select-options {
    left: calc(100% + 1.563rem);
    width: 11.25rem;
  }
}
@media (width < 1024px) {
  .cabinet-sidebar-user.select .select-options {
    bottom: calc(100% + 0.625rem);
  }
}
.cabinet-sidebar-user.select .cabinet-menu {
  padding-bottom: 0;
  border: 0;
}
.cabinet-sidebar-user-link {
  display: flex;
  align-items: center;
  padding: 0.188rem;
  border-radius: 1.375rem;
  border: solid 1px #fff;
  gap: 0.625rem;
  transition: border-color 0.4s;
}
@media (width < 1024px) {
  .cabinet-sidebar-user-link {
    border-color: #c7c5e4;
  }
}
.cabinet-sidebar-user-link:hover {
  border-color: #7570c2;
}
.cabinet-sidebar-user-link > svg {
  --size: 0.75rem;
  margin-right: 0.375rem;
}
.cabinet-sidebar-user-link > svg use {
  fill: url(#icon-gradient);
}
.cabinet-sidebar-user-avatar {
  flex: none;
  width: 2.375rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background-color: #7570c2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cabinet-sidebar-user-avatar svg {
  --size: 1rem;
}
.cabinet-sidebar-user-avatar:has(img) {
  background: none;
}
.cabinet-sidebar-user-name {
  padding: 0.375rem 0;
  flex: auto;
  min-width: 0;
}
.cabinet {
  padding: 0.625rem 0.625rem 0.625rem 17.5rem;
  flex: auto;
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) {
  .cabinet {
    padding: 1.5rem var(--container-padding) 2.5rem;
  }
}
.cabinet-main {
  flex: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (width >= 1024px) {
  .cabinet-main {
    padding: 1.25rem;
    border-radius: 1.25rem;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(1.875rem);
  }
}
.cabinet-section {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .cabinet-section:first-child {
    padding-top: 0;
  }
  .cabinet-section:last-child {
    padding-bottom: 0;
  }
}
.cabinet-welcome {
  padding: 1.875rem;
  border-radius: 1.875rem;
  background: #7570c2 url(../img/logo-img.svg) top 50% right -10rem / 35rem 44.438rem no-repeat;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  color: #fff;
  line-height: 1.44;
}
@media (width < 1024px) {
  .cabinet-welcome {
    background: #7570c2;
    flex-direction: column;
    align-items: unset;
  }
}
.cabinet-welcome-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (width >= 1024px) {
  .cabinet-welcome-body {
    max-width: 55%;
  }
}
.cabinet-welcome-title {
  font-size: 2.625rem;
  line-height: 1.2;
  font-weight: 500;
}
@media (width < 1024px) {
  .cabinet-welcome-title {
    font-size: 2rem;
  }
}
.cabinet-welcome-desc {
  color: #cecced;
  font-size: 1.125rem;
}
.cabinet-welcome-foot {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 0.375rem;
}
@media (width < 768px) {
  .cabinet-welcome-foot {
    flex-direction: column;
    gap: 1rem;
  }
}
.cabinet-welcome-btn {
  min-width: 10rem;
}
.cabinet-welcome-info {
  font-size: 0.813rem;
  color: #cecced;
}
@media (width >= 768px) {
  .cabinet-welcome-info {
    align-self: center;
  }
}
.cabinet-welcome-img {
  width: 25.25rem;
  flex: none;
  aspect-ratio: 1;
  margin: -6.5rem -1.25rem -6.5rem 0;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
@media (width < 1024px) {
  .cabinet-welcome-img {
    margin: -1.5rem auto -4rem;
    max-width: 100%;
  }
}
.cabinet-title {
  font-size: 2.188rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (width < 1024px) {
  .cabinet-title {
    font-size: 1.75rem;
  }
}
.cabinet-section-title {
  font-size: 2.188rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 1.875rem;
}
@media (width < 1024px) {
  .cabinet-section-title {
    font-size: 1.75rem;
  }
}
@media (width < 1024px) {
  .cabinet-section-title {
    margin: 0;
  }
}
.cabinet-history {
  display: grid;
  gap: 1.25rem;
}
@media (width >= 1024px) {
  .cabinet-history {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.cabinet-history-item {
  padding: 1.875rem;
  border-radius: 1.875rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1.875rem);
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
  box-shadow: 0px 0px 1.25rem 0px #d6d4f5;
}
.cabinet-history-item-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}
.cabinet-item-title {
  font-size: 1.5rem;
  line-height: 1.2;
}
.cabinet-history-item-state {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.cabinet-history-item-state svg {
  --size: 1.875rem;
}
.cabinet-history-item-state use {
  fill: url(#icon-gradient);
}
.cabinet-history-item-state--process {
  color: #f08e2b;
}
.cabinet-history-item-state--completed {
  color: #3ac48d;
  transition: color 0.4s;
}
.cabinet-history-item-state--completed:hover {
  color: #2e9d71;
}
.cabinet-history-item-body {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: auto;
}
.cabinet-history-item-label {
  padding: 0.375rem 0.75rem;
  border-radius: 6.188rem;
  font-size: 0.938rem;
  color: #fff;
  background-color: #7570c2;
  min-height: 2rem;
  display: flex;
  align-items: center;
}
.cabinet-history-item-date {
  text-align: right;
}
.services-slider {
  margin: 0;
  padding-bottom: 1.25rem;
}
@media (width >= 1024px) {
  .services-slider {
    margin: 0 -1.25rem;
    padding: 0 1.25rem 1.25rem;
  }
}
@media (width < 1024px) {
  .services-slider {
    overflow: visible;
    width: 100%;
  }
}
.services-item {
  border-radius: 1.875rem;
  position: relative;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  height: auto;
  line-height: 1.42;
}
.services-item:hover .services-item-start-icon {
  transform: scale(1.2);
}
.services-item:before {
  content: '';
  position: absolute;
  inset: 0 2.5rem -1.25rem;
  border-radius: 1.875rem;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  z-index: -1;
}
.services-item--full .tools-cta-gallery {
  flex: none;
  pointer-events: none;
}
.services-item-main {
  padding: 1.875rem;
  background-color: #7570c2;
  color: #fff;
  border-radius: inherit;
  position: relative;
  z-index: 1;
  flex: auto;
  display: flex;
  gap: 1.875rem;
}
@media (width < 480px) {
  .services-item-main {
    gap: 1.25rem;
    padding: 1.25rem;
  }
}
.services-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
  flex: auto;
  min-width: 0;
}
.services-item-head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.services-item-desc {
  color: #cecced;
  font-size: 0.875rem;
}
.services-item-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: auto;
  gap: 1.5rem;
}
.services-item-start {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.services-item-start-icon {
  flex: none;
  width: 2.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background-color: #fff;
  transition: transform 0.4s;
}
.services-item-start-icon svg {
  --size: 1rem;
}
.services-item-start-icon svg use {
  fill: url(#icon-gradient);
}
.services-item-img {
  width: 7.5rem;
  aspect-ratio: 1;
  margin: 0 -4.5rem -4.5rem -1.25rem;
  position: relative;
  z-index: 1;
}
.services-item-img:only-child {
  margin-left: auto;
}
@media (width < 480px) {
  .services-item-img {
    margin-right: -3.5rem;
  }
}
.services-item-info {
  flex: none;
  width: 9.25rem;
  margin: -1.875rem -1.875rem -1.875rem 0;
  border-radius: 1.875rem;
  padding: 1.875rem;
  background-color: #8580ce;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  text-align: right;
}
@media (width < 480px) {
  .services-item-info {
    width: 8.25rem;
    padding: 1.25rem;
    margin: -1.25rem -1.25rem -1.25rem 0;
  }
}
.services-item-info-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.services-item-info-block svg {
  --size: 1.625rem;
  color: #cecced;
}
.services-item-info-block:has(.services-item-info-block-text:empty) {
  display: none;
}
.services-item-alert {
  font-size: 0.75rem;
  color: #cecced;
}
.services-tools {
  display: grid;
  gap: 2.5rem 1.25rem;
}
@media (width >= 1024px) {
  .services-tools {
    grid-template-columns: 1fr 1fr;
  }
  .services-tools .services-item-img {
    width: 11.25rem;
  }
}
.pagination {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.pagination-btn {
  --height: 2.75rem;
  min-width: 6.625rem;
  font-size: 1rem;
  padding: 0.25rem 0.75rem;
}
.pagination-btn.disabled {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1.875rem);
  color: #c9ccdc;
  opacity: 1;
}
.pagination-links {
  display: flex;
  gap: 1.25rem;
}
@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;
  --gradient-start: #6b8ed4;
  --gradient-end: #c78fed;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  color: transparent;
  transition:
    --gradient-start 0.4s,
    --gradient-end 0.4s;
  box-shadow: 0px 0px 1.25rem 0px #d6d4f5;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1.875rem);
  border-radius: 50%;
}
.pagination-links > *.active {
  color: #25283b;
  pointer-events: none;
}
@media (width < 1024px) {
  .pagination-links > * {
    display: none;
  }
}
.pagination-links a {
  transition: color 0.4s;
}
.pagination-links a:hover {
  color: #7570c2;
}
.services-list {
  display: grid;
  gap: 2.5rem 1.25rem;
}
@media (width >= 1024px) {
  .services-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.modal-start-service .modal-body {
  width: 25.5rem;
  border-radius: 1.875rem;
  padding: 1.875rem;
  background-color: #7570c2;
  flex-direction: row;
  color: #fff;
}
@media (width < 480px) {
  .modal-start-service .modal-body {
    padding: 1.25rem;
  }
}
.modal-start-service--low-credits .modal-body {
  background-color: #e98557;
}
.modal-start-service--low-credits .services-item-info {
  background-color: #ec956d;
}
.modal-start-service--low-credits .modal-start-service-btn {
  color: #e98557;
}
.modal-start-service--low-credits .modal-start-service-btn:hover {
  color: #ec956d;
}
.modal-start-service--low-credits .services-item-alert {
  color: #ffcfb8;
}
.modal-start-service--low-credits .services-item-price svg,
.modal-start-service--low-credits .services-item-time svg {
  color: #ffcfb8;
}
.modal-start-service-body {
  flex: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.modal-start-service-btns {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.modal-start-service-cancel {
  transition: opacity 0.4s;
}
.modal-start-service-cancel:hover {
  opacity: 0.7;
}
.chat-actions {
  position: fixed;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 669;
}
@media (width < 1024px) {
  .chat-actions {
    top: calc(0.5 * var(--header-height) - 0.75rem);
    right: var(--container-padding);
  }
}
.chat-actions .select-toggle svg {
  --size: 1.5rem;
}
.chat-actions .select-options {
  top: calc(100% + 0.313rem);
  right: 0;
  left: auto;
  border-radius: 0.938rem;
  white-space: nowrap;
  padding: 0.625rem;
}
.chat-actions .cabinet-menu {
  padding: 0;
  border: 0;
}
.chat-actions .cabinet-menu a {
  gap: 0.75rem;
}
body:has(.chat-actions) .header-nav-toggle {
  margin-right: 3rem;
}
.cabinet-chat {
  --container-width: 63.125rem;
  bottom: 5.625rem;
}
@media (width < 1024px) {
  .cabinet-chat {
    bottom: 6.875rem;
  }
}
@media (width < 1024px) {
  .cabinet:has(.cabinet-chat) {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.chat-service {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chat-service-img {
  width: 7.5rem;
  aspect-ratio: 1;
  margin: 0 auto;
}
.chat-service-head {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  text-align: center;
}
.chat-service-desc {
  font-size: 1.125rem;
  color: #505367;
  max-width: 43.75rem;
  margin: 0 auto;
}
.chat-service-links {
  --gap: 1.25rem;
  --columns: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}
@media (width < 1024px) {
  .chat-service-links {
    --columns: 3;
  }
}
@media (width < 768px) {
  .chat-service-links {
    --columns: 2;
  }
}
@media (width >= 1024px) {
  .chat-service-links--large {
    --columns: 5;
  }
}
.chat-service-link {
  width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
  padding: 1rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.3);
  color: #25283b;
  border-radius: 0.938rem;
  backdrop-filter: blur(1.875rem);
  transition: color 0.4s;
  display: flex;
  align-items: center;
  min-height: 3.375rem;
}
.chat-service-link:hover {
  color: #7570c2;
}
.cabinet-chat-form {
  position: fixed;
  inset: auto 0 2.5rem 17.188rem;
  z-index: 600;
  --container-width: 63.125rem;
  padding: 0;
}
@media (width < 1024px) {
  .cabinet-chat-form {
    left: 0;
    bottom: 1.25rem;
  }
}
.cabinet-chat-form .chat-input {
  padding-right: 0.5rem;
  border: 0;
  height: 3.625rem;
  border-radius: 3.625rem 0 0 3.625rem;
}
@media (width < 768px) {
  .cabinet-chat-form .chat-input {
    height: 2.5rem;
    border-radius: 1rem;
    padding: 0 0.5rem;
  }
}
.cabinet-chat-form .chat-form-body {
  display: flex;
  height: 3.75rem;
  border-radius: 3.75rem;
  background-color: #fff;
  border: solid 1px #fff;
  transition: border-color 0.4s;
}
.cabinet-chat-form .chat-form-body:has(.chat-input:focus) {
  border-color: #7570c2;
}
@media (width < 768px) {
  .cabinet-chat-form .chat-form-body {
    flex-direction: column;
    height: 5.625rem;
    border-radius: 1.25rem;
    padding: 0.188rem;
  }
}
.cabinet-chat-form .input-block {
  flex: auto;
  min-width: 0;
}
.chat-form-btns {
  margin: 0.188rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (width < 768px) {
  .chat-form-btns {
    margin: 0;
  }
}
.chat-form-btns .chat-submit {
  position: static;
}
@media (width < 768px) {
  .chat-form-btns .chat-submit {
    width: 2.5rem;
  }
}
.chat-form-timer {
  min-width: 4rem;
  height: 1.875rem;
  top: calc(50% - 0.938rem);
  border-radius: 0.5rem;
  color: #928fbe;
  background-color: #d5d3ee;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-transform: uppercase;
  margin-right: auto;
}
.chat-form-voice {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.chat-form-voice .chat-submit svg {
  --size: 1.75rem;
}
.chat-form-voice-icon {
  display: flex;
}
.chat-form-voice-icon svg {
  --size: 1.25rem;
}
.chat-form-voice-icon use {
  fill: url(#icon-gradient);
}
.chat-answer {
  color: #25283b;
  max-width: 50rem;
}
.personal {
  display: flex;
  gap: 0.625rem;
  flex: auto;
  min-height: 0;
}
@media (width < 1024px) {
  .personal {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.personal-main {
  position: relative;
}
.personal-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width >= 1024px) {
  .personal-body {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden auto;
    padding: 1.5rem 3rem 3rem;
    --mask-size: 1.5rem;
    --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);
  }
}
.personal-body .textarea {
  height: 6.875rem;
}
.personal-title {
  margin-bottom: -0.25rem;
}
.personal-checkboxes {
  gap: 1rem;
}
.personal-checkboxes + .personal-checkboxes {
  padding-top: 1.5rem;
  border-top: solid 1px rgba(255, 255, 255, 0.8);
}
.personal-checkbox-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  place-items: start;
  gap: 1.25rem;
}
@media (width < 1024px) {
  .personal-checkbox-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (width < 768px) {
  .personal-checkbox-list {
    grid-template-columns: 1fr 1fr;
  }
}
.personal-summary {
  display: flex;
  flex-direction: column;
  border-radius: 1.875rem;
  overflow: hidden;
  will-change: transform;
  background-color: #7570c2;
  color: #fff;
}
@media (width >= 1024px) {
  .personal-summary {
    flex: none;
    width: 32.5rem;
  }
}
.personal-summary-main {
  flex: auto;
  position: relative;
}
.personal-summary-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.875rem;
}
@media (width >= 1024px) {
  .personal-summary-body {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden auto;
    --mask-size: 1.5rem;
    --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);
    gap: 2rem;
    padding: 1.5rem 3rem 2.5rem;
  }
  .personal-summary-body::-webkit-scrollbar {
    width: 0.375rem;
    height: 0.375rem;
  }
  .personal-summary-body::-webkit-scrollbar-thumb {
    background-color: #cecced;
    border-radius: 0.375rem;
    background-clip: padding-box;
  }
  .personal-summary-body::-webkit-scrollbar-track {
    background: transparent;
    border: solid 1px transparent;
    border-radius: 0.375rem;
  }
}
.personal-summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.personal-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.personal-summary-item--required:has(.personal-summary-item-value:empty) .personal-summary-item-icon {
  background-color: #e55853;
  color: #fff;
}
.personal-summary-item--required:has(.personal-summary-item-value:empty) .personal-summary-item-icon svg {
  opacity: 0;
  transform: scale(0);
}
.personal-summary-item--required:has(.personal-summary-item-value:empty) .personal-summary-item-icon:before {
  opacity: 1;
  transform: scale(1);
}
.personal-summary-item-title {
  min-height: 1.75rem;
  display: flex;
  align-items: center;
  color: #cecced;
}
.personal-summary-item-body {
  flex: auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.personal-summary-item-output {
  display: flex;
  align-items: flex-start;
  gap: 0.938rem;
}
.personal-summary-item-value {
  display: flex;
  align-items: flex-end;
  flex: auto;
  min-width: 0;
  gap: 0.625rem;
  align-self: center;
}
.personal-summary-item-value:before {
  content: '';
  border-top: dashed 1px rgba(255, 255, 255, 0.2);
  min-width: 1.25rem;
  flex: auto;
  margin-bottom: 0.25rem;
}
.personal-summary-item-value:empty:after {
  content: attr(data-placeholder);
  color: #cecced;
  min-height: 1lh;
}
.personal-summary-item-icon {
  flex: none;
  width: 1.75rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background-color: #cecced;
  color: #7570c2;
  border-radius: 0.5rem;
  transition:
    background-color 0.4s,
    color 0.4s;
  position: relative;
}
.personal-summary-item-icon:before {
  content: '!';
  transition:
    opacity 0.4s,
    transform 0.4s;
  opacity: 0;
  transform: scale(0);
}
.personal-summary-item-icon svg {
  --size: 1.25rem;
  transition:
    opacity 0.4s,
    transform 0.4s;
  position: absolute;
  left: calc(50% - 0.5 * var(--size));
  top: calc(50% - 0.5 * var(--size));
}
.personal-summary-foot {
  flex: none;
  border-radius: 1.875rem;
  padding: 2.5rem 3rem;
  background-color: #8580ce;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (width < 1024px) {
  .personal-summary-foot {
    gap: 1.5rem;
    padding: 1.875rem;
  }
}
.personal-risk {
  border: solid 0.125rem #cecced;
  background-color: #7570c2;
  border-radius: 1.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
}
.personal-risk-title {
  text-align: center;
}
.personal-risk-radios {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.personal-risk-radios .radio > i {
  border-color: #cecced;
}
.personal-risk-radios .radio > i:before {
  background-color: #cecced;
}
.personal-summary-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  align-items: center;
}
@media (width < 768px) {
  .personal-summary-btns {
    flex-direction: column;
  }
}
.personal-summary-credits {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
}
@media (width >= 768px) {
  .personal-summary-credits {
    margin-right: auto;
  }
}
.personal-summary-credits svg {
  color: #cecced;
}
@media (width < 480px) {
  .personal-summary-btn {
    width: 100%;
  }
}
.modal-personal .modal-body {
  padding: 8.875rem 5.5rem;
  color: #cecced;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
  background-color: #7570c2;
}
@media (width < 1024px) {
  .modal-personal .modal-body {
    padding: 3rem 1.875rem;
  }
}
.modal-personal-top-up .modal-body {
  background-color: #e98557;
  color: #ffcfb8;
}
.modal-personal-img {
  width: 9.375rem;
  aspect-ratio: 1;
  flex: none;
  display: flex;
}
.modal-personal-img svg {
  --size: 9.375rem;
}
.modal-personal-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-personal-title {
  color: #fff;
}
.modal-personal-img {
  width: 12.5rem;
  aspect-ratio: 1;
  margin: -2.5rem 0;
}
.dream {
  margin: 5rem auto;
  width: min(40rem, 100%);
  border-radius: 3.125rem;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(1.875rem);
  display: flex;
  flex-direction: column;
}
@media (width < 1024px) {
  .dream {
    margin: 1.5rem auto;
  }
}
.dream-body {
  padding: 1.5rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: auto;
  min-height: 0;
}
@media (width < 1024px) {
  .dream-body {
    padding: 1.5rem;
  }
}
.dream-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}
.dream-img {
  flex: none;
  width: 12.5rem;
  aspect-ratio: 1;
  margin: -6.75rem -1.5rem -3rem 0;
  pointer-events: none;
}
.dream-inputs {
  position: relative;
  z-index: 1;
}
.dream-inputs .textarea {
  height: 11.875rem;
}
.dream-foot {
  border-radius: 1.875rem;
  background-color: #7570c2;
  color: #fff;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  flex: none;
  margin-top: auto;
}
@media (width < 1024px) {
  .dream-foot {
    padding: 1.5rem;
  }
}
@media (width < 768px) {
  .dream-foot {
    flex-direction: column;
  }
}
.dream-foot--orange {
  background-color: #e98557;
}
.dream-foot--orange .dream-credits svg {
  color: #ffcfb8;
}
.dream-credits {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
}
.dream-credits svg {
  color: #cecced;
}
.dream-btn {
  min-width: 9rem;
}
@media (width < 480px) {
  .dream-btn {
    width: 100%;
  }
}
.dream-result {
  margin-bottom: 0;
  background-color: #7570c2;
  color: #fff;
  min-height: 0;
}
.dream-result .dream-foot {
  background-color: #8580ce;
}
@media (width >= 1024px) {
  .cabinet:has(.dream-result) {
    height: 100vh;
    min-height: 34.25rem;
  }
}
.dream-foot-info {
  color: #cecced;
}
@media (width >= 1024px) {
  .dream-foot-info {
    max-width: 16.125rem;
  }
}
.dream-foot-info a {
  font-weight: 700;
  color: inherit;
  transition: color 0.4s;
}
.dream-foot-info a:hover {
  color: #fff;
}
@media (width >= 1024px) {
  .dream-result-body {
    overflow: hidden auto;
    padding: 1.5rem 3rem;
    --mask-size: 1.5rem;
    --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);
    margin: 0 -3rem -3rem;
  }
  .dream-result-body::-webkit-scrollbar {
    width: 0.375rem;
    height: 0.375rem;
  }
  .dream-result-body::-webkit-scrollbar-thumb {
    background-color: #cecced;
    border-radius: 0.375rem;
    background-clip: padding-box;
  }
  .dream-result-body::-webkit-scrollbar-track {
    background: transparent;
    border: solid 1px transparent;
    border-radius: 0.375rem;
  }
}
.dream-result-head {
  padding-bottom: 0.875rem;
  margin-bottom: 0.875rem;
  border-bottom: solid 1px #cecced;
  color: #cecced;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.dream-result-title {
  font-size: 1.125rem;
  font-weight: 700;
}
.dream-result-content {
  color: inherit;
}
.services-item--positive {
  margin-bottom: 4.5rem;
}
.services-item--positive .services-item-foot {
  height: 0;
  align-items: center;
}
@media (width < 768px) {
  .services-item--positive .services-item-main {
    flex-direction: column;
  }
  .services-item--positive .services-item-img {
    position: absolute;
    right: 0;
    bottom: -4.5rem;
    margin: 0;
  }
  .services-item--positive .services-item-info {
    flex-direction: row;
    width: auto;
    margin: 0 -1.875rem -1.875rem;
    padding-right: 7.5rem;
  }
}
@media (width < 768px) and (width < 480px) {
  .services-item--positive .services-item-info {
    margin: 0 -1.25rem -1.25rem;
  }
}
.positive-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 8.875rem);
  gap: 1.25rem;
}
@media (width < 1024px) {
  .positive-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (width < 768px) {
  .positive-list {
    grid-template-columns: 1fr 1fr;
  }
}
.positive-item {
  padding: 1.5rem;
  min-height: 9.375rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #8580ce;
  border-radius: 1.25rem;
  color: #fff;
  transition: background-color 0.4s;
  margin: 0;
}
.positive-item:before {
  display: none;
}
.positive-item:hover {
  background-color: #8c87d1;
}
.positive-item-icon {
  color: #cecced;
}
.positive-item-icon svg {
  --size: 1.75rem;
}
.cabinet-section-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}
@media (width < 768px) {
  .cabinet-section-head {
    flex-direction: column;
    align-items: unset;
  }
}
.mood-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mood-nav-btn {
  flex: none;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background-color 0.4s;
}
.mood-nav-btn:hover {
  background-color: #cecced;
}
.mood-nav-btn svg {
  --size: 1rem;
}
.mood-nav-btn use {
  fill: url(#icon-gradient);
}
.mood-calendar {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (width < 768px) {
  .mood-calendar {
    gap: 0.25rem;
  }
}
.mood-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.625rem;
}
@media (width < 768px) {
  .mood-calendar-grid {
    gap: 0.25rem;
  }
}
.mood-calendar-day {
  min-height: 2.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 1.25rem;
  background-color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #505367;
}
@media (width < 768px) {
  .mood-calendar-day {
    font-size: 0.75rem;
    padding: 0.5rem;
    border-radius: 1rem;
    justify-content: center;
  }
}
.mood-calendar-date {
  min-height: 6.25rem;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  position: relative;
  min-width: 0;
  pointer-events: none;
}
.mood-calendar-date[data-modal-open],
.mood-calendar-date[class*='mood-state--'] {
  pointer-events: auto;
}
@media (width < 1024px) {
  .mood-calendar-date {
    padding: 1rem;
  }
}
@media (width < 768px) {
  .mood-calendar-date {
    padding: 0.5rem;
    border-radius: 1rem;
    min-height: 5rem;
  }
}
.mood-calendar-date:empty {
  visibility: hidden;
}
.mood-calendar-date-day {
  margin-left: auto;
  color: #505367;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.mood-calendar-date-state {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  justify-content: space-between;
}
@media (width < 1024px) {
  .mood-calendar-date-state {
    flex-direction: column;
    align-items: flex-start;
  }
}
.mood-calendar-date-state-img {
  flex: none;
  width: 3.125rem;
  margin: -0.375rem -0.625rem;
}
@media (width < 1024px) {
  .mood-calendar-date-state-img {
    width: 2.5rem;
    margin: -2rem -0.375rem -0.5rem;
  }
}
@media (width < 768px) {
  .mood-calendar-date-state-img {
    margin: -0.5rem -1rem;
    align-self: center;
  }
}
.mood-calendar-date-state-title {
  text-transform: capitalize;
}
@media (width < 1024px) {
  .mood-calendar-date-state-title {
    font-size: 0.875rem;
  }
}
@media (width < 768px) {
  .mood-calendar-date-state-title {
    font-size: 0.75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }
}
.mood-state--light {
  background-color: #d5ecff;
  color: #77add7;
}
.mood-state--happy {
  background-color: #f9efdf;
  color: #e2a933;
}
.mood-state--calm {
  background-color: #e8eeff;
  color: #9aa8be;
}
.mood-state--sad {
  background-color: #e5d0ff;
  color: #6e34ae;
}
.mood-state--anxious {
  background: linear-gradient(180deg, #d8f7ff 0%, #ffeec5 100%);
  color: #5cc4e2;
}
.mood-state--angry {
  background-color: #ffc4c8;
  color: #df3c47;
}
.mood-state--tired {
  background: linear-gradient(180deg, #fff1ca 0%, #ebd3d0 100%);
  color: #fa4e10;
}
.mood-state--thoughtful {
  background-color: #ffeadb;
  color: #e29033;
}
.mood-state--hopeful {
  background-color: #f3fed1;
  color: #dfcc38;
}
.mood-state--lonely {
  background-color: #ceecff;
  color: #4a9fd7;
}
.mood-calendar-date-add {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 0;
  min-height: 0;
}
@media (width >= 768px) {
  .mood-calendar-date-add {
    left: calc(50% - 1.375rem);
    top: calc(50% - 1.375rem);
    width: 2.75rem;
  }
}
@media (width < 768px) {
  .mood-calendar-date-add {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }
}
.mood-stats {
  padding: 1.25rem 1.875rem 1.875rem;
  border-radius: 1.25rem;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (width < 1024px) {
  .mood-stats {
    padding: 1.5rem;
  }
}
@media (width < 768px) {
  .mood-stats {
    gap: 1.25rem;
  }
}
.mood-stats-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
@media (width < 768px) {
  .mood-stats-head {
    flex-direction: column;
    align-items: unset;
  }
}
.mood-stats-title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
}
.mood-stats-desc {
  color: #505367;
  text-align: right;
}
@media (width < 768px) {
  .mood-stats-desc {
    text-align: left;
  }
  .mood-stats-desc br {
    display: none;
  }
}
.mood-stats-body {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (width < 1024px) {
  .mood-stats-body {
    flex-direction: column;
    align-items: unset;
  }
}
.mood-stats-result {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: none;
  border-radius: 1.25rem;
}
@media (width >= 768px) {
  .mood-stats-result {
    width: 13.125rem;
  }
}
.mood-stats-result-img {
  flex: none;
  width: 6.563rem;
  margin: -1rem 0 -1rem -0.375rem;
}
.mood-stats-result-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  justify-content: space-between;
  text-align: right;
}
.mood-stats-result-title {
  font-size: 0.813rem;
  line-height: 1;
  color: #505367;
}
.mood-stats-result-desc {
  text-transform: capitalize;
}
.mood-stats-items {
  flex: auto;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.625rem;
}
@media (width < 1024px) {
  .mood-stats-items {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (width < 768px) {
  .mood-stats-items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mood-stats-item {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1.25rem;
}
.mood-stats-item-img {
  width: 3.125rem;
  aspect-ratio: 1;
  flex: none;
  gap: 0.25rem;
}
.mood-stats-item-number {
  color: #505367;
  padding-right: 0.5rem;
}
.modal-mood .modal-body {
  border-radius: 1.875rem;
  width: 21.875rem;
  gap: 0;
  padding: 2.5rem 3rem;
  min-height: 31.875rem;
}
.modal-mood-tab {
  border-radius: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.modal-mood-tab.active {
  flex: auto;
}
.modal-mood-slider {
  width: 100%;
}
.modal-mood-title {
  text-align: center;
  font-size: 1.375rem;
  color: #25283b;
}
.modal-mood-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
}
.modal-mood-slide-img {
  width: min(12.5rem, 100%);
  aspect-ratio: 1;
}
.modal-mood-slide-title {
  text-transform: capitalize;
  font-size: 1.375rem;
}
.modal-mood-range {
  margin: 0.75rem 0;
}
.modal-mood-btns {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
.modal-mood-btn {
  min-width: 6.25rem;
}
.modal-mood-text {
  position: relative;
}
.modal-mood-text textarea {
  padding-bottom: 1.875rem;
}
.form-block-maxlength {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  pointer-events: none;
  font-size: 0.688rem;
  color: #929397;
  white-space: nowrap;
}
.modal-mood-prev-btn {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.813rem;
  --gradient-start: #6b8ed4;
  --gradient-end: #c78fed;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  color: transparent;
  transition:
    --gradient-start 0.4s,
    --gradient-end 0.4s;
  width: fit-content;
}
.modal-mood-prev-btn svg {
  --size: 1rem;
}
.modal-mood-prev-btn use {
  fill: url(#icon-gradient);
}
.modal-mood-tags {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
}
.modal-mood-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.modal-mood-section + .modal-mood-section {
  margin-top: 1.5rem;
}
.modal-mood-sleep {
  display: flex;
  position: relative;
}
.modal-mood-sleep:before {
  content: '';
  position: absolute;
  inset: 0.313rem 0 auto;
  border-radius: 0.25rem;
  height: 0.938rem;
  background-color: #fff;
}
.modal-mood-sleep .radio-btn {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  border-radius: 0;
  background: none !important;
  font-size: 0.813rem;
}
.modal-mood-sleep .radio-btn:before {
  content: '';
  height: 1.625rem;
  border-radius: 0.625rem;
  background-color: var(--color);
  width: 100%;
  opacity: 0;
  transition: opacity 0.4s;
}
.modal-mood-sleep .radio-btn:has(:checked) {
  color: var(--color);
}
.modal-mood-sleep .radio-btn:has(:checked):before {
  opacity: 1;
}
.modal-mood-energy-range {
  height: 1rem;
  background: linear-gradient(
    to right,
    #e11f27,
    #e11f27 16.6667%,
    #ee6423 16.6667%,
    #ee6423 33.3333%,
    #f6db10 33.3333%,
    #f6db10 50%,
    #d3de2c 50%,
    #d3de2c 66.6667%,
    #8bc741 66.6667%,
    #8bc741 83.3333%,
    #3cb34d 83.3333%,
    #3cb34d
  );
}
.modal-mood-energy-range .range-slider__range {
  opacity: 0;
}
.modal-mood-energy-range .range-slider__thumb[data-upper] {
  width: 16.666%;
  height: 100%;
  border-radius: 0;
  background: none;
}
.modal-mood-energy-range .range-slider__thumb[data-upper]:before {
  display: none;
}
.modal-mood-energy-range .range-slider__thumb[data-upper]:after {
  content: '';
  position: absolute;
  width: 1.375rem;
  height: 1.25rem;
  top: 0.625rem;
  left: calc(50% - 0.688rem);
  background-image: url('../img/mood-energy-range.svg');
  background-size: 100% 100%;
  filter: drop-shadow(0px 0 1.25rem #d6d4f5);
}
.modal-mood-day .modal-body {
  gap: 1.25rem;
}
.modal-mood-day .modal-mood-tags {
  pointer-events: none;
}
.modal-mood-img {
  margin: -1rem auto;
  width: 10rem;
  aspect-ratio: 1;
}
.modal-mood-state {
  font-size: 1.375rem;
  text-align: center;
  text-transform: capitalize;
}
.modal-mood-desc {
  color: #25283b;
  text-align: center;
  margin-top: -0.5rem;
}
.modal-mood-info {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: solid 1px #fff;
}
.modal-mood-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  text-align: center;
}
.test-form {
  gap: 1.5rem;
}
.test-title {
  text-align: center;
}
.test-question {
  margin: auto;
  width: min(50.625rem, 100%);
  position: relative;
  padding-bottom: 1.25rem;
}
.test-question:before {
  content: '';
  position: absolute;
  inset: 1.875rem 2.5rem 0;
  border-radius: 1.875rem;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  z-index: -1;
}
.test-question-body {
  border-radius: 1.875rem;
  background-color: #fff;
  padding: 1.25rem 1.25rem 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 10rem;
}
.test-question-count {
  margin-top: -0.625rem;
  text-align: right;
  font-size: 0.75rem;
  color: #505367;
  line-height: 1;
}
.test-question-count span {
  font-size: 1.25rem;
}
.test-question-text {
  margin: auto;
  text-align: center;
  font-size: 1.5rem;
}
.test-answers {
  margin: auto auto 0;
  display: flex;
  width: fit-content;
  padding: 0.188rem;
  border-radius: 2rem;
  background-color: #fff;
  gap: 0.188rem;
  justify-content: center;
}
@media (width < 1024px) {
  .test-answers {
    flex-wrap: wrap;
  }
}
@media (width < 480px) {
  .test-answers {
    flex-direction: column;
    width: 100%;
  }
}
.test-answers:not(:has(:checked)):has(.test-answer:hover) .test-answer:not(:hover) {
  opacity: 0.8;
}
.test-answers:has(:checked) .test-answer:not(:has(:checked)) {
  opacity: 0.4;
}
.test-answers + .test-answers {
  margin-top: 0;
}
.test-answer {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 6.188rem;
  min-height: 3.75rem;
  justify-content: center;
  min-width: 9.625rem;
  color: #fff;
  transition: opacity 0.4s;
  position: relative;
}
.test-answer input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: 1;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0;
}
.test-results {
  gap: 0.875rem;
}
.test-results-title {
  text-align: center;
  margin: -0.5rem auto 0;
  font-size: 1.5rem;
  width: fit-content;
  --gradient-start: #6b8ed4;
  --gradient-end: #c78fed;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  color: transparent;
  transition:
    --gradient-start 0.4s,
    --gradient-end 0.4s;
}
.test-results-main {
  padding-bottom: 1.25rem;
  position: relative;
  width: min(73.125rem, 100%);
  margin: 0 auto;
}
.test-results-main:before {
  content: '';
  position: absolute;
  inset: 1.875rem 2.5rem 0;
  border-radius: 1.875rem;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  z-index: -1;
}
.test-results-body {
  position: relative;
  z-index: 1;
  padding: 1.875rem;
  border-radius: 1.875rem;
  background-color: #7570c2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .test-results-body {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
}
.test-results-nav {
  padding: 0.313rem;
  border-radius: 2rem;
  background-color: #8580ce;
  display: flex;
}
@media (width < 480px) {
  .test-results-nav {
    flex-direction: column;
  }
}
@media (width >= 1024px) {
  .test-results-nav {
    margin: 0 auto;
  }
}
.test-results-nav-btn {
  min-width: 12rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  color: #cecced;
  border-radius: 6.188rem;
  text-align: center;
  transition:
    color 0.4s,
    background-color 0.4s;
}
@media (width < 1024px) {
  .test-results-nav-btn {
    min-width: 0;
    flex: auto;
  }
}
.test-results-nav-btn:hover {
  color: #fff;
}
.test-results-nav-btn.active {
  color: #7570c2;
  background-color: #cecced;
}
.test-result-tab {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.test-result-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.test-result-overview {
  width: fit-content;
  min-width: 12.5rem;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  align-items: center;
  padding: 2.25rem;
  text-align: center;
  margin-bottom: 0.125rem;
}
.test-result-overview-icon {
  position: absolute;
  inset: 0;
  display: flex;
}
.test-result-overview-icon svg {
  width: 100%;
  height: 100%;
}
.test-result-overview-icon use {
  fill: url(#icon-gradient);
}
.test-result-overview-title {
  font-size: 0.938rem;
  position: relative;
}
.test-result-overview-title:last-child:empty:before {
  content: '-';
  visibility: hidden;
}
.test-result-overview-desc {
  font-size: 1.5rem;
  position: relative;
  margin: auto 0;
}
.test-result-overview-points {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.test-result-overview-score {
  font-size: 1.25rem;
}
.test-result-title {
  color: #cecced;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.625;
}
.test-result-content {
  width: min(47.25rem, 100%);
  margin: 0 auto;
  text-align: center;
  line-height: 1.625;
}
.test-result-summary {
  width: min(25rem, 100%);
  margin: 0 auto;
}
.test-result-summary:has(td:nth-child(3)) {
  width: min(31.25rem, 100%);
}
.test-result-summary:has(td:nth-child(4)) {
  width: min(41.75rem, 100%);
}
.test-result-summary td {
  padding: 0.5rem 1rem 0.5rem 0;
  height: 2.5rem;
}
.test-result-summary td:last-child {
  padding-right: 0;
  text-align: right;
}
.test-result-summary thead {
  font-weight: 700;
}
.test-result-summary thead td {
  border-bottom: solid 1px #8580ce;
}
.test-result-cards {
  --gap: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  justify-content: center;
}
@media (width < 1024px) {
  .test-result-cards {
    flex-direction: column;
  }
}
.test-result-card {
  padding: 1.875rem;
  border-radius: 1.875rem;
  background-color: #8580ce;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.375;
  width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
}
@media (width < 1024px) {
  .test-result-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    width: auto;
  }
}
.test-result-card-title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}
.test-result-card-title--left {
  text-align: left;
}
.test-result-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.test-result-stats-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.test-result-stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.test-result-stat-chart {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.test-result-stat-chart-progress {
  flex: auto;
  min-width: 0;
  height: 0.75rem;
  background-color: #cecced;
  border-radius: 0.625rem;
}
.test-result-stat-chart-number {
  flex: none;
  white-space: nowrap;
}
.test-result-stats-score {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 700;
}
.test-result-stats-score-title {
  font-size: 1.25rem;
}
.test-result-stats-score-foot {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.test-result-stats-score-desc {
  font-size: 1.125rem;
}
.test-result-stats-desc {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.test-result-stats-desc:not(:first-child) {
  padding-top: 1.25rem;
  border-top: solid 1px #9b96da;
}
.test-result-stats-desc + .test-result-stats-desc {
  padding-top: 0;
  border-top: 0;
}
.test-result-stats-desc-title {
  font-weight: 700;
  color: #cecced;
  font-size: 1.125rem;
}
.test-result-card-content {
  --content-gap: 0.5rem;
}
.test-result-section-title {
  font-size: 1.5rem;
  text-align: center;
}
.test-result-best {
  column-gap: 1.25rem;
  width: min(34.625rem, 100%);
  margin: 0 auto;
  line-height: 1.624;
  text-align: center;
}
@media (width >= 480px) {
  .test-result-best {
    columns: 2;
  }
}
.test-result-best-item {
  break-inside: avoid;
}
.test-result-styles {
  width: min(35.625rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  padding: 0.5rem 0;
}
@media (width >= 1024px) {
  .test-result-styles {
    grid-template-columns: 1fr 1fr;
  }
}
.test-result-style {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}
.test-result-style-title {
  font-size: 1.25rem;
  font-weight: 700;
}
.test-question-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.test-question-desc {
  font-size: 1.125rem;
  color: #505367;
}
.iq-test-grid {
  width: min(22.5rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.iq-test-cell {
  aspect-ratio: 1;
  border: solid 1px #d9d9d9;
  margin: -1px 0 0 -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-width: 0;
}
.iq-test-cell img {
  max-height: 4rem;
  object-fit: contain;
}
.iq-test-cell--question {
  font-size: 4.063rem;
  line-height: 1;
  color: #7570c2;
}
.test-answers--iq {
  background: none;
  border-radius: 0;
  gap: 0.625rem;
}
@media (width < 480px) {
  .test-answers--iq {
    flex-direction: row;
    gap: 0.25rem;
  }
}
.test-answer--iq {
  padding: 0.938rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #25283b;
  gap: 0.25rem;
  font-size: 1.5rem;
  font-weight: 500;
  --border-width: 0.25rem;
  --bw: var(--border-width, 1px);
  position: relative;
  border-radius: 1.875rem;
  width: 8.75rem;
  min-width: 0;
  background-color: #fff;
  opacity: 1 !important;
}
.test-answer--iq:before {
  content: '';
  position: absolute;
  inset: 0;
  padding: var(--bw);
  border-radius: inherit;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media (width < 480px) {
  .test-answer--iq {
    border-radius: 1.5rem;
    width: 7.25rem;
  }
}
.test-answer--iq:before {
  opacity: 0;
  transition: opacity 0.4s;
}
.test-answer--iq:after {
  content: '-';
  visibility: hidden;
}
.test-answer--iq img {
  max-height: 4rem;
  object-fit: contain;
  margin: auto;
}
.test-answer--iq:hover:before {
  opacity: 0.5;
}
.test-answer--iq:has(:checked):before {
  opacity: 1;
}
@media (width < 768px) {
  .cabinet-pricing .cabinet-section-head {
    flex-direction: row;
    align-items: center;
  }
}
.pricing-currency-select .select-options {
  right: 0;
  left: auto;
  white-space: nowrap;
  min-width: 100%;
}
.pricing-currency-select .select-toggle {
  height: 2.75rem;
}
.cabinet-orders {
  padding-bottom: 1.25rem;
  position: relative;
}
.cabinet-orders:before {
  content: '';
  position: absolute;
  inset: 1.875rem 2.5rem 0;
  border-radius: 1.875rem;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  z-index: -1;
}
.cabinet-orders-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.875rem;
  border-radius: 1.875rem;
  background-color: #7570c2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .cabinet-orders-body {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
}
.cabinet-orders-table {
  width: 100%;
  font-size: 0.875rem;
}
@media (width < 768px) {
  .cabinet-orders-table {
    display: block;
  }
}
.cabinet-orders-table thead {
  font-weight: 700;
}
@media (width < 768px) {
  .cabinet-orders-table thead {
    display: none;
  }
}
.cabinet-orders-table thead td {
  padding: 0 1.25rem 0.75rem 0;
  border-bottom: solid 0.125rem #8580ce;
}
.cabinet-orders-table thead td:last-child {
  padding-right: 0;
  text-align: right;
}
@media (width < 768px) {
  .cabinet-orders-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (width < 768px) {
  .cabinet-orders-table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1.5rem;
    border-bottom: solid 1px #8580ce;
  }
}
@media (width >= 768px) {
  .cabinet-orders-table tbody td {
    padding: 1rem 1.25rem 1rem 0;
    border-bottom: solid 1px #8580ce;
  }
  .cabinet-orders-table tbody td:last-child {
    padding-right: 0;
    text-align: right;
  }
}
@media (width < 768px) {
  .cabinet-orders-table tbody td {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    text-align: right;
  }
  .cabinet-orders-table tbody td:before {
    content: attr(data-title);
    font-weight: 700;
    text-align: left;
  }
}
.modal-top-up .modal-body {
  width: 25.75rem;
  border-radius: 1.875rem;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: #d2d5ec;
}
.modal-top-up-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.modal-top-up-desc {
  color: #505367;
}
.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 {
  min-width: 10.625rem;
  align-self: center;
}
.checkout {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.checkout-item {
  padding-bottom: 1.25rem;
  position: relative;
}
.checkout-item:before {
  content: '';
  position: absolute;
  inset: 1.875rem 2.5rem 0;
  border-radius: 1.875rem;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  z-index: -1;
}
.checkout-item-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  border-radius: 1.875rem;
  background-color: #7570c2;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .checkout-item-body {
    flex-direction: column;
    align-items: unset;
  }
}
.checkout-item-product {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-right: auto;
}
@media (width < 768px) {
  .checkout-item-product {
    flex-direction: column;
    align-items: flex-start;
  }
}
.checkout-item-product-icon {
  flex: none;
  width: 16.25rem;
  aspect-ratio: 260/150;
  display: flex;
  padding: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  background-color: #8580ce;
}
@media (width < 480px) {
  .checkout-item-product-icon {
    width: 100%;
  }
}
.checkout-item-product-icon svg {
  --size: 4.25rem;
  color: #cecced;
}
.checkout-item-product-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 24.125rem;
}
.checkout-item-product-title {
  font-size: 1.5rem;
}
.checkout-item-product-desc {
  color: #cecced;
}
.checkout-item-promocode {
  flex: none;
  position: relative;
}
@media (width >= 480px) {
  .checkout-item-promocode {
    width: 15.625rem;
  }
}
.checkout-item-promocode .input {
  padding: 0 3.5rem 0 1rem;
  border: solid 0.125rem #8580ce;
  background-color: #7570c2;
  --input-color: #fff;
  --input-color-placeholder: #fff;
}
.checkout-item-promocode .input:focus {
  border-color: #cecced !important;
}
.checkout-item-promocode-submit {
  display: flex;
  position: absolute;
  top: calc(50% - 0.75rem);
  right: 1rem;
  transition: color 0.4s;
}
.checkout-item-promocode-submit:hover {
  color: #cecced;
}
.checkout-item-price {
  flex: none;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
@media (width >= 1024px) {
  .checkout-item-price {
    align-items: flex-end;
    min-width: 9.75rem;
  }
}
.checkout-inputs {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem 2.5rem;
  justify-content: space-between;
}
@media (width < 1024px) {
  .checkout-inputs {
    flex-direction: column;
  }
}
.checkout-payment {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
@media (width < 1024px) {
  .checkout-payment {
    gap: 1.5rem;
  }
}
.checkout-agreement {
  display: flex;
}
.checkout-agreement .checkbox > i {
  border: solid 0.125rem #7570c2;
  background: none;
}
.checkout-agreement .checkbox > i use {
  fill: #7570c2;
}
.checkout-submit {
  align-self: flex-start;
  min-width: 9.75rem;
}
@media (width >= 1024px) {
  .checkout-submit {
    margin-top: 0.625rem;
  }
}
.settings-forms {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.settings-form {
  padding-bottom: 1.25rem;
  position: relative;
}
.settings-form:before {
  content: '';
  position: absolute;
  inset: 1.875rem 2.5rem 0;
  border-radius: 1.875rem;
  background: linear-gradient(100.26deg, #6b8ed4, #c78fed);
  z-index: -1;
}
.settings-form-body {
  position: relative;
  z-index: 1;
  padding: 1.875rem;
  border-radius: 1.875rem;
  background-color: #7570c2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.settings-form-title {
  font-size: 1.5rem;
}
.settings-form-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.settings-form-inputs {
  display: grid;
  gap: 1.25rem 1.875rem;
}
@media (width >= 1024px) {
  .settings-form-inputs {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.settings-form-input-wrapp {
  gap: 0.5rem;
  display: flex;
  border: solid 0.125rem #8580ce;
  background-color: #7570c2;
}
.settings-form-input-wrapp:has(.input:focus) {
  border-color: #cecced;
}
.settings-form-input-title {
  align-self: center;
  flex: none;
  color: #c4c2dd;
}
.settings-form-input {
  width: 0;
  flex: auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 0;
  background: none;
  border: 0;
  height: auto;
  --input-color: #fff;
  --input-color-placeholder: #c4c2dd;
}
.settings-form-input:focus {
  background: none;
}
.settings-form-password {
  border: solid 0.125rem #8580ce;
  background-color: #7570c2;
  --input-color: #fff;
  --input-color-placeholder: #c4c2dd;
}
.settings-form-password:focus {
  border-color: #cecced !important;
}
.settings-form-submit {
  align-self: flex-start;
  min-width: 11.375rem;
}
.settings-form--del .settings-form-body {
  background-color: #e98557;
}
.settings-form--del .settings-form-head {
  text-align: center;
}
.settings-form--del .settings-form-submit {
  align-self: center;
}
