/* Primary button */

.primary-button {
  margin-left: 4px;
  font-family: "ABC";
  max-width: 240px;
  width: 100%;
  min-height: 80px;
  position: relative;
  padding: 14px 10px 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: var(--primary-text-color);
  line-height: normal;
  border-radius: 8px;
  will-change: transform;
  border-radius: 8px;
  z-index: 1;
}

.primary-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  right: -16px;
  height: calc(100%);
  transform: translateY(-50%);
  background-image: url(../images/icons/button-2.webp);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}

.primary-button--fix-size {
  /* max-width: max-content; */
}

.primary-button:hover,
.primary-button:active,
.primary-button:focus {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.app-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 2;
}

.app-button:hover::before {
  left: 100%;
}

/* Secondary button */

.secondary-button {
  font-family: "ABC";
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 177px;
  min-height: 48px;
  font-weight: 900;
  font-size: 16px;
  color: var(--primary-text-color);
  line-height: normal;
  border-radius: 8px;
  white-space: nowrap;
  will-change: transform;
  overflow: hidden;
  border-radius: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  background: radial-gradient(201% 100% at 50% 100%, #d03e04 0%, #ffb700 76.44%, #ffea00 100%);
  box-shadow:
    0 -3px 0 0 #ca5100 inset,
    0 0 9px 0 #ee9505 inset,
    0 2px 16px 0 rgba(255, 111, 0, 0.4);
}

.secondary-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transition: left 0.5s ease;
}

.secondary-button:hover::after {
  left: 120%;
}

.secondary-button--fix-size {
  max-width: max-content;
}

.secondary-button:hover,
.secondary-button:active,
.secondary-button:focus {
  transform: translateY(-2px);
  box-shadow:
    0 -3px 0 0 #ca5100 inset,
    0 0 9px 0 #ee9505 inset,
    0 4px 20px 0 rgba(255, 111, 0, 0.6);
}

/* Reg button */

.reg-button {
  font-family: "ABC";
  position: relative;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 40px;
  font-weight: 900;
  font-size: 16px;
  color: var(--primary-text-color);
  line-height: normal;
  border-radius: 8px;
  white-space: nowrap;
  will-change: transform;
  border-radius: 8px;
  z-index: 1;
}

.reg-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  right: -16px;
  height: calc(100% + 20px);
  transform: translateY(-50%);
  background-image: url(../images/icons/button-1.webp);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}

.reg-button--fix-size {
  max-width: max-content;
}

.reg-button:hover,
.reg-button:active,
.reg-button:focus {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Login button */

.login-button {
  font-family: "ABC";
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 40px;
  font-weight: 900;
  font-size: 16px;
  color: var(--primary-text-color);
  line-height: normal;
  border-radius: 8px;
  white-space: nowrap;
  will-change: transform;
  border-radius: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #4a2f55 0%, #281530 100%);
  box-shadow:
    0 -3px 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 0 9px 0 rgba(255, 255, 255, 0.2) inset;
}

.login-button:hover,
.login-button:active,
.login-button:focus {
  transform: translateY(-2px);
  box-shadow:
    0 0 15px 6px rgba(255, 255, 255, 0.5) inset,
    0 0 35px 12px rgba(255, 255, 255, 0.25) inset;
}

/* App Button */

.app-button {
  position: relative;
  padding: 5px 16px;
  max-width: 260px;
  min-height: 64px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: normal;
  will-change: transform;
  overflow: hidden;
  border-radius: 8px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  background: radial-gradient(201% 100% at 50% 100%, #d000d4 0%, #cb00cf 76.44%, #fd97ff 100%);
  box-shadow:
    0 -3px 0 0 #ca00cd inset,
    0 0 9px 0 #fc51ff inset,
    0 2px 16px 0 rgba(252, 81, 255, 0.5);
}

.app-button > img {
  width: 32px;
  height: 32px;
}

.app-button > span {
  text-align: center;
}

.app-button > span > span {
  display: block;
}

.app-button:hover,
.app-button:active,
.app-button:focus {
  transform: scale(1.02);
}

/* app-banner */

.app-banner {
  margin-bottom: 20px;
  position: relative;
  padding: 35px 40px;
  min-height: 292px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #049e98;
  background: rgba(0, 0, 0, 0);
  box-shadow:
    0 0 15px 0 #00d2ca inset,
    0 0 10px 1px #00d2ca;
}

.app-banner__img {
  position: absolute;
  bottom: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: auto;
  max-height: 320px;
}

.app-banner__wrap {
  margin: auto;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  max-width: 1020px;
  width: 100%;
}

.banner__background.app-banner__background > img {
  object-position: center;
}

.app-banner .app-button {
  width: 100%;
}

/* Scroll Top */

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4303ac;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  will-change: transform;
}

.scroll-to-top img {
  width: 12px;
  height: 14px;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: scale(1.1);
}

/* Section */

.section {
  position: relative;
  margin-bottom: 20px;
  padding: 20px 0;
  color: var(--primary-text-color);
  border-radius: 12px;
  background: radial-gradient(41.65% 58.74% at 45.37% 50%, rgba(212, 0, 255, 0.6) 0%, #001064 100%);
}

.section h2 {
  color: #3cdeff;
  display: flex;
  padding-bottom: 11px;
  border-bottom: 1px solid #3cdeff;
}

.section h2,
.section h3,
.section h4,
.section h5 {
  font-family: "ABC";
  font-weight: 900;
  line-height: normal;
}

/* Table */

.table-wrapper {
  position: relative;
  padding: 16px;
  overflow: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.table {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-width: 630px;
  background: transparent;
}

.table--bg {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(182.38% 101.49% at 82.67% 100%, #a560ff 23.56%, #c43fcb 68.75%, #ac038d 100%);
  backdrop-filter: blur(16px);
}

.table--bg-2 {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(182.38% 101.49% at 82.67% 100%, #3dbbff 23.56%, #34af38 68.75%, #029f0c 100%);
  backdrop-filter: blur(16px);
}

.table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  pointer-events: none;
}

.table thead {
  color: var(--primary-text-color);
  font-family: "ABC";
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
}

.table thead th {
  padding: 0 12px 16px 0;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.table tr {
  text-align: left;
  white-space: normal;
  vertical-align: middle;
  width: auto;
}

.table tbody tr {
}

.table tbody td {
  padding: 0 12px 16px 0;
  color: var(--primary-text-color);
  font-size: 15px;
}

.table tbody tr:last-child td {
  padding-bottom: 0;
}

.table tbody td:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.table tbody td:last-child {
  font-weight: 900;
  line-height: normal;
}

.table tbody td:first-child::after {
  content: "";
  flex: 1;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.table a:hover,
.table a:focus,
.table a:active {
  text-decoration: underline;
}

/* Table Banner */

.table-banner-wrapper {
  position: relative;
  z-index: 3;
  overflow: auto;
  border-radius: 8px;
}

.table-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-width: 580px;
  border-radius: 8px;
  background: transparent;
}

.table-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  pointer-events: none;
}

.table-banner-wrapper .background {
  /* min-width: 680px; */
}

.table-banner thead {
  position: relative;
  color: var(--primary-text-color);
  font-family: "ABC";
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
}

.table-banner thead th {
  padding: 20px 10px 19px 0;
}

.table-banner thead tr::after,
.table-banner tbody tr:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, transparent 80%);
}

.table-banner tr {
  position: relative;
  text-align: left;
  white-space: normal;
  vertical-align: middle;
  width: auto;
}

.table-banner tbody tr {
}

.table-banner tbody td {
  padding: 19px 10px 19px 0;
  color: var(--primary-text-color);
  font-size: 15px;
}

.table-banner a:hover,
.table-banner a:focus,
.table-banner a:active {
  text-decoration: underline;
}

/* Banner */

.banner {
  margin-bottom: 20px;
  position: relative;
  padding: 30px 110px;
  min-height: 292px;
  display: flex;
  align-items: center;
  border-radius: 12px;
}

.banner__background img {
  border-radius: 12px;
}

.banner__wrap {
  position: relative;
  max-width: 580px;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.banner__title {
  margin-bottom: 16px;
  color: var(--primary-text-color);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.banner__subtitle {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  color: var(--secondary-text-color);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  font-family: "ABC";
  font-size: 32px;
  font-weight: 900;
  line-height: normal;
}

.banner__subtitle > span {
  max-width: max-content;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.banner__subtitle > span::before {
  content: "";
  position: absolute;
  inset: 0;
  top: -3px;
  bottom: -3px;
  left: -14px;
  right: -14px;
  background: rgba(0, 0, 0, 0.55);
  transform: skewX(-20deg);
  z-index: -1;
}

.banner__subtitle > span:not(:first-child) {
  margin-top: 16px;
}

.banner__buttons {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.banner__button {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(
    201% 100% at 50% 100%,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 76.44%,
    rgba(255, 255, 255, 0.4) 100%
  );
  box-shadow:
    0 -3px 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 0 9px 0 rgba(255, 255, 255, 0.2) inset;
}

.banner__button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 15px 6px rgba(255, 255, 255, 0.5) inset,
    0 0 35px 12px rgba(255, 255, 255, 0.25) inset;
}

/* Accordionn */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.accordion__item {
  border-radius: 8px;
  overflow: hidden;
}

.accordion .accordion__title {
  position: relative;
  padding: 15.5px 50px 15.5px 16px;
  font-family: "ABC";
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  color: var(--primary-text-color);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
}

.accordion .accordion__title:hover,
.accordion .accordion__title:focus,
.accordion .accordion__title:active {
  background: rgba(255, 255, 255, 0.25);
}

.accordion__title:after {
  content: "";
  position: absolute;
  background: url(../images/icons/plus.svg);
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  rotate: 0;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  transition: all 0.3s;
  transform: translateY(-50%);
}

.accordion__title.active:after {
  background: url(../images/icons/minus.svg);
}

.accordion__block {
  background: rgba(255, 255, 255, 0.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  margin: 0;
  text-align: left;
}

.accordion__text-wrap {
  padding: 4px 16px 16px 16px;
  color: var(--primary-text-color);
}

.accordion__text-wrap > :first-child {
  margin-top: 0;
}

.accordion__text {
  margin: 0;
}

.accordion__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--quaternary-text-color);
}

.accordion__list li {
  position: relative;
  padding-left: 30px;
}

.accordion__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 16px;
  width: 6px;
  height: 6px;
  background-color: var(--secondary-bg-color);
  border-radius: 50%;
}

.accordion__list li span:first-child {
  margin-right: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: var(--tertiary-text-color);
}

/* Split-block */

.split-block {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.split-block--reverse {
  flex-direction: row-reverse;
}

.split-block__img,
.split-block__content {
  width: calc(50% - 10px);
}

.split-block__content p:first-child {
  margin-top: 0;
}

.split-block__img {
  position: relative;
  border-radius: 12px;
}

.split-block__img > img {
  object-fit: contain;
}

.split-block__img > img:first-child {
  border-radius: 12px;
  height: 100%;
}

.split-block__img > img:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: auto;
}

/* List */

.list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.list li {
  position: relative;
  padding: 16px 24px;
  text-align: center;
}

.list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.list li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/icons/fire-red.svg);
  background-repeat: no-repeat;
}

.list li::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/icons/fire-red.svg);
  background-repeat: no-repeat;
}

/* Feature List */

.feature-list {
  max-width: 625px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
  gap: 4px;
}

.feature-list > li {
  position: relative;
  min-height: 52px;
  color: var(--primary-text-color);
  font-size: 15px;
  font-weight: 900;
  line-height: normal;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, #474bcf 0%, #4540cb 54.2%);
}

.feature-list > li:not(:last-child) {
}

.feature-list > li::after {
}

.feature-list > li > p {
  margin-top: 4px;
  color: var(--primary-text-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.feature-list--number > li {
  padding: 16px 12px 12px 52px;
  counter-increment: step-counter;
}

.feature-list--number > li::before {
  content: counter(step-counter);
  position: absolute;
  top: 11px;
  left: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 6px;
  background: linear-gradient(120deg, #45bf57 0%, #54e169 45.67%, #3aa84a 100%);
  box-shadow:
    0 4px 4px 0 rgba(0, 0, 0, 0.25),
    2px 4px 16px 0 rgba(248, 248, 248, 0.06);
}

.feature-list--icon > li {
  min-height: 52px;
  padding: 14.5px 11.5px 12px 52px;
  justify-content: center;
}

.feature-list--icon > li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 11px;
  width: 30px;
  height: 12px;
  background-image: url("../images/icons/header-1.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.feature-list--bg2 {
  background: linear-gradient(139deg, #1f183c 11.67%, #14002a 51.42%, #350b64 90.42%);
}

.feature--fix-size {
  max-width: 680px;
}

/* Breadcrumbs */

.breadcrumbs {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 15px !important;
}

.breadcrumbs__item {
  position: relative;
}

.breadcrumbs .breadcrumbs__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0%;
  left: -20px;
  background-image: url(../images/icons/icon-arrow.svg);
  width: 33px;
  height: 33px;
  rotate: -90deg;
  transform: translateX(58%);
  background-repeat: no-repeat no-repeat;
}

.breadcrumbs__link {
  font-weight: 700;
  line-height: normal;
  color: var(--primary-text-color);
}

.breadcrumbs__link:hover,
.breadcrumbs__link:active,
.breadcrumbs__link:focus {
  text-decoration: underline;
  color: var(--primary-text-hover-color);
}

.breadcrumbs__link:not([href]),
.breadcrumbs__link:not([href]) > span {
  text-decoration: none;
  color: var(--primary-text-color);
  cursor: default;
}

/* Info list */

.info-list {
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 50px;
  column-gap: 20px;
}

.info-list > li {
  position: relative;
  min-height: 100px;
  width: calc(33.333% - 13.33px);
  padding: 48px 12px 20px 12px;
  text-align: center;
  justify-content: center;
  display: flex;
  gap: 20px;
  border-radius: 12px;
  border: 1px solid rgba(56, 210, 234, 0.5);
  background: linear-gradient(
    115deg,
    rgba(0, 113, 130, 0.7) 0.53%,
    rgba(0, 0, 0, 0.7) 50.31%,
    rgba(0, 113, 130, 0.7) 99.45%
  );
  box-shadow: 0 0 40px 0 rgba(56, 210, 234, 0.6) inset;
}

.info-list__title {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 15px 52px;
  width: calc(100% - 80px);
  justify-content: center;
  align-items: center;
  color: #38d2ea;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 30px;
  border: 1px solid rgba(56, 210, 234, 0.5);
  background: linear-gradient(115deg, #005461 0.53%, #000 50.31%, #005461 99.45%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.info-list__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 30px;
  height: 12px;
  transform: translateY(-50%);
  background-image: url(../images/icons/info-list.svg);
  background-repeat: no-repeat;
}

.info-list__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 30px;
  height: 12px;
  transform: translateY(-50%);
  background-image: url(../images/icons/info-list.svg);
  background-repeat: no-repeat;
}

.info-list__text {
  margin-top: 0;
  color: #fff72e;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner__line--1 {
  border: 1px solid #049e98;
  background: rgba(0, 0, 0, 0);
  box-shadow:
    0 0 15px 0 #00d2ca inset,
    0 0 10px 1px #00d2ca;
}

.banner__line--2 {
  border: 1px solid #b239f2;
  background: rgba(221, 0, 0, 0);
  box-shadow:
    0 0 15px 0 #d0f inset,
    0 0 10px 1px #bf00ff;
}

.banner__line--3 {
  border: 1px solid #1b41de;
  background: rgba(0, 0, 0, 0);
  box-shadow:
    0 0 15px 0 #5072ff inset,
    0 0 10px 1px #2e57ff;
}
