@font-face {
  font-family: 'DMSans';
  font-display: swap;
  src: url('../fonts/DMSans-VariableFont_opsz,wght.woff2') format('woff2-variations');
  font-weight: 100 900;
}
:root {
  --container-width: 80rem;
  --container-padding: 2.5rem;
  --app-min-width: 26.25rem;
  --header-height: 6.25rem;
  --content-gap: 1.25rem;
}
@media (width < 1024px) {
  :root {
    --container-padding: 2.5rem;
    --header-height: 4.5rem;
  }
}
@media (width < 768px) {
  :root {
    --container-padding: 1.5rem;
  }
}
@media (width < 480px) {
  :root {
    --container-padding: 1rem;
  }
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.mask {
  --ms: var(--mask-size, 7.5rem);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black var(--ms),
    black calc(100% - var(--ms)),
    transparent
  );
  mask-image: linear-gradient(to right, transparent, black var(--ms), black calc(100% - var(--ms)), transparent);
}
.mask-vertical {
  --ms: var(--mask-size, 7.5rem);
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black var(--ms),
    black calc(100% - var(--ms)),
    transparent
  );
  mask-image: linear-gradient(to bottom, transparent, black var(--ms), black calc(100% - var(--ms)), transparent);
}
/* 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: #7d7d7d;
    border-radius: 0.375rem;
    background-clip: padding-box;
  }
  * ::-webkit-scrollbar-track {
    background: transparent;
  }
}
*:after,
*:before {
  box-sizing: inherit;
}
html {
  overflow: hidden scroll;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
}
@media (width < 1360px) and (width >= 1024px) {
  html {
    font-size: 1.2vw;
  }
}
@media (width >= 1024px) {
  html:has(.header-nav.active) {
    font-size: 1.24vw;
    overflow-y: scroll !important;
  }
}
html:only-child {
  display: flex !important;
}
body {
  font-family: 'DMSans', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #000;
  min-width: var(--app-min-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fff;
  overflow: hidden;
  padding: 0 !important;
}
body:has(.header) {
  padding-top: var(--header-height) !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%;
}
.h1 {
  font-size: 4.375rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.1;
}
@media (width < 1024px) {
  .h1 {
    font-size: 3rem;
  }
}
.h2 {
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}
@media (width < 1024px) {
  .h2 {
    font-size: 2rem;
    line-height: 1.1;
  }
}
.h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}
@media (width < 1024px) {
  .h3 {
    font-size: 1.25rem;
  }
}
.h4 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.3;
}
@media (width < 1024px) {
  .h4 {
    font-size: 1.125rem;
  }
}
@media (width < 1200px) {
  .hidden-desktop {
    display: none !important;
  }
}
@media (width < 1024px) {
  .hidden-tablet {
    display: none !important;
  }
}
@media (width < 768px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (width >= 768px) {
  .visible-mobile {
    display: none !important;
  }
}
@media (width >= 1024px) {
  .visible-tablet {
    display: none !important;
  }
}
@media (width >= 1200px) {
  .visible-desktop {
    display: none !important;
  }
}
.cover-img {
  display: flex;
  overflow: hidden;
  will-change: transform;
}
.cover-img picture,
.cover-img img,
.cover-img video,
.cover-img canvas {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
template {
  display: none;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
picture img {
  display: block;
}
ul,
ol {
  list-style: none;
}
b,
strong {
  font-weight: 700;
}
button {
  all: unset;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  appearance: button;
}
a:focus-visible,
button:focus-visible {
  outline: solid 0.125rem rgba(30, 175, 150, 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: #1eaf96;
}
.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.5rem;
  max-width: 100%;
  color: #fff;
  flex: none;
  font-size: 1rem;
  font-weight: 600;
  -webkit-user-select: none;
  user-select: none;
  transition:
    background-color 0.4s,
    opacity 0.4s,
    color 0.4s,
    border-color 0.4s;
  background-color: #1eaf96;
  border-radius: 0.375rem;
}
.btn .icon {
  --size: 1rem;
}
.btn:hover {
  background-color: #178371;
}
.btn[disabled],
.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn-red {
  background-color: #f45151;
}
.btn-red:hover {
  background-color: #f12121;
}
.btn-border {
  background: none;
  border: solid 0.125rem #1eaf96;
  color: #1eaf96;
}
.btn-border:hover {
  background-color: #178371;
  border-color: #178371;
  color: #fff;
}
.swiper-horizontal {
  margin: unset;
  top: unset;
}
.form-group {
  display: grid;
  gap: 1.25rem;
}
@media (width >= 768px) {
  .form-group {
    grid-template-columns: 1fr 1fr;
  }
}
.form-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-block-title {
  font-size: 1rem;
  color: #000;
  margin-right: auto;
  font-weight: 500;
  line-height: 1.42;
}
.form-block-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-block-link {
  font-size: 0.75rem;
  transition: color 0.4s;
  line-height: 1.33;
}
.form-block-link:hover {
  color: #1eaf96;
}
.form-block-alert {
  padding: 0 1.25rem;
  font-size: 0.75rem;
  line-height: 1.33;
  display: none;
}
.form-block-alert.active {
  display: block;
}
.input-block {
  display: flex;
  position: relative;
}
.input-block:has(> .icon:first-child) .input {
  padding-left: 3rem;
}
.input-block:has(> .icon:last-child) .input,
.input-block:has(> .password-toggle-btn) .input {
  padding-right: 3rem;
}
.input-block > .icon {
  --size: 1.25rem;
  position: absolute;
  left: 1rem;
  top: calc(50% - 0.625rem);
}
.input {
  --color: var(--input-color, #000);
  --height: var(--input-height, 3.375rem);
  --bg: var(--input-bg, #fdfdfd);
  font-variation-settings: inherit;
  height: var(--height);
  border: solid 1px #efefef;
  display: block;
  width: 100%;
  padding: 0 var(--input-padding, 1rem);
  appearance: none;
  box-shadow: none;
  caret-color: var(--color);
  transition:
    border-color 0.4s,
    background-color 0.4s,
    box-shadow 0.4s;
  color: var(--color);
  outline: none;
  line-height: 1.4;
  text-overflow: ellipsis;
  font-size: 1rem;
  font-family: 'DMSans', sans-serif;
  background-color: var(--bg);
  border-radius: 0.5rem;
  font-weight: 500;
}
.input::-webkit-input-placeholder {
  color: #a6a6a6;
}
.input:-moz-placeholder {
  color: #a6a6a6;
}
.input::-moz-placeholder {
  color: #a6a6a6;
}
.input:-ms-input-placeholder {
  color: #a6a6a6;
}
.input:focus:not(.select-toggle):not([readonly]) {
  border-color: #1eaf96;
}
.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: 'DMSans', sans-serif;
  background: none;
}
.input::-webkit-outer-spin-button,
.input::-webkit-inner-spin-button {
  appearance: none;
  display: none;
}
.input::-webkit-search-decoration,
.input::-webkit-search-cancel-button,
.input::-webkit-search-results-button,
.input::-webkit-search-results-decoration {
  appearance: none;
  display: none;
}
.input[type='number'] {
  -moz-appearance: textfield;
}
.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;
}
.tab-block.active {
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.checkbox {
  --icon: 1.75rem;
  --radius: 0.375rem;
  display: inline-flex;
  align-items: flex-start;
  width: fit-content;
  gap: 0.5rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  font-size: 0.875rem;
  line-height: 1.4;
}
.checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  opacity: 0;
  border-radius: var(--radius);
  width: var(--icon);
  height: var(--icon);
}
.checkbox > i {
  flex: none;
  border: solid 1px #efefef;
  border-radius: var(--radius);
  width: var(--icon);
  height: var(--icon);
  display: grid;
  place-items: center;
  color: #1eaf96;
  background-color: #fdfdfd;
  transition: border-color 0.4s;
}
.checkbox > i svg {
  transition:
    opacity 0.4s,
    transform 0.4s;
  opacity: 0;
  transform: scale(0);
  --size: 1rem;
}
.checkbox > span {
  align-self: center;
}
.checkbox:has(input:focus) > i {
  border-color: #1eaf96;
}
.checkbox:has(input:checked) > i svg {
  opacity: 1;
  transform: scale(1);
}
.checkbox a {
  transition: color 0.4s;
  font-weight: 700;
}
.checkbox a:hover {
  color: #178371;
}
.checkbox-switcher {
  justify-content: space-between;
  font-size: 0.75rem;
  gap: 0.625rem;
  align-items: center;
  font-weight: 500;
  transition: color 0.4s;
}
.checkbox-switcher > i {
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 2.75rem;
  border: 0;
  position: relative;
  transition: background-color 0.4s;
}
.checkbox-switcher > i:before {
  content: '';
  height: 1.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  left: 0.125rem;
  top: calc(50% - 0.625rem);
  transition:
    transform 0.4s,
    background-color 0.4s;
  box-shadow:
    0px 0.25rem 0.375rem -0.25rem rgba(0, 0, 0, 0.1),
    0px 0.625rem 0.938rem -0.188rem rgba(0, 0, 0, 0.1);
}
.checkbox-switcher:has(input:checked) {
  color: #000;
}
.checkbox-switcher:has(input:checked) > i {
  background-color: #000;
}
.checkbox-switcher:has(input:checked) > i:before {
  transform: translateX(1.25rem);
}
.checkbox-switcher:has(input:checked) .checkbox-switcher-title:empty:before {
  content: attr(data-on);
}
.checkbox-switcher-title:empty:before {
  content: attr(data-off);
}
.radio {
  --icon: 1.5rem;
  --radius: 50%;
  display: inline-flex;
  gap: 0.75rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  font-size: 0.813rem;
  line-height: 1.2;
}
.radio input {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  opacity: 0;
  border-radius: var(--radius);
  width: var(--icon);
  height: var(--icon);
}
.radio > i {
  flex: none;
  border: solid 1px rgba(255, 255, 255, 0.2);
  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.188rem;
  background-color: #1eaf96;
  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-btns {
  display: flex;
  padding: 0.25rem;
  border-radius: 6.25rem;
  gap: 0.125rem;
}
.radio-btn {
  flex: auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 2.5rem;
  position: relative;
  transition:
    color 0.4s,
    background-color 0.4s;
}
.radio-btn:hover {
  color: #1eaf96;
}
.radio-btn:has(input:checked) {
  background-color: #000;
  color: #fff;
}
.radio-btn 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;
}
[data-aos='fade-up'] {
  opacity: 0;
  transform: translateY(2.5rem);
  transition-property: transform, opacity;
  transition-duration: 0.4s;
  transition-delay: 0.2s;
}
[data-aos='fade-up'].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.select {
  position: relative;
  display: flex;
  flex-direction: column;
}
.select.active {
  z-index: 66;
}
.select.active .select-toggle {
  border-color: #1eaf96;
}
.select.active .select-options {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.select-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.select-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.select-arrow {
  margin-left: auto;
  transition: transform 0.4s;
  --size: 1.25rem;
  color: #1eaf96;
}
.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: #a6a6a6;
  overflow: hidden;
  text-overflow: ellipsis;
}
.select-options {
  font-size: 0.875rem;
  border-radius: 0.5rem;
  background-color: #fdfdfd;
  border: solid 1px #efefef;
  box-shadow: 0px 0px 6.25rem 0px #0000001a;
  display: none;
}
.select-options-list {
  overflow: hidden auto;
  max-height: 21.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
}
.select-option {
  display: flex;
  align-self: stretch;
  padding: 0.375rem 1rem;
  margin: 0 -0.375rem;
  align-items: center;
  transition: color 0.4s;
  overflow: hidden;
  text-overflow: ellipsis;
  gap: 0.5rem;
  font-weight: 500;
  color: #000;
  flex: none;
}
.select-option .icon {
  opacity: 0;
  transition: opacity 0.4s;
  color: #1eaf96;
  margin-left: auto;
  --size: 1rem;
}
.select-option:hover {
  color: #1eaf96;
}
.select-option.active {
  font-weight: 700;
}
.select-option.active:hover {
  color: #000;
}
.select-option.active .icon {
  opacity: 1;
}
.tippy-box[data-theme='unset'] {
  all: unset;
}
.tippy-box[data-theme='unset'] .tippy-content {
  padding: 0;
}
.tippy-tooltip {
  display: none;
}
.tippy-box .select-options {
  display: block;
}
.tippy-box .tippy-tooltip {
  display: flex;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.938rem;
}
.accordion-item {
  padding: 0.938rem;
  border-radius: 1rem;
  background-color: rgba(228, 228, 228, 0.6);
}
.accordion-item.active .accordion-item-main {
  grid-template-rows: 1fr;
}
.accordion-item.active .accordion-item-toggle > i {
  transform: rotate(-180deg);
}
.accordion-item-wrapp {
  --padding: 1.25rem;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0.5rem;
}
.accordion-item-toggle {
  padding: var(--padding);
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: #000;
  transition: color 0.4s;
}
.accordion-item-toggle:hover {
  color: #1eaf96;
}
.accordion-item-toggle > i {
  display: flex;
  transition: transform 0.4s;
  flex: none;
  color: #1eaf96;
}
.accordion-item-toggle > i svg {
  --size: 1.25rem;
}
.accordion-item-main {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s;
}
.accordion-body {
  overflow: hidden;
}
.accordion-item-content {
  padding: 0 var(--padding) var(--padding);
  font-weight: 500;
  max-width: 67.125rem;
  line-height: 1.33;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.slider-arrows {
  display: flex;
  gap: 0.25rem;
  flex: none;
}
.slider-arrows:has(.swiper-button-lock) {
  display: none;
}
.slider-arrow {
  --w: var(--arrow-width, 2rem);
  width: var(--w);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #000;
  transition:
    color 0.4s,
    background-color 0.4s;
}
.slider-arrow:hover {
  color: #1eaf96;
}
.slider-arrow svg {
  --size: calc(0.6 * var(--w));
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 666666;
}
.modal:not(.active) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal.open,
.modal.close {
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.modal.open .modal-body,
.modal.close .modal-body {
  transition: transform 0.4s;
}
.modal.active .modal-body {
  transform: scale(1);
}
.modal-wrapp {
  width: 100%;
  height: 100%;
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  overflow-y: scroll;
  outline: none;
  padding: 1.5rem;
}
@media (width < 480px) {
  .modal-wrapp {
    padding: 1rem;
  }
}
.modal-body {
  width: 32.5rem;
  max-width: 100%;
  padding: 1.5rem 1.5rem 2rem;
  margin: auto;
  position: relative;
  transform: scale(0.8);
  background-color: #fff;
  border-radius: 0.5rem;
}
.modal-close-btn {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  display: flex;
  margin: -0.5rem;
  padding: 0.5rem;
  color: #7d7d7d;
  transition: color 0.4s;
}
.modal-close-btn:hover {
  color: #1eaf96;
}
.modal-close-btn svg {
  --size: 1.25rem;
}
.modal-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-right: 1.5rem;
  line-height: 1.33;
  margin-bottom: 2rem;
}
@media (width < 1024px) {
  .modal-head {
    margin-bottom: 1.5rem;
  }
}
.modal-head:last-child {
  margin-bottom: 0;
}
.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
}
.blur-img {
  padding: 0.625rem;
  box-shadow: 0px 0px 3.125rem 0px #00000040;
  backdrop-filter: blur(1.188rem);
  background-color: rgba(228, 228, 228, 0.6);
  border-radius: 1rem;
  width: fit-content;
}
.dots-img:before {
  content: '';
  display: block;
  margin-bottom: 0.625rem;
  width: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  aspect-ratio: 1;
  box-shadow:
    0.813rem 0 0 0 #fff,
    1.625rem 0 0 0 #fff;
}
.section {
  --padding: 5rem;
  padding: var(--padding) 0;
}
@media (width < 1024px) {
  .section {
    --padding: 2.5rem;
  }
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
  text-align: center;
}
@media (width < 1024px) {
  .section-head {
    margin-bottom: 1.5rem;
  }
}
.section-head:last-child {
  margin-bottom: 0;
}
.section-label {
  min-height: 1.5rem;
  align-items: center;
  display: flex;
  border-radius: 1rem;
  padding: 0.25rem 0.625rem;
  background-color: #ef9635;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
}
.section-desc {
  font-size: 1.125rem;
  line-height: 1.27;
}
@media (width < 1024px) {
  .section-desc br {
    display: none;
  }
}
.section-btn {
  margin-top: 1rem;
}
@media (width < 1024px) {
  .section-btn {
    margin-top: 0.5rem;
  }
}
.spoiler.active .spoiler-main {
  grid-template-rows: 1fr;
}
.spoiler.active .spoiler-toggle > i {
  transform: rotate(-180deg);
}
.spoiler-toggle {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: fit-content;
  color: #000;
  transition: color 0.4s;
  font-weight: 700;
}
.spoiler-toggle:hover {
  color: #1eaf96;
}
.spoiler-toggle > i {
  display: flex;
  transition: transform 0.4s;
  flex: none;
  color: #1eaf96;
}
.spoiler-toggle > i svg {
  --size: 1.25rem;
}
.spoiler-main {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s;
}
.spoiler-body {
  overflow: hidden;
}
.spoiler-content {
  padding-top: 1rem;
}
.checkbox-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.checkbox-btn {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  padding: 0.375rem 0.875rem;
  position: relative;
  border: solid 1px #1eaf96;
  color: #1eaf96;
  font-size: 0.813rem;
  font-weight: 700;
  min-height: 2.25rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  border-radius: 0.375rem;
  transition:
    color 0.4s,
    border-color 0.4s,
    background-color 0.4s;
}
.checkbox-btn input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.checkbox-btn:hover {
  border-color: #178371;
  color: #178371;
}
.checkbox-btn:has(:checked) {
  background-color: #1eaf96;
  color: #fff;
  border-color: #1eaf96;
}
.file-input {
  position: relative;
  display: flex;
  border-radius: 0.5rem;
}
.file-input input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  border-radius: inherit;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0;
  font-size: 0;
}
.file-input-title {
  flex: auto;
  min-width: 0;
  display: flex;
  align-items: center;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.file-input-title span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-input-title:empty:before {
  content: attr(data-placeholder);
  color: #7d7d7d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-input-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.content-text {
  display: flow-root;
  line-height: 1.8;
}
.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 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) {
  transition: color 0.4s;
}
.content-text a:not(.btn):hover {
  color: #178371;
}
.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 {
  display: flex;
  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.5rem;
  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;
  border-radius: 1rem;
  min-height: 15rem;
  object-fit: cover;
}
.content-text blockquote {
  margin: calc(1.5 * var(--content-gap)) 0;
  padding: 1rem 1.5rem;
  background-color: #f8f8f8;
  border-left: solid 0.25rem #1eaf96;
}
@media (width < 1024px) {
  .content-text blockquote {
    padding: 0.75rem 1rem;
  }
}
.content-text blockquote:first-child {
  margin-top: 0;
}
.content-text blockquote:last-child {
  margin-bottom: 0;
}
.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 #efefef;
  padding: 0.5rem 0.75rem;
}
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 600;
  background-color: #fff;
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.header:after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  border-top: solid 1px #efefef;
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0;
}
.header > .container {
  display: flex;
  height: var(--header-height);
  align-items: center;
  gap: 3rem;
}
.header.hide:not(:hover) {
  transform: translateY(-100%);
  opacity: 0;
}
.header.fixed:after {
  opacity: 1;
}
.header + .section {
  padding-top: 3.125rem;
}
@media (width < 1024px) {
  .header + .section {
    padding-top: 1.5rem;
  }
}
.header-logo {
  display: flex;
  min-width: 17.5rem;
  flex: none;
}
@media (width < 1024px) {
  .header-logo {
    min-width: unset;
    margin-right: auto;
  }
}
.logo {
  display: flex;
  flex: none;
}
.logo img {
  max-height: 2.375rem;
  object-fit: contain;
}
@media (width < 1024px) {
  .header-nav {
    background-color: rgba(0, 0, 0, 0.2);
    top: calc(var(--header-height) - 1px);
  }
  .header-nav .modal-wrapp {
    padding: 0;
    background: none;
  }
  .header-nav .modal-body {
    width: 17.5rem;
    margin: 0 0 auto auto;
    transform: translateX(100%);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #fff;
    min-height: 100%;
  }
  .header-nav.active .modal-body {
    transform: translateX(0);
  }
}
@media (width >= 1024px) {
  .header-nav {
    all: unset;
    display: contents;
  }
  .header-nav:not(.active) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header-nav .modal-wrapp {
    all: unset;
    display: contents;
  }
  .header-nav .modal-body {
    all: unset;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: auto;
    min-width: 0;
  }
}
.header-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0 auto;
}
@media (width < 1024px) {
  .header-menu {
    flex-direction: column;
    align-items: unset;
    gap: 0.25rem;
    margin: 0;
  }
}
.header-menu > li {
  position: relative;
}
.header-menu > li > a {
  margin: 0 -1.25rem;
  padding: 1.5rem 1.25rem;
  color: inherit;
  transition: color 0.4s;
  display: flex;
  font-weight: 600;
}
@media (width < 1024px) {
  .header-menu > li > a {
    margin: 0 -1.5rem;
    padding: 0.75rem 1.5rem;
  }
}
.header-menu > li > a:hover {
  color: #1eaf96;
}
@media (width >= 1024px) {
  .header-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header-menu > li:hover > a {
    color: #1eaf96;
  }
}
@media (width >= 1024px) {
  .header-menu .sub-menu {
    border-radius: 0.375rem;
    display: flex;
    flex-direction: column;
    padding: 0.375rem 0;
    background-color: #1eaf96;
    color: #fff;
    position: absolute;
    left: -1.25rem;
    top: 100%;
    z-index: 66;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.4s,
      visibility 0.4s;
  }
}
@media (width < 1024px) {
  .header-menu .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 0;
  }
}
.header-menu .sub-menu a {
  display: flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  color: inherit;
  font-weight: 600;
  transition:
    background-color 0.4s,
    color 0.4s;
}
@media (width >= 1024px) {
  .header-menu .sub-menu a:hover {
    background-color: #178371;
  }
}
@media (width < 1024px) {
  .header-menu .sub-menu a:hover {
    color: #1eaf96;
    padding: 0.75rem 1.5rem;
  }
}
.header-btns {
  display: flex;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  min-width: 17.5rem;
}
@media (width < 1024px) {
  .header-btns {
    min-width: unset;
    margin-top: auto;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
}
.header-login {
  color: #1eaf96;
  margin: -0.5rem;
  padding: 0.5rem;
  transition: color 0.4s;
  font-weight: 600;
}
.header-login:hover {
  color: #178371;
}
@media (width < 1024px) {
  .header-start-btn {
    width: 100%;
  }
}
.header-nav-toggle {
  order: 1;
  display: flex;
  color: #000;
  margin: -0.5rem;
  padding: 0.5rem;
  position: relative;
  z-index: 601;
}
@media (width >= 1024px) {
  .header-nav-toggle {
    display: none;
  }
}
.header-nav-toggle svg {
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.header-nav-toggle svg:last-child {
  position: absolute;
  left: calc(50% - 0.5 * var(--size));
  top: calc(50% - 0.5 * var(--size));
  opacity: 0;
  transform: scale(0);
}
.header-nav-toggle.active svg:first-child {
  opacity: 0;
  transform: scale(0);
}
.header-nav-toggle.active svg:last-child {
  opacity: 1;
  transform: scale(1);
}
.header-btn {
  --height: 2.75rem;
}
.hero {
  padding: 3.125rem 0 4.375rem;
}
@media (width < 1024px) {
  .hero {
    padding: 1.5rem 0 2.5rem;
  }
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
@media (width < 1024px) {
  .hero .container {
    flex-direction: column;
    align-items: unset;
  }
}
.home-hero .hero-media {
  min-height: 31.5rem;
}
@media (width >= 1024px) {
  .home-hero .hero-body {
    max-width: 37.5rem;
  }
}
.home-hero .hero-img {
  width: 32.5rem;
}
@media (width < 1024px) {
  .home-hero .hero-img {
    width: 100%;
    margin: 0 0 auto;
  }
}
.home-hero .hero-decor {
  left: -7.5rem;
}
.hero-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 43.75rem;
  position: relative;
  z-index: 1;
}
@media (width < 1024px) {
  .hero-body {
    gap: 1rem;
  }
}
.home-hero-label {
  width: fit-content;
  padding: 0.313rem 0.75rem 0.313rem 0.375rem;
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 1.125rem;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #3c3c3c;
}
.hero-btns {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.75rem;
}
.hero-media {
  flex: none;
  display: flex;
  align-items: center;
  min-height: 37.375rem;
  position: relative;
  width: 32.375rem;
}
@media (width < 1024px) {
  .hero-media {
    max-width: 100%;
    align-items: flex-start;
  }
}
.hero-decor {
  position: absolute;
  inset: 0 0 0 -3rem;
  display: flex;
  align-items: center;
}
.hero-decor img {
  max-width: none;
}
.hero-img {
  flex: none;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin: auto 0;
  width: max-content;
  max-width: 45.063rem;
}
@media (width < 1024px) {
  .hero-img {
    width: 100%;
    margin: 0;
  }
}
.type-widget {
  padding: 1.25rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #fff;
  color: #3c3c3c;
  width: 100%;
}
.type-widget-form {
  display: grid;
  grid-template-columns: max-content 1fr auto;
  align-items: center;
  padding: 0.188rem 0.188rem 0.188rem 0.875rem;
  min-height: 3.375rem;
  border: solid 1px #efefef;
  border-radius: 0.5rem;
  gap: 0.5rem;
}
@media (width < 768px) {
  .type-widget-form {
    grid-template-columns: 1fr auto;
    padding: 0.5rem;
  }
}
.type-widget-form-title {
  color: #a6a6a6;
  font-weight: 600;
}
@media (width < 768px) {
  .type-widget-form-title {
    grid-column: span 2;
  }
}
.type-widget-input {
  min-width: 0;
  padding-right: 0.5rem;
}
.type-widget-btn {
  --height: 3rem;
  pointer-events: none;
}
@media (width < 480px) {
  .type-widget-btn {
    padding: 0 1rem;
  }
}
.type-widget-output {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.type-widget-output:has(.type-widget-output-title:empty) {
  display: none;
}
.type-widget-output-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.27;
}
.advantages-list {
  display: grid;
  gap: 0.5rem;
}
@media (width >= 1024px) {
  .advantages-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
  }
}
@media (width >= 480px) {
  .advantages-list:has(.advantages-item:nth-child(4)) {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width >= 480px) and (width < 1024px) {
  .advantages-list:has(.advantages-item:nth-child(4)) {
    grid-template-columns: 1fr 1fr;
  }
}
.advantages-item {
  min-width: 0;
  padding: 0.625rem;
  backdrop-filter: blur(1.188rem);
  background-color: rgba(228, 228, 228, 0.6);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}
.advantages-item-body {
  margin-top: 1.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  background-color: #fff;
  flex: auto;
  border-radius: 0 0.5rem 0.5rem 0.5rem;
  gap: 0.25rem;
}
@media (width < 480px) {
  .advantages-item-body {
    padding: 1rem;
  }
}
.advantages-item-body:before {
  content: '';
  width: 7rem;
  height: 1.313rem;
  position: absolute;
  top: -1.25rem;
  left: 0;
  background-color: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
}
.advantages-item-icon {
  margin: -0.125rem 0.375rem 1.375rem;
  width: 3.75rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: none;
  position: relative;
}
.advantages-item-icon:before,
.advantages-item-icon:after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.625rem;
}
.advantages-item-icon:before {
  background-color: #1eaf96;
  transform: rotate(45deg);
}
.advantages-item-icon:after {
  backdrop-filter: blur(0.75rem);
  box-shadow: 0px 0.188rem 0.563rem 0px #6d555540;
  border: solid 0.125rem rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.3);
}
.advantages-item-icon img {
  position: relative;
  z-index: 1;
  max-height: 1.75rem;
  object-fit: contain;
}
.advantages-item-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.advantages-item-list li {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: solid 1px #efefef;
}
.steps {
  overflow: hidden;
}
@media (width >= 768px) {
  .steps-body {
    position: relative;
    display: flex;
    max-width: 70rem;
    margin: 0 auto;
  }
  .steps-body:before {
    content: '';
    position: absolute;
    height: 1.25rem;
    inset: calc(50% - 0.625rem) -100vmax auto;
    background-color: #fefae0;
  }
}
.steps-decor {
  display: flex;
}
.steps-list {
  counter-reset: c;
  display: grid;
  gap: 1.5rem;
}
@media (width >= 768px) {
  .steps-list {
    height: 13.75rem;
    position: absolute;
    inset: calc(50% - 6.875rem) 3rem auto;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
    z-index: 1;
  }
}
@media (width >= 768px) and (width < 1024px) {
  .steps-list {
    left: 0;
    right: 0;
  }
}
.steps-item {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width >= 768px) {
  .steps-item {
    gap: 1.25rem;
  }
  .steps-item:nth-child(odd) {
    margin-top: auto;
  }
}
@media (width < 768px) {
  .steps-item:before {
    content: counter(c);
    flex: none;
    width: 4rem;
    aspect-ratio: 1;
    border-radius: 50%;
    border: solid 1rem #074960;
    color: #074960;
    display: grid;
    place-items: center;
    background-color: #fefae0;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    counter-increment: c;
  }
}
.how {
  overflow: hidden;
}
@media (width >= 1024px) {
  .page-nav {
    width: fit-content;
    margin: 0 auto 2.5rem;
    min-width: 45.625rem;
  }
}
@media (width < 1024px) {
  .page-nav {
    display: flex;
    margin: 0 calc(-1 * var(--container-padding)) 2rem;
    padding: 0 var(--container-padding);
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .page-nav::-webkit-scrollbar {
    display: none;
  }
}
.page-nav-menu {
  padding: 0.313rem;
  background-color: #efefef;
  gap: 0.25rem;
  display: flex;
  border-radius: 0.5rem;
  margin: 0 auto;
}
@media (width < 1024px) {
  .page-nav-menu {
    white-space: nowrap;
  }
}
.page-nav-btn {
  font-size: 1.125rem;
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: #7d7d7d;
  padding: 0.5rem 1rem;
  min-height: 2.75rem;
  border-radius: 0.375rem;
  line-height: 1.2;
  transition: color 0.4s;
}
.page-nav-btn:hover {
  color: #000;
}
.page-nav-btn.active {
  color: #000;
  background-color: #fff;
}
.how-body {
  position: relative;
}
.how-decor {
  width: 1118.75rem;
  height: 13.75rem;
  display: flex;
  position: absolute;
  left: calc(50% - 559.375rem);
  top: calc(50% - 6.875rem);
}
.how-tabs {
  width: min(53.25rem, 100%);
  margin: 0 auto;
}
.how-tab {
  display: flex;
}
.cases-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (width < 1024px) {
  .cases-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
.cases-item {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 1rem;
  backdrop-filter: blur(1.188rem);
  background-color: rgba(228, 228, 228, 0.6);
  aspect-ratio: 305/410;
  padding: 1.875rem;
  justify-content: flex-end;
  min-width: 0;
}
@media (width < 1024px) {
  .cases-item {
    padding: 1.5rem;
  }
}
.cases-item-img {
  position: absolute;
  inset: 0.625rem;
  border-radius: 0.5rem;
}
.cases-item-img:after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.cases-item-title {
  color: #fff;
  position: relative;
  z-index: 1;
}
.differentiation-table {
  width: 100%;
  table-layout: fixed;
}
@media (width < 768px) {
  .differentiation-table {
    display: block;
  }
}
@media (width >= 768px) {
  .differentiation-table td {
    padding: 1rem 1.5rem 1rem 0;
  }
}
.differentiation-table thead {
  font-weight: 700;
  color: #7d7d7d;
  font-size: 1.125rem;
}
@media (width < 768px) {
  .differentiation-table thead {
    display: none;
  }
}
.differentiation-table thead td {
  border-bottom: solid 0.25rem #1eaf96;
  padding-top: 0;
}
.differentiation-table tbody {
  font-weight: 500;
}
@media (width < 768px) {
  .differentiation-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (width < 768px) {
  .differentiation-table tbody tr {
    display: grid;
    padding-bottom: 1.5rem;
    border-bottom: solid 1px #efefef;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media (width >= 768px) {
  .differentiation-table tbody td {
    border-bottom: solid 1px #efefef;
  }
}
@media (width < 768px) {
  .differentiation-table tbody td {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .differentiation-table tbody td:first-child {
    grid-column: span 2;
    text-align: center;
    font-weight: 700;
    color: #7d7d7d;
    font-size: 1.125rem;
  }
}
.differentiation-table tbody td[data-title]:before {
  content: attr(data-title);
  font-size: 0.875rem;
  color: #7d7d7d;
}
.differentiation-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.differentiation-item img {
  flex: none;
  width: 1.625rem;
}
.differentiation-item span {
  align-self: center;
}
.footer {
  padding-top: 3.125rem;
  margin-top: auto;
  overflow: hidden;
}
@media (width < 1024px) {
  .footer {
    padding-top: 2.5rem;
  }
}
.footer-decor {
  border-bottom: solid 0.375rem #fefae0;
}
.footer-decor .container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: -0.375rem;
}
.footer-decor .container img {
  max-width: none;
}
.footer-main {
  background: #fff;
  padding: 3.75rem 0 3.5rem;
}
@media (width < 1024px) {
  .footer-main {
    padding: 2.5rem 0;
  }
}
.footer-main .container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (width < 1024px) {
  .footer-main .container {
    gap: 2.5rem;
  }
}
.footer-body {
  display: flex;
  gap: 5rem;
  justify-content: space-between;
}
@media (width < 1024px) {
  .footer-body {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media (width >= 1024px) {
  .footer-info {
    width: 16.5rem;
  }
}
.footer-logo {
  max-width: 13.438rem;
  display: flex;
}
.footer-desc {
  font-weight: 500;
  color: #7d7d7d;
}
.footer-nav {
  display: flex;
  gap: 5rem;
}
@media (width < 1024px) {
  .footer-nav {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.footer-nav-item {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
@media (width < 1024px) {
  .footer-nav-item {
    gap: 1rem;
  }
}
.footer-nav-title {
  align-items: center;
  display: flex;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #7d7d7d;
}
@media (width >= 1024px) {
  .footer-nav-title {
    min-height: 2.25rem;
  }
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (width < 1024px) {
  .footer-menu {
    gap: 0.75rem;
  }
}
.footer-menu a {
  font-weight: 500;
  color: inherit;
  transition: color 0.4s;
}
.footer-menu a:hover {
  color: #1eaf96;
}
.footer-contacts {
  gap: 1rem;
  flex: none;
  display: flex;
  flex-direction: column;
}
@media (width >= 1024px) {
  .footer-contacts {
    width: 19.75rem;
    gap: 0.875rem;
  }
}
.footer-contacts-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  font-weight: 500;
}
@media (width < 1024px) {
  .footer-contacts-links {
    gap: 0.75rem;
  }
}
.footer-contacts-links a {
  transition: color 0.4s;
}
.footer-contacts-links a:hover {
  color: #178371;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (width < 1024px) {
  .footer-social {
    gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-payments {
  display: flex;
  align-items: center;
  gap: 1.5rem 3rem;
  flex-wrap: wrap;
}
@media (width < 1024px) {
  .footer-payments {
    gap: 1.5rem 2.5rem;
  }
}
.footer-payments img {
  height: 1.75rem;
  object-fit: contain;
}
.footer-social-links {
  width: 19.75rem;
  flex: none;
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (width < 1024px) {
  .footer-social-links {
    gap: 1.5rem;
  }
}
.footer-social-links a {
  display: flex;
  transition: opacity 0.4s;
}
.footer-social-links a:hover {
  opacity: 0.7;
}
.footer-social-links a img {
  height: 1.5rem;
  object-fit: contain;
}
.footer-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #7d7d7d;
}
@media (width < 1024px) {
  .footer-foot {
    gap: 1.5rem;
    flex-direction: column;
  }
}
@media (width < 1024px) {
  .footer-copyright {
    order: 1;
  }
}
.footer-foot-menu {
  display: flex;
  flex-wrap: wrap;
}
.footer-foot-menu li:not(:last-child) {
  position: relative;
  padding-right: 2rem;
  margin-right: 2rem;
}
@media (width < 1024px) {
  .footer-foot-menu li:not(:last-child) {
    margin-right: 1.5rem;
    padding-right: 1.5rem;
  }
}
.footer-foot-menu li:not(:last-child):after {
  content: '•';
  position: absolute;
  left: 100%;
  top: 0;
  transform: translateX(-50%);
}
.footer-foot-menu a {
  color: inherit;
  transition: color 0.4s;
}
.footer-foot-menu a:hover {
  color: #1eaf96;
}
.product-hero .section-desc {
  max-width: 34.75rem;
}
.product-hero-label {
  padding: 0.5rem 0.75rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem 1.25rem;
  background-color: #f8f8f8;
  flex-wrap: wrap;
  width: fit-content;
}
.product-hero-label-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #3c3c3c;
}
.product-hero-label-item img {
  width: 1rem;
  flex: none;
}
.page-decor-wrapp {
  position: relative;
}
.page-decor {
  display: flex;
  width: 38.313rem;
  height: 24.375rem;
  position: absolute;
  z-index: -1;
  top: calc(50% - 12.188rem);
}
.page-decor-left {
  left: -12.5rem;
}
.page-decor-right {
  right: -19.25rem;
}
.use-list {
  display: grid;
  gap: 0.5rem;
}
@media (width >= 1024px) {
  .use-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
  }
}
@media (width >= 480px) {
  .use-list:has(.use-item:nth-child(4)) {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (width >= 480px) and (width < 1024px) {
  .use-list:has(.use-item:nth-child(4)) {
    grid-template-columns: 1fr 1fr;
  }
}
.use-item {
  min-width: 0;
  padding: 0.625rem;
  backdrop-filter: blur(1.188rem);
  background-color: rgba(228, 228, 228, 0.6);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.use-item:not(:first-child):before {
  content: '';
  position: absolute;
  width: 3.125rem;
  height: 1.5rem;
  background-image: url(../img/use-arrow.svg);
  background-size: 100% 100%;
  left: -2.5rem;
  top: 2.125rem;
}
@media (width < 1024px) {
  .use-item:not(:first-child):before {
    display: none;
  }
}
.use-item-body {
  flex: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  will-change: transform;
  background-color: #fff;
  padding: 1.25rem;
}
.use-item-number {
  display: flex;
  margin-bottom: 0.5rem;
}
.use-item-number img {
  height: 2.75rem;
  object-fit: contain;
}
.use-item-desc:not(:last-child) {
  margin-bottom: 1.75rem;
}
.use-item-img {
  margin: auto -1.875rem -1.875rem 0;
  align-self: flex-end;
}
.instruction .container > .section-head {
  margin-bottom: 5rem;
}
@media (width < 1024px) {
  .instruction .container > .section-head {
    margin-bottom: 3.75rem;
  }
}
.instruction-items {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}
@media (width < 1024px) {
  .instruction-items {
    gap: 3.75rem;
  }
}
.instruction-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  justify-content: space-between;
}
@media (width < 1024px) {
  .instruction-item {
    flex-direction: column;
    align-items: unset;
    gap: 2rem;
  }
}
@media (width >= 1024px) {
  .instruction-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.instruction-item-head {
  align-items: flex-start;
  text-align: left;
  margin: 0;
}
@media (width >= 1024px) {
  .instruction-item-head {
    max-width: 37.5rem;
    align-self: center;
  }
}
.instruction-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.instruction-list li {
  position: relative;
  padding-left: 2rem;
}
.instruction-list li:before {
  content: '';
  width: 1.375rem;
  aspect-ratio: 1;
  position: absolute;
  left: 0;
  top: calc(0.5lh - 0.688rem);
  background-image: url(../img/instruction-list-icon.svg);
  background-size: 100% 100%;
}
.instruction-img {
  max-width: 36.875rem;
  position: relative;
}
@media (width < 1024px) {
  .instruction-img {
    margin: 0 auto;
    max-width: 100%;
  }
}
.instruction-img .page-decor-left {
  left: -33.75rem;
  margin-top: 3.75rem;
}
.hero-label {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  row-gap: 0.5rem;
  background-color: #f8f8f8;
  flex-wrap: wrap;
  min-height: 2.125rem;
  width: fit-content;
}
.hero-label-item {
  font-size: 0.75rem;
  font-weight: 600;
  color: #3c3c3c;
  position: relative;
}
.hero-label-item:not(:last-child) {
  padding-right: 0.875rem;
  margin-right: 0.875rem;
}
.hero-label-item:not(:last-child):before {
  content: '·';
  position: absolute;
  left: 100%;
  top: 0;
  transform: translateX(-50%);
}
.why-main {
  display: grid;
  gap: 2rem;
}
@media (width >= 1024px) {
  .why-main {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: start;
  }
}
.why-quote {
  padding: 0.625rem;
  backdrop-filter: blur(1.188rem);
  background-color: rgba(228, 228, 228, 0.6);
  border-radius: 1rem;
}
.why-quote-body {
  background-color: #fff;
  padding: 1.5rem 1.25rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-quote-title {
  font-weight: 500;
  line-height: 1.32;
}
.why-quote-title:before {
  content: '«';
  color: #1eaf96;
}
.why-quote-title:after {
  content: '»';
  color: #1eaf96;
}
.why-quote-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-left: 0.313rem;
}
.why-quote-info .advantages-item-icon {
  width: 2.75rem;
  margin: 0;
}
.why-quote-info .advantages-item-icon img {
  max-height: 1.25rem;
}
.why-quote-info-title {
  font-size: 1.125rem;
  font-weight: 700;
}
.why-quote-info-desc {
  font-weight: 500;
  color: #7d7d7d;
}
.why-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.why-stat-title {
  flex: none;
  min-width: 5.5rem;
  min-height: 4.625rem;
  padding: 0 0.5rem;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  border-right: solid 0.25rem #1eaf96;
}
@media (width < 1024px) {
  .why-stat-title {
    font-size: 2rem;
    line-height: 1.1;
  }
}
@media (width < 1024px) {
  .why-stat-title {
    min-width: 4.5rem;
  }
}
.why-stat-desc {
  font-weight: 500;
}
.pricing-decor {
  width: 283.5rem;
  height: 100.375rem;
  position: absolute;
  display: flex;
  left: calc(50% - 141.75rem);
  top: calc(50% - 50.188rem);
  z-index: -1;
}
@media (width < 1024px) {
  .pricing-decor {
    display: none;
  }
}
.pricing-main {
  padding: 0.625rem;
  backdrop-filter: blur(1.188rem);
  background-color: rgba(228, 228, 228, 0.6);
  border-radius: 1rem;
}
.pricing-body {
  display: grid;
  grid-template-columns: 1fr repeat(4, 14.5rem);
  grid-template-rows: repeat(var(--rows), 6);
  border-radius: 0.5rem;
  background-color: #fff;
  overflow: hidden;
}
@media (width < 1024px) {
  .pricing-body {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 768px) {
  .pricing-body {
    grid-template-rows: unset;
    grid-template-columns: 1fr;
  }
}
.pricing-cell {
  border-left: solid 1px #efefef;
}
@media (width >= 768px) {
  .pricing-cell {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span var(--rows);
  }
}
@media (width < 1024px) {
  .pricing-cell {
    border-top: solid 1px #efefef;
    margin-top: -1px;
  }
  .pricing-cell:nth-child(even) {
    border-left: 0;
  }
}
@media (width < 768px) {
  .pricing-cell {
    border-left: 0;
  }
}
.pricing-aside {
  border-left: 0;
}
@media (width < 1024px) {
  .pricing-aside {
    display: none;
  }
}
.pricing-aside .pricing-cell-item {
  font-weight: 700;
  text-align: left;
  justify-content: flex-start;
  color: #000;
}
.pricing-cell-head {
  padding: 1.5rem 1.25rem;
}
.pricing-aside-title {
  color: #7d7d7d;
  margin: 0 auto auto 0;
}
.pricing-cell-item {
  background-color: #f8f8f8;
  padding: 1.125rem 1.25rem;
  border-bottom: solid 1px #efefef;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  color: #7d7d7d;
}
@media (width < 1024px) {
  .pricing-cell-item[data-title]:before {
    content: attr(data-title);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #7d7d7d;
  }
}
.pricing-cell-foot {
  padding: 1.5rem 1.25rem;
}
.pricing-cell-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
@media (width >= 1024px) {
  .pricing-cost {
    font-size: 2.875rem;
  }
}
.pricing-credits {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1eaf96;
}
.pricing-desc {
  font-weight: 500;
  color: #7d7d7d;
  margin-top: 0.5rem;
}
.pricing-btn {
  width: 100%;
}
.pricing-cell-plan-pro .pricing-cell-item {
  color: #000;
}
.pricing-cell-plan-pro ~ .pricing-cell-plan .pricing-cell-item {
  color: #000;
}
.contacts-decor {
  width: 283.5rem;
  height: 100.375rem;
  position: absolute;
  display: flex;
  left: calc(50% - 141.75rem);
  top: calc(50% - 50.188rem);
  z-index: -1;
}
@media (width < 1024px) {
  .contacts-decor {
    display: none;
  }
}
.contacts-main {
  padding: 0.625rem;
  backdrop-filter: blur(1.188rem);
  background-color: rgba(228, 228, 228, 0.6);
  border-radius: 1rem;
  max-width: 66.5rem;
  margin: 0 auto;
}
.contacts-body {
  border-radius: 0.5rem;
  background-color: #fff;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contacts-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contacts-form-submit {
  margin: auto auto 0;
  min-width: 12.5rem;
}
@media (width < 480px) {
  .contacts-form-submit {
    width: 100%;
  }
}
.auth {
  flex: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (width >= 1024px) {
  .auth {
    background-color: #f8f8f8;
  }
}
.auth > .container {
  flex: auto;
  --container-width: 105rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (width < 1024px) {
  .auth > .container {
    padding: calc(var(--header-height) + 2.5rem) var(--container-padding) 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
}
.auth-aside {
  padding: 3.75rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  gap: 2rem;
}
@media (width < 1024px) {
  .auth-aside {
    display: contents;
  }
}
.auth-aside .logo {
  position: relative;
  z-index: 1;
  align-self: flex-start;
}
@media (width < 1024px) {
  .auth-aside .logo {
    position: absolute;
    left: var(--container-padding);
    top: calc(0.5 * var(--header-height));
    transform: translateY(-50%);
  }
}
.auth-decor {
  height: 28.75rem;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
@media (width < 1024px) {
  .auth-decor {
    display: none;
  }
}
.auth-decor img {
  max-width: none;
}
.sign-in-decor img {
  width: 80.125rem;
}
.auth-copyright {
  font-size: 0.875rem;
  color: #7d7d7d;
  position: relative;
  z-index: 1;
}
@media (width < 1024px) {
  .auth-copyright {
    order: 1;
    text-align: center;
  }
}
.auth-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .auth-main {
    flex: auto;
    justify-content: center;
  }
}
@media (width >= 1024px) {
  .auth-main {
    margin-right: -100vmax;
    background-color: #fff;
    padding: 3.75rem calc(100vmax + 3.75rem) 3.75rem 3.75rem;
    position: relative;
    z-index: 1;
    gap: 2rem;
  }
}
.auth-close {
  align-self: flex-end;
  margin: -1.25rem -1.25rem 0 0;
  display: flex;
  color: #7d7d7d;
  transition: color 0.4s;
}
@media (width < 1024px) {
  .auth-close {
    margin: 0;
    position: absolute;
    top: calc(0.5 * var(--header-height) - 0.75rem);
    right: var(--container-padding);
  }
}
.auth-close:hover {
  color: #1eaf96;
}
.auth-form {
  margin: auto;
  width: min(27.5rem, 100%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width < 1024px) {
  .auth-form {
    margin: 0 auto;
  }
}
@media (width >= 1024px) {
  .auth-form-title {
    font-size: 2.5rem;
  }
}
.auth-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.auth-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.auth-form-submit {
  min-width: 10.25rem;
}
.auth-form-nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  transition: color 0.4s;
  margin: -0.5rem;
  padding: 0.5rem;
  display: flex;
}
.auth-form-nav-link:hover {
  color: #178371;
}
.auth-nav {
  margin: 0 auto;
  width: min(27.5rem, 100%);
  font-weight: 500;
}
.auth-nav a {
  font-weight: 700;
  transition: color 0.4s;
}
.auth-nav a:hover {
  color: #178371;
}
.sign-up-decor img {
  width: 84.438rem;
  transform: translate(10%, -6%);
}
.recovery-decor img {
  width: 78.188rem;
}
html:has(.cabinet) {
  --header-height: 5.375rem;
  --sidebar-width: 18.75rem;
  --container-width: 100%;
}
@media (width >= 1024px) {
  html:has(.cabinet) {
    --container-padding: 6.25rem;
  }
}
@media (width >= 1024px) and (width < 1440px) {
  html:has(.cabinet) {
    --container-padding: 3.75rem;
  }
}
@media (width < 1024px) {
  html:has(.cabinet) {
    --header-height: 4.125rem;
  }
}
@media (width < 1680px) and (width >= 1024px) {
  html:has(.cabinet) {
    font-size: 0.99vw;
  }
}
html:has(.cabinet) body {
  background-color: #efefef;
}
html:has(.cabinet.small) {
  --sidebar-width: 5rem;
}
html:has(.cabinet.transition) .header-cabinet {
  transition:
    left 0.4s,
    opacity 0.4s,
    transform 0.4s;
}
.cabinet {
  flex: auto;
  display: flex;
  flex-direction: column;
}
@media (width >= 1024px) {
  .cabinet {
    padding-left: var(--sidebar-width);
  }
  .cabinet.small .cabinet-nav .logo {
    transform: translateX(-6.875rem);
  }
  .cabinet.small .cabinet-nav-menus {
    transform: translateX(-0.625rem);
  }
  .cabinet.small .cabinet-nav-menu a span {
    opacity: 0;
  }
  .cabinet.small .cabinet-nav-credits,
  .cabinet.small .cabinet-nav-copyright {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .cabinet.transition {
    transition: padding-left 0.4s;
  }
  .cabinet.transition .cabinet-nav {
    transition: width 0.4s;
  }
  .cabinet.transition .cabinet-nav .logo {
    transition: transform 0.4s;
  }
  .cabinet.transition .cabinet-nav-width-toggle {
    transition:
      color 0.4s,
      left 0.4s;
  }
  .cabinet.transition .cabinet-nav-width-toggle svg {
    transition:
      opacity 0.4s,
      transform 0.4s;
  }
  .cabinet.transition .cabinet-nav-menus {
    transition: transform 0.4s;
  }
  .cabinet.transition .cabinet-nav-menu a span {
    transition: opacity 0.4s;
  }
  .cabinet.transition .cabinet-nav-credits,
  .cabinet.transition .cabinet-nav-copyright {
    transition:
      opacity 0.4s,
      visibility 0.4s;
  }
}
@media (width >= 1024px) {
  .header-cabinet {
    background: none;
    left: var(--sidebar-width);
  }
  .header-cabinet:after {
    display: none;
  }
}
.header-cabinet .container {
  align-items: unset;
  flex-direction: column;
}
@media (width >= 1024px) {
  .header-cabinet .container {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}
.header-cabinet .header-nav-toggle {
  order: -1;
}
.header-cabinet-body {
  flex: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
@media (width >= 1024px) {
  .header-cabinet-body {
    padding: 0.375rem;
    border-radius: 0.5rem;
    background-color: #fff;
  }
}
.header-cabinet-search {
  width: 39rem;
  min-width: 0;
  position: relative;
}
@media (width < 1024px) {
  .header-cabinet-search {
    width: auto;
    flex: auto;
    margin-right: -0.625rem;
  }
}
.header-cabinet-search .input {
  padding-right: 3.5rem;
}
.header-cabinet-search-submit {
  position: absolute;
  right: 1.25rem;
  top: calc(50% - 0.625rem);
  display: flex;
  color: #1eaf96;
  transition: color 0.4s;
}
.header-cabinet-search-submit svg {
  --size: 1.25rem;
}
.header-cabinet-search-submit:hover {
  color: #178371;
}
.header-cabinet-user {
  flex: none;
  position: relative;
}
.header-cabinet-user.active .header-cabinet-user-toggle {
  background-color: #178371;
}
.header-cabinet-user-toggle {
  width: 3.375rem;
  aspect-ratio: 1;
  border-radius: 0.375rem;
  display: grid;
  place-items: center;
  transition: background-color 0.4s;
  background-color: #1eaf96;
  color: #fff;
}
.header-cabinet-user-toggle:hover {
  background-color: #178371;
}
.header-cabinet-user-nav {
  flex-direction: column;
  width: 16.563rem;
  border-radius: 0.5rem;
  overflow: hidden auto;
  max-height: calc(100vh - var(--header-height) - 0.75rem);
  box-shadow: 0px 0px 6.25rem 0px #0000001a;
  background-color: #fff;
  transform: translateY(1.25rem);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header-cabinet-user-nav::-webkit-scrollbar {
  display: none;
}
.header-cabinet-user-head {
  padding: 1.375rem 1.875rem;
  background-color: #1eaf96;
  color: #fff;
}
.header-cabinet-user-name {
  font-size: 1.125rem;
  font-weight: 700;
}
.header-cabinet-user-email {
  font-size: 1rem;
  font-weight: 500;
}
.header-cabinet-user-credits {
  padding: 1.625rem 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom: solid 1px #efefef;
}
.header-cabinet-user-credits:last-child {
  border-bottom: 0;
}
.header-cabinet-user-credits-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.header-cabinet-user-credits-item-title {
  font-size: 0.875rem;
  font-weight: 700;
}
.header-cabinet-user-credits-item-chart {
  height: 0.375rem;
  border-radius: 0.25rem;
  display: flex;
}
.header-cabinet-user-credits-item-chart:before {
  content: '';
  border-radius: inherit;
  background-color: #1eaf96;
  width: calc(var(--percent) * 1%);
}
.header-cabinet-user-menu {
  padding: 1rem 1.875rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.header-cabinet-user-menu a {
  margin: -0.5rem -1.875rem;
  padding: 0.5rem 1.875rem;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.4s;
  color: inherit;
  display: flex;
}
.header-cabinet-user-menu a:hover {
  color: #1eaf96;
}
.header-cabinet-user-menu a.logout-link {
  color: #f45151;
}
.header-cabinet-user-menu a.logout-link:hover {
  color: #f12121;
}
@media (width < 1024px) {
  .cabinet-nav {
    background-color: rgba(0, 0, 0, 0.2);
    top: calc(var(--header-height) - 1px);
  }
  .cabinet-nav .modal-wrapp {
    padding: 0;
    background: none;
  }
  .cabinet-nav .modal-body {
    width: 17.5rem;
    margin-left: 0;
    transform: translateX(-100%);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #fff;
    min-height: 100%;
    padding: 0;
  }
  .cabinet-nav.active .modal-body {
    transform: translateX(0);
  }
}
@media (width >= 1024px) {
  .cabinet-nav {
    right: auto;
    width: var(--sidebar-width);
  }
  .cabinet-nav:not(.active) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .cabinet-nav .modal-wrapp {
    padding: 0.625rem;
    background: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .cabinet-nav .modal-wrapp::-webkit-scrollbar {
    display: none;
  }
  .cabinet-nav .modal-body {
    transform: unset;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    will-change: transform;
    padding: 0;
  }
}
.cabinet-nav .logo {
  margin: 0 auto;
}
.cabinet-nav-width-toggle {
  position: absolute;
  left: calc(var(--sidebar-width) + 0.313rem);
  top: calc(0.5 * var(--header-height) - 0.75rem);
  transition: color 0.4s;
  display: flex;
  color: #1eaf96;
  margin: -0.25rem;
  padding: 0.25rem;
  z-index: 6;
}
@media (width < 1024px) {
  .cabinet-nav-width-toggle {
    display: none;
  }
}
.cabinet-nav-width-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);
}
.cabinet-nav-width-toggle:hover {
  color: #178371;
}
.cabinet-nav-width-toggle.active svg:first-child {
  opacity: 0;
  transform: scale(0);
}
.cabinet-nav-width-toggle.active svg:last-child {
  opacity: 1;
  transform: scale(1);
}
.cabinet-nav-body {
  padding: 1.5rem 1.25rem;
  flex: auto;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  width: 17.5rem;
}
@media (width < 1024px) {
  .cabinet-nav-body {
    gap: 2rem;
    width: auto;
  }
}
.cabinet-nav-menus {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cabinet-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.cabinet-nav-menu a {
  padding: 0.5rem 1.75rem;
  margin: 0 -1.25rem;
  display: flex;
  align-items: center;
  min-height: 2.25rem;
  color: #000;
  gap: 0.75rem;
  transition: color 0.4s;
}
.cabinet-nav-menu a svg {
  --size: 1.25rem;
  color: #a6a6a6;
  transition: color 0.4s;
}
.cabinet-nav-menu a:hover {
  color: #1eaf96;
}
.cabinet-nav-menu a:hover svg {
  color: #1eaf96;
}
.cabinet-nav-menu .active a {
  color: #f45151;
}
.cabinet-nav-menu .active a svg {
  color: #f45151;
}
.cabinet-nav-credits {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (width < 1024px) {
  .cabinet-nav-credits {
    margin: 0.5rem 0;
  }
}
.cabinet-nav-credits-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #7d7d7d;
}
.cabinet-nav-credits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cabinet-nav-credits-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cabinet-nav-credits-item-title {
  font-size: 0.875rem;
  font-weight: 500;
}
.cabinet-nav-credits-item-chart {
  height: 0.5rem;
  border-radius: 0.25rem;
  display: flex;
  background-color: #efefef;
}
.cabinet-nav-credits-item-chart:before {
  content: '';
  border-radius: inherit;
  background-color: #1eaf96;
  width: calc(var(--percent) * 1%);
}
.cabinet-nav-copyright {
  margin-top: auto;
  font-size: 0.875rem;
  color: #7d7d7d;
}
.cabinet-main {
  padding: 2.5rem 0;
  flex: auto;
  display: flex;
  flex-direction: column;
}
.cabinet-main > .container {
  flex: auto;
  display: flex;
  flex-direction: column;
}
.cabinet-head {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
}
@media (width < 768px) {
  .cabinet-head {
    flex-direction: column;
    align-items: unset;
  }
}
.cabinet-head:last-child {
  margin-bottom: 0;
}
.cabinet-head-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cabinet-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #7d7d7d;
}
a.cabinet-label {
  transition: color 0.4s;
}
a.cabinet-label:hover {
  color: #1eaf96;
}
@media (width >= 1024px) {
  .cabinet-title {
    font-size: 2.5rem;
  }
}
.cabinet-head-btns {
  display: flex;
  gap: 1.25rem;
}
.cabinet-head-btns .btn {
  --height: 2.5rem;
  font-size: 0.813rem;
  padding: 0.375rem 1rem;
}
.cabinet-dashboard {
  display: grid;
  gap: 0.625rem;
}
@media (width >= 1024px) {
  .cabinet-dashboard {
    grid-template-columns: 1fr 1fr;
  }
}
.cabinet-dashboard-card {
  display: flex;
  flex-direction: column;
  padding: 1.875rem;
  background-color: #fff;
  border-radius: 0.5rem;
  gap: 1rem;
}
@media (width < 1024px) {
  .cabinet-dashboard-card {
    padding: 1.5rem 1.25rem;
  }
}
.cabinet-dashboard-card.full {
  grid-column: 1/-1;
}
.cabinet-dashboard-card-title {
  font-size: 1.375rem;
  font-weight: 700;
}
.cabinet-dashboard-credits-desc {
  font-size: 1.125rem;
  font-weight: 500;
  color: #7d7d7d;
}
.cabinet-dashboard-credits-desc b {
  color: #000;
}
.cabinet-dashboard-credits {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.cabinet-dashboard-credits-chart {
  position: relative;
  margin: 0 auto;
  min-width: 10.125rem;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
}
.cabinet-dashboard-credits-chart-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cabinet-dashboard-credits-chart-svg svg {
  width: 100%;
  height: 100%;
}
.cabinet-dashboard-credits-chart-svg svg path {
  stroke-width: 0.625rem;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #efefef;
  fill: none;
  vector-effect: non-scaling-stroke;
}
.cabinet-dashboard-credits-chart-svg svg path:last-child {
  stroke: #1eaf96;
  stroke-dasharray: 100;
  stroke-dashoffset: calc(100 - var(--percent));
}
.cabinet-dashboard-credits-chart-title {
  margin: 0 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
}
.cabinet-dashboard-credits-chart-desc {
  margin: 0 1.5rem;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  color: #7d7d7d;
}
.cabinet-dashboard-credits-info {
  display: flex;
  gap: 1.625rem;
  align-items: center;
}
.cabinet-dashboard-credits-info-item {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
}
.cabinet-dashboard-credits-info-item:before {
  content: '';
  flex: none;
  width: 1.625rem;
  height: 0.5rem;
  border-radius: 0.5rem;
  background-color: #efefef;
}
.cabinet-dashboard-credits-info-item:first-child:before {
  background-color: #1eaf96;
}
.cabinet-dashboard-buy-btn {
  margin-top: auto;
}
@media (width >= 480px) {
  .cabinet-dashboard-buy-btn {
    align-self: flex-start;
  }
}
.cabinet-dashboard-overview {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
}
@media (width >= 768px) {
  .cabinet-dashboard-overview {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (width < 1024px) {
  .cabinet-dashboard-overview {
    margin-top: 0.5rem;
  }
}
.cabinet-dashboard-overview:not(:last-child) {
  padding-bottom: 1.75rem;
  margin-bottom: 0.75rem;
  border-bottom: solid 1px #efefef;
}
@media (width < 1024px) {
  .cabinet-dashboard-overview:not(:last-child) {
    padding-bottom: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
.cabinet-dashboard-overview-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cabinet-dashboard-overview-item-title {
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
}
.cabinet-dashboard-overview-item-desc {
  font-weight: 500;
  font-size: 1.063rem;
  color: #7d7d7d;
}
.cabinet-dashboard-progress {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: auto;
}
@media (width < 1024px) {
  .cabinet-dashboard-progress {
    gap: 1.5rem;
  }
}
.cabinet-dashboard-progress-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cabinet-dashboard-progress-item-title {
  font-size: 1rem;
  font-weight: 500;
}
.cabinet-dashboard-progress-item-chart {
  height: 0.75rem;
  border-radius: 0.5rem;
  display: flex;
  background-color: #efefef;
}
.cabinet-dashboard-progress-item-chart:before {
  content: '';
  border-radius: inherit;
  background-color: #1eaf96;
  width: calc(var(--percent) * 1%);
}
.cabinet-dashboard-docs {
  display: grid;
  gap: 1.25rem 0.625rem;
}
@media (width >= 1024px) {
  .cabinet-dashboard-docs {
    grid-template-columns: 1fr 1fr;
  }
}
.cabinet-dashboard-doc {
  padding-bottom: 1.25rem;
  border-bottom: solid 1px #efefef;
}
@media (width >= 1024px) {
  .cabinet-dashboard-doc {
    padding-right: 3.75rem;
  }
  .cabinet-dashboard-doc:nth-last-child(2):not(:even) {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.cabinet-dashboard-doc:nth-last-child(1) {
  border-bottom: 0;
  padding-bottom: 0;
}
.cabinet-dashboard-doc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: inherit;
  font-size: 0.938rem;
  font-weight: 500;
}
.cabinet-dashboard-doc-item:hover .cabinet-dashboard-doc-item-title {
  color: #1eaf96;
}
.cabinet-dashboard-doc-item-icon {
  flex: none;
  width: 2.25rem;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  background-color: #1eaf96;
}
.cabinet-dashboard-doc-item-icon img {
  width: 0.75rem;
  aspect-ratio: 1;
  object-fit: contain;
}
.cabinet-dashboard-doc-item-body {
  display: flex;
  flex-direction: column;
  align-self: center;
}
.cabinet-dashboard-doc-item-title {
  transition: color 0.4s;
}
.cabinet-dashboard-doc-item-desc {
  color: #7d7d7d;
}
.cabinet-dashboard-doc-item-date {
  font-size: 0.813rem;
  font-weight: 700;
  margin-top: 0.375rem;
  color: #7d7d7d;
}
.cabinet-dashboard-doc-item-date span {
  color: #1eaf96;
}
.cabinet-filter {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.sort-select .select-toggle {
  gap: 0.5rem;
}
.sort-select .select-toggle svg {
  --size: 0.875rem;
}
.sort-select .select-title {
  font-size: 0.813rem;
  font-weight: 700;
}
.sort-select .select-title:before {
  content: attr(data-placeholder);
  color: #000 !important;
  font-size: 0.813rem;
  font-weight: 700;
}
.sort-select .select-options {
  right: auto;
}
.cabinet-filter-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.cabinet-filter-nav-btn {
  padding: 0.125rem 0.625rem;
  border-radius: 1rem;
  display: flex;
  min-height: 1.5rem;
  align-items: center;
  color: inherit;
  font-size: 0.813rem;
  font-weight: 700;
  transition:
    color 0.4s,
    background-color 0.4s;
}
.cabinet-filter-nav-btn:hover {
  color: #1eaf96;
}
.cabinet-filter-nav-btn.active {
  background-color: #e9e9e9;
  pointer-events: none;
}
.cabinet-filter-view {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cabinet-filter-view-btn {
  display: flex;
  transition: color 0.4s;
  margin: -0.25rem;
  padding: 0.25rem;
}
.cabinet-filter-view-btn:hover {
  color: #1eaf96;
}
.cabinet-filter-view-btn.active {
  pointer-events: none;
}
.cabinet-filter-view-btn svg {
  --size: 0.875rem;
}
.cabinet-folders {
  display: grid;
  gap: 0.625rem;
  margin-bottom: 2rem;
}
@media (width >= 1024px) {
  .cabinet-folders {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 2.5rem;
  }
}
.cabinet-folders:last-child {
  margin-bottom: 0;
}
.cabinet-folder {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: #fff;
  position: relative;
}
.cabinet-folder:hover .cabinet-folder-title:not(.input) {
  color: #1eaf96;
}
.cabinet-folder-icon {
  display: flex;
  flex: none;
  width: 3.125rem;
}
.cabinet-folder-body {
  flex: auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.cabinet-folder-title {
  font-size: 1.063rem;
  font-weight: 600;
}
.cabinet-folder-title:not(.input) {
  all: unset;
  font-size: 1.063rem;
  font-weight: 600;
  transition: color 0.4s;
}
.cabinet-folder-title.input {
  position: relative;
  z-index: 2;
}
.cabinet-folder-date {
  font-size: 0.875rem;
  color: #7d7d7d;
  font-weight: 500;
}
.cabinet-item-actions {
  position: relative;
  z-index: 66;
  flex: none;
}
.cabinet-item-actions-toggle {
  display: flex;
  transition: color 0.4s;
  padding: 0.5rem;
  margin: -0.5rem;
}
.cabinet-item-actions-toggle:hover {
  color: #1eaf96;
}
.cabinet-item-actions-list {
  background-color: #fff;
  box-shadow: 0px 0px 6.25rem 0px #0000001a;
  border-right: 0.5rem;
  padding: 1.5rem 1.875rem;
  flex-direction: column;
  gap: 1rem;
  min-width: 9.125rem;
  border-radius: 0.5rem;
}
.cabinet-item-actions-btn {
  align-self: stretch;
  margin: -0.5rem -1.875rem;
  padding: 0.5rem 1.875rem;
  font-size: 0.938rem;
  font-weight: 700;
  transition: color 0.4s;
}
.cabinet-item-actions-btn:hover {
  color: #1eaf96;
}
.cabinet-item-actions-btn-delete-folder {
  color: #f45151;
}
.cabinet-item-actions-btn-delete-folder:hover {
  color: #f12121;
}
.cabinet-folder-link {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
}
.cabinet-documents {
  display: grid;
  grid-template-columns: 2fr 1fr max-content 0.5fr max-content;
  gap: 0.625rem 2rem;
}
.cabinet-documents.grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}
@media (width < 1024px) {
  .cabinet-documents.grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width < 480px) {
  .cabinet-documents.grid {
    grid-template-columns: 1fr;
  }
}
.cabinet-documents.grid .cabinet-documents-head {
  display: none;
}
.cabinet-documents.grid .cabinet-documents-item {
  display: flex;
  flex-direction: column;
  align-items: unset;
  grid-column: unset;
  padding: 1.25rem;
  border-radius: 1.25rem;
  gap: 1rem;
}
.cabinet-documents.grid .cabinet-documents-item-type {
  order: -1;
}
.cabinet-documents.grid .cabinet-documents-item-icon {
  display: none;
}
.cabinet-documents.grid .cabinet-documents-item-date {
  padding-top: 1rem;
  border-top: solid 1px #efefef;
}
.cabinet-documents.grid .cabinet-documents-item-actions {
  justify-content: space-between;
  margin-top: auto;
}
.cabinet-documents.grid .cabinet-documents-item-cost {
  display: none;
}
.cabinet-documents.grid .cabinet-item-actions-list {
  margin-top: 1rem;
}
@media (width < 1024px) {
  .cabinet-documents {
    grid-template-columns: 1fr 1fr;
  }
  .cabinet-documents .cabinet-documents-head {
    display: none;
  }
  .cabinet-documents .cabinet-documents-item {
    display: flex;
    flex-direction: column;
    align-items: unset;
    grid-column: unset;
    padding: 1.25rem;
    border-radius: 1.25rem;
    gap: 1rem;
  }
  .cabinet-documents .cabinet-documents-item-type {
    order: -1;
  }
  .cabinet-documents .cabinet-documents-item-icon {
    display: none;
  }
  .cabinet-documents .cabinet-documents-item-date {
    padding-top: 1rem;
    border-top: solid 1px #efefef;
  }
  .cabinet-documents .cabinet-documents-item-actions {
    justify-content: space-between;
    margin-top: auto;
  }
  .cabinet-documents .cabinet-documents-item-cost {
    display: none;
  }
  .cabinet-documents .cabinet-item-actions-list {
    margin-top: 1rem;
  }
}
@media (width < 480px) {
  .cabinet-documents {
    grid-template-columns: 1fr;
  }
}
.cabinet-documents-head {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  color: #7d7d7d;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0;
}
.cabinet-documents-head div:last-child {
  text-align: right;
}
.cabinet-documents-item {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  padding: 1.375rem 1.25rem;
  background-color: #fff;
  border-radius: 0.5rem;
  align-items: center;
  position: relative;
  font-size: 0.938rem;
  font-weight: 500;
}
.cabinet-documents-item:has(.cabinet-documents-item-link:hover) .cabinet-documents-item-title {
  color: #1eaf96;
}
.cabinet-documents-item-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.cabinet-documents-item-icon {
  flex: none;
  width: 2.25rem;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  background-color: #1eaf96;
}
.cabinet-documents-item-icon img {
  width: 0.75rem;
  aspect-ratio: 1;
  object-fit: contain;
}
.cabinet-documents-item-title {
  transition: color 0.4s;
}
.cabinet-documents-item-type {
  color: #1eaf96;
}
.cabinet-documents-item-date {
  padding-right: 1.5rem;
}
.cabinet-documents-item-date span {
  color: #7d7d7d;
}
.cabinet-documents-item-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.cabinet-documents-item-actions .cabinet-item-actions {
  margin: 0 -0.5rem;
}
.cabinet-documents-item-actions .cabinet-item-actions-list {
  margin-top: 1.25rem;
  right: -0.75rem;
}
.cabinet-remove-btn {
  flex: none;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: #fff;
  position: relative;
  z-index: 2;
  color: #f45151;
  transition:
    background-color 0.4s,
    color 0.4s;
  box-shadow: 0px 0px 1.25rem 0px #00000040;
}
.cabinet-remove-btn:hover {
  background-color: #f45151;
  color: #fff;
}
.cabinet-remove-btn svg {
  --size: 1rem;
}
.cabinet-documents-item-link {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
}
.modal-cabinet-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-cabinet-form-btns {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}
@media (width >= 480px) {
  .modal-cabinet-form-btns {
    grid-template-columns: min-content min-content;
  }
  .modal-cabinet-form-btns .btn {
    min-width: 9.5rem;
  }
}
.cabinet-generator {
  display: grid;
  gap: 2rem;
}
@media (width >= 1024px) {
  .cabinet-generator {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.cabinet-generator .input {
  font-size: 0.875rem;
}
.cabinet-generator .form-block-title {
  font-size: 0.875rem;
}
.cabinet-generator-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cabinet-generator-card {
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  background-color: #fff;
  gap: 1.875rem;
}
@media (width < 1024px) {
  .cabinet-generator-card {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
.cabinet-generator-card-title {
  font-size: 1.25rem;
  font-weight: 700;
}
.cabinet-generator-steps {
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  position: relative;
  counter-reset: c;
  margin-top: -0.875rem;
}
.cabinet-generator-steps:first-child {
  margin-top: 0;
}
.cabinet-generator-steps:after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 0.625rem;
  border-radius: 0.625rem;
  background-color: #efefef;
  pointer-events: none;
}
.cabinet-generator-step {
  padding: 0.5rem 0.5rem 1.25rem;
  text-align: center;
  color: #7d7d7d;
  font-size: 0.938rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: color 0.4s;
  flex: auto;
}
@media (width < 1024px) {
  .cabinet-generator-step {
    font-size: 0.875rem;
  }
}
.cabinet-generator-step span {
  display: none;
}
.cabinet-generator-step:before {
  content: counter(c);
  counter-increment: c;
}
.cabinet-generator-step:after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 0.625rem;
  border-radius: 0.625rem;
  background-color: #1eaf96;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.cabinet-generator-step:hover {
  color: #1eaf96;
}
.cabinet-generator-step.active {
  color: #000;
}
.cabinet-generator-step.active span {
  display: inline;
}
.cabinet-generator-step.active:before {
  content: counter(c) '.';
}
.cabinet-generator-step.active:after {
  opacity: 1;
}
.cabinet-generator-step.active ~ .cabinet-generator-step {
  pointer-events: none;
}
.cabinet-generator-inputs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cabinet-generator-btns {
  display: grid;
}
.cabinet-generator-btns:has(.btn:nth-child(2)) {
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.cabinet-generator-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cabinet-generator-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cabinet-generator-card-head-link,
.cabinet-generator-keywords-select-all {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1eaf96;
  transition: color 0.4s;
  margin: -0.25rem;
  padding: 0.25rem;
}
.cabinet-generator-card-head-link:hover,
.cabinet-generator-keywords-select-all:hover {
  color: #178371;
}
.cabinet-generator-keywords {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.cabinet-generator-radios {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.cabinet-generator-radio {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 1.5rem;
  background-color: #fdfdfd;
  border-radius: 0.5rem;
  position: relative;
  transition:
    background-color 0.4s,
    box-shadow 0.4s;
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0);
}
.cabinet-generator-radio:hover {
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.cabinet-generator-radio:has(input:checked) {
  box-shadow: 0px 0px 1.25rem 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.cabinet-generator-radio:has(input:checked) .cabinet-generator-radio-icon {
  background-color: #1eaf96;
}
.cabinet-generator-radio:has(input:checked) .cabinet-generator-radio-icon svg {
  transform: scale(1);
  opacity: 1;
}
.cabinet-generator-radio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  border-radius: inherit;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0;
}
.cabinet-generator-radio-icon {
  flex: none;
  width: 2.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #efefef;
  transition: background-color 0.4s;
  display: grid;
  place-items: center;
  color: #fff;
}
.cabinet-generator-radio-icon svg {
  transition:
    transform 0.4s,
    opacity 0.4s;
  transform: scale(0);
  opacity: 0;
}
.cabinet-generator-radio-title {
  font-size: 1.125rem;
  font-weight: 500;
}
.cabinet-generator-radio-list {
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  gap: 0.125rem;
}
.cabinet-generator-radio-list span {
  position: relative;
  padding-left: 1.375rem;
}
.cabinet-generator-radio-list span:before {
  content: '';
  position: absolute;
  width: 0.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: currentColor;
  left: 0.5rem;
  top: calc(0.5lh - 0.125rem);
}
.cabinet-generator-imgs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.cabinet-generator-img {
  aspect-ratio: 550/294;
  border-radius: 0.5rem;
}
.cabinet-content-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
}
@media (width < 1024px) {
  .cabinet-content-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (width < 768px) {
  .cabinet-content-list {
    grid-template-columns: 1fr 1fr;
  }
}
.cabinet-content-item {
  min-width: 0;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: inherit;
}
@media (width < 1024px) {
  .cabinet-content-item {
    padding: 1.25rem 1rem;
  }
}
.cabinet-content-item:hover .cabinet-content-item-title {
  color: #1eaf96;
}
.cabinet-content-item-icon {
  margin: -0.125rem 0.375rem 1.375rem;
  width: 2.75rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: none;
  position: relative;
}
@media (width < 1024px) {
  .cabinet-content-item-icon {
    margin-bottom: 1rem;
  }
}
.cabinet-content-item-icon:before,
.cabinet-content-item-icon:after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.625rem;
}
.cabinet-content-item-icon:before {
  background-color: #1eaf96;
  transform: rotate(45deg);
}
.cabinet-content-item-icon:after {
  backdrop-filter: blur(0.75rem);
  box-shadow: 0px 0.188rem 0.563rem 0px #6d555540;
  border: solid 0.125rem rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.3);
}
.cabinet-content-item-icon img {
  position: relative;
  z-index: 1;
  max-height: 1.25rem;
  max-width: 1.25rem;
  object-fit: contain;
}
.cabinet-content-item-title {
  letter-spacing: 0;
  transition: color 0.4s;
}
.cabinet-content-item-desc {
  font-size: 0.938rem;
  font-weight: 500;
  color: #7d7d7d;
}
@media (width < 480px) {
  .cabinet-content-item-desc {
    font-size: 0.875rem;
  }
}
.cabinet-image-generator {
  padding: 1.5rem 1.5rem 2.5rem;
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.cabinet-image-generator:last-child {
  margin-bottom: 0;
}
.cabinet-image-generator-model {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.cabinet-image-generator-model-title {
  min-height: 1.5rem;
  display: flex;
  align-items: center;
  font-size: 0.813rem;
  font-weight: 700;
}
.cabinet-image-generator-model-radios {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.cabinet-image-generator-model-radio {
  position: relative;
  min-height: 1.5rem;
  padding: 0.125rem 0.625rem;
  border-radius: 0.625rem;
  font-size: 0.813rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  transition:
    color 0.4s,
    background-color 0.4s;
}
.cabinet-image-generator-model-radio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  border-radius: inherit;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0;
}
.cabinet-image-generator-model-radio:hover {
  color: #1eaf96;
}
.cabinet-image-generator-model-radio:has(:checked) {
  color: #000;
  background-color: #efefef;
}
.cabinet-image-generator-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}
.cabinet-image-generator-inputs {
  display: flex;
}
@media (width < 1024px) {
  .cabinet-image-generator-inputs {
    flex-direction: column;
    gap: 1rem;
  }
}
.cabinet-image-generator-inputs .input-block {
  flex: auto;
  min-width: 0;
}
@media (width >= 1024px) {
  .cabinet-image-generator-inputs .input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cabinet-image-generator-submit {
  min-width: 15.125rem;
}
@media (width >= 1024px) {
  .cabinet-image-generator-submit {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (width < 1024px) and (width >= 480px) {
  .cabinet-image-generator-submit {
    align-self: flex-start;
  }
}
.cabinet-image-generator-result {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cabinet-image-generator-result-title {
  letter-spacing: 0;
  line-height: 1.2;
}
.cabinet-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (width < 1024px) {
  .cabinet-images {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
  }
}
.cabinet-image-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  will-change: transform;
  background-color: #fff;
  font-size: 0.938rem;
  font-weight: 500;
  border-radius: 0.5rem;
}
.cabinet-image-item .cabinet-documents-item-date {
  padding-top: 1rem;
  border-top: solid 1px #efefef;
}
.cabinet-image-item .cabinet-documents-item-actions {
  padding-top: 0.25rem;
  margin-top: auto;
  justify-content: space-between;
}
.cabinet-image-item-img {
  aspect-ratio: 280/210;
  flex: none;
}
.cabinet-image-item-body {
  flex: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1.5rem;
}
@media (width < 1024px) {
  .cabinet-image-item-body {
    padding: 1rem;
  }
}
.cabinet-top-up {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.cabinet-top-up-info {
  justify-content: space-between;
  gap: 3rem;
}
@media (width >= 768px) {
  .cabinet-top-up-info {
    flex-direction: row;
  }
}
@media (width < 1024px) {
  .cabinet-top-up-info {
    gap: 1.5rem;
  }
}
@media (width >= 768px) {
  .cabinet-top-up-info .cabinet-dashboard-credits {
    margin: auto 3rem auto auto;
  }
}
@media (width >= 768px) and (width < 1024px) {
  .cabinet-top-up-info .cabinet-dashboard-credits {
    margin-right: 0;
  }
}
.cabinet-top-up-info-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width < 768px) {
  .cabinet-top-up-info-body {
    display: contents;
  }
}
.cabinet-top-up-info-body .cabinet-dashboard-buy-btn {
  margin-top: auto;
}
@media (width < 768px) {
  .cabinet-top-up-info-body .cabinet-dashboard-buy-btn {
    order: 1;
  }
}
.cabinet-top-up-history {
  width: 100%;
  font-size: 0.938rem;
  font-weight: 500;
}
@media (width < 768px) {
  .cabinet-top-up-history {
    display: block;
  }
}
.cabinet-top-up-history thead {
  color: #9ea1a9;
  font-size: 0.688rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (width < 768px) {
  .cabinet-top-up-history thead {
    display: none;
  }
}
.cabinet-top-up-history thead td {
  padding: 0.75rem 1.5rem 0.75rem 0;
}
.cabinet-top-up-history thead td:last-child {
  padding-right: 0;
  text-align: right;
}
@media (width < 768px) {
  .cabinet-top-up-history tbody {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .cabinet-top-up-history tbody tr {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .cabinet-top-up-history tbody tr:not(:last-child) {
    padding-bottom: 1.25rem;
    border-bottom: solid 1px #efefef;
  }
  .cabinet-top-up-history tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: right;
  }
  .cabinet-top-up-history tbody td:before {
    content: attr(data-title) ':';
    color: #9ea1a9;
    font-size: 0.688rem;
    font-weight: 700;
    text-transform: uppercase;
  }
}
@media (width >= 768px) {
  .cabinet-top-up-history tbody td {
    padding: 1.25rem 1.5rem 1.25rem 0;
    border-top: solid 1px #efefef;
  }
  .cabinet-top-up-history tbody td:last-child {
    padding-right: 0;
    text-align: right;
  }
  .cabinet-top-up-history tbody tr:last-child td {
    padding-bottom: 0;
  }
}
.cabinet-table-date span {
  color: #9ea1a9;
}
.top-up-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.top-up-form-submit {
  align-self: flex-start;
  min-width: 11.625rem;
}
.cabinet-my-orders-table {
  width: 100%;
  border-collapse: separate;
  font-size: 0.938rem;
  font-weight: 500;
}
@media (width < 1024px) {
  .cabinet-my-orders-table {
    display: block;
  }
}
.cabinet-my-orders-table thead {
  font-size: 0.688rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #7d7d7d;
}
@media (width < 1024px) {
  .cabinet-my-orders-table thead {
    display: none;
  }
}
.cabinet-my-orders-table thead td {
  padding: 0 0 1.25rem 1.25rem;
}
.cabinet-my-orders-table thead td:last-child {
  text-align: right;
}
@media (width < 1024px) {
  .cabinet-my-orders-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .cabinet-my-orders-table tbody tr {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    border-radius: 0.5rem;
    background-color: #fff;
  }
  .cabinet-my-orders-table tbody tr:not(:last-child) {
    padding-bottom: 1.25rem;
    border-bottom: solid 1px #efefef;
  }
  .cabinet-my-orders-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    text-align: right;
  }
  .cabinet-my-orders-table tbody td:before {
    content: attr(data-title) ':';
    color: #7d7d7d;
    font-size: 0.688rem;
    font-weight: 700;
    text-transform: uppercase;
  }
}
@media (width >= 1024px) {
  .cabinet-my-orders-table tbody td {
    padding: 1.25rem 0 1.25rem 1.25rem;
    background-color: #fff;
    border-bottom: solid 1px #efefef;
  }
  .cabinet-my-orders-table tbody td:last-child {
    padding-right: 1rem;
    width: 0;
  }
  .cabinet-my-orders-table tbody tr:first-child td:first-child {
    border-top-left-radius: 0.5rem;
  }
  .cabinet-my-orders-table tbody tr:first-child td:last-child {
    border-top-right-radius: 0.5rem;
  }
  .cabinet-my-orders-table tbody tr:last-child td {
    border-bottom: 0;
  }
  .cabinet-my-orders-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 0.5rem;
  }
  .cabinet-my-orders-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0.5rem;
  }
}
.cabinet-settings {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (width >= 1024px) {
  .cabinet-settings {
    grid-template-columns: 1fr 1fr;
  }
}
.cabinet-setting-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cabinet-setting-form .form-group {
  gap: 1.25rem 2rem;
}
.cabinet-setting-form-submit {
  min-width: 9.625rem;
  align-self: flex-start;
}
.cabinet-content-form-wrapp {
  display: grid;
  gap: 2.5rem 5rem;
}
@media (width >= 1024px) {
  .cabinet-content-form-wrapp {
    grid-template-columns: 1fr 1fr;
  }
}
.cabinet-content-editor {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.cabinet-generated-document {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: min(41rem, 100%);
  flex: auto;
}
.cabinet-generated-document-result {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 2.5rem;
}
@media (width < 1024px) {
  .cabinet-generated-document-result {
    margin-top: 1.5rem;
  }
}
.cabinet-generated-document-submit {
  margin-top: auto;
}
