.aton-list.-number {
  list-style-type: none;
  counter-reset: li;
  border-top: 1px solid #9c9c9c;
}
.aton-list.-number > .aton-list__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid #9c9c9c;
  counter-increment: li;
}
.aton-list.-number > .aton-list__item::before {
  display: inline-flex;
  min-width: 70px;
  margin-bottom: 24px;
  content: "0" counter(li) ".";
  font-size: 42px;
  line-height: 120%;
  font-weight: 300;
  color: #7000ff;
}
.aton-list.-number > .aton-list__item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 1365px) {
  .aton-list.-number > .aton-list__item::before {
    font-size: 30px;
  }
}
.aton-list.-number .aton-list__title {
  margin-bottom: 24px;
  font-size: 30px;
  line-height: 120%;
  font-weight: 400;
  color: #0f0f0f;
}
@media screen and (max-width: 1365px) {
  .aton-list.-number .aton-list__title {
    font-size: 20px;
  }
}
.aton-list.-number .aton-list__description {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
  color: #9c9c9c;
}
@media screen and (min-width: 1920px) {
  .aton-list.-number .aton-list__description {
    font-size: 18px;
  }
}
@media screen and (max-width: 1365px) {
  .aton-list.-number .aton-list__description {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .aton-list.-number .aton-list__description {
    font-size: 14px;
  }
}
.aton-list.-square {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 60px;
  column-gap: 40px;
}
.aton-list.-square .aton-list__item::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 24px;
  background-color: #7000ff;
  border-radius: 2px;
}
@media screen and (min-width: 1920px) {
  .aton-list.-square .aton-list__title {
    max-width: 315px;
  }
}
.aton-list.-square .aton-list__description {
  font-size: 14px;
  line-height: 180%;
  font-weight: 400;
  color: #0f0f0f;
}
@media screen and (min-width: 1920px) {
  .aton-list.-square .aton-list__description {
    max-width: 315px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1365px) {
  .aton-list.-square .aton-list__description {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .aton-list.-square .aton-list__description {
    font-size: 14px;
  }
}
.aton-list.-square .aton-list__subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 24px;
}
.aton-list.-square .aton-list__subtitle:last-child {
  margin-bottom: 0;
}
.aton-list.-square.-dark .aton-list__description {
  color: #dbdbdb;
}
@media screen and (max-width: 767px) {
  .aton-list.-square {
    grid-template-columns: 1fr;
    row-gap: 32px;
    column-gap: 0;
  }
}
.aton-list__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 196px;
  height: 44px;
  padding: 12px;
  background-color: #0f0f0f;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  grid-column: 1/2;
}
.aton-list__btn:hover {
  background-color: #400887;
  color: #fff;
}
.aton-list__btn:active {
  background-color: #0f0f0f;
  border-color: #7000ff;
  box-shadow: 0 0 0 1px #7000ff inset;
  color: #B880FF;
}
.aton-list__btn:focus {
  background-color: #270B4B;
  color: #fff;
}
.aton-list__btn.disabled {
  background-color: #9c9c9c;
  cursor: not-allowed;
}

.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  transition: all 0.15s ease-in-out;
}
@media screen and (max-width: 848px) {
  .accordion {
    max-width: none;
  }
}
.accordion__item {
  display: grid;
  grid-template-rows: min-content 0fr;
  border-bottom: 1px solid #9c9c9c;
  overflow: hidden;
  transition: grid-template-rows 0.4s ease-out;
}
.accordion__item.-open {
  grid-template-rows: min-content 1fr;
  transition: grid-template-rows 0.4s ease-out;
}
.accordion__item.-open .accordion__header::after {
  transform: rotate(45deg);
}
.accordion__item.-open .accordion__body {
  padding-bottom: 32px;
}
.accordion__item:not(:first-child) .accordion__header {
  padding-top: 32px;
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  gap: 16px;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  color: var(--base-content-color);
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}
.accordion__header::after {
  margin-right: 5px;
  content: "\e96f";
  font-family: "font-btns";
  font-size: 14px;
  color: #7000ff;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .accordion__header::after {
    font-weight: normal;
  }
}
@media screen and (min-width: 1920px) {
  .accordion__header {
    font-size: 18px;
  }
}
.accordion__header sup {
  margin: 0;
}
.accordion__header sup a:not([class]) {
  font-size: 0.9em;
  text-decoration: none;
}
.accordion__body {
  padding-right: 60px;
  overflow: hidden;
}

.investor__title {
  color: var(--content-header-color);
}

.group-section[data-theme=dark] .editor-content * {
  color: var(--base-content-color);
}
.group-section[data-theme=dark] .editor-content .accordion__body {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.group-section[data-theme=dark] .editor-content .accordion__body p {
  color: #9c9c9c;
}
.group-section[data-theme=dark] .editor-content .accordion__body p a {
  color: #B880FF;
}
.group-section[data-theme=dark] .editor-content .accordion__body blockquote {
  color: #dbdbdb;
}
.group-section[data-theme=dark] .editor-content .accordion__body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 32px;
}
@media screen and (max-width: 767px) {
  .group-section[data-theme=dark] .editor-content .accordion__body ul {
    grid-template-columns: 1fr;
  }
}
.group-section[data-theme=dark] .editor-content .accordion__body ul li {
  padding-left: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #9c9c9c;
}
@media screen and (min-width: 1920px) {
  .group-section[data-theme=dark] .editor-content .accordion__body ul li {
    font-size: 16px;
  }
}
.group-section[data-theme=dark] .editor-content .accordion__body ul li::before {
  position: static;
  width: 12px;
  height: 12px;
  margin-bottom: 24px;
}
.group-section[data-theme=dark] .editor-content .accordion__body ul li strong {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
@media screen and (min-width: 1920px) {
  .group-section[data-theme=dark] .editor-content .accordion__body ul li strong {
    font-size: 18px;
  }
}
.group-section[data-theme=dark] .editor-content .accordion__body ul li a {
  font-size: 14px;
  color: #B880FF;
}
@media screen and (min-width: 1920px) {
  .group-section[data-theme=dark] .editor-content .accordion__body ul li a {
    font-size: 16px;
  }
}
.group-section[data-theme=dark] .editor-content .accordion__body ul li div {
  color: #9c9c9c;
}

/*# sourceMappingURL=style.css.map */
