/* Primary button */

.primary-button {
  font-family: "NotoSerif";
  position: relative;
  padding: 4px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  width: max-content;
  min-width: 115px;
  min-height: 46px;
  font-weight: 900;
  font-size: 14px;
  color: #f4f4f4;
  line-height: normal;
  white-space: nowrap;
  will-change: transform;
  z-index: 1;
  line-height: 1.28;
}

.primary-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  right: 0px;
  height: 100%;
  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;
}

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

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

/* Secondary button */

.secondary-button {
  font-family: "NotoSerif";
  position: relative;
  padding: 4px 20px 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  width: max-content;
  min-width: 196px;
  min-height: 48px;
  font-weight: 900;
  font-size: 16px;
  color: #4d1200;
  line-height: normal;
  white-space: nowrap;
  will-change: transform;
  z-index: 1;
  line-height: 1.25;
  box-shadow:
    0 1px 3px 0 rgba(163, 61, 42, 0.5),
    0 2px 8px var(--Number, 0) rgba(40, 9, 11, 0.7);
  border-radius: 4px;
  overflow: hidden;
}

.secondary-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  right: 0px;
  height: 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;
}

.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);
}

/* Reg button */

.reg-button {
  font-family: "NotoSerif";
  position: relative;
  padding: 4px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 115px;
  min-height: 46px;
  font-weight: 900;
  font-size: 14px;
  color: #f4f4f4;
  line-height: normal;
  white-space: nowrap;
  will-change: transform;
  z-index: 1;
  line-height: 1.28;
}

.reg-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  right: 0px;
  height: 100%;
  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 {
  position: relative;
  font-family: "NotoSerif";
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  min-height: 40px;
  font-weight: 900;
  font-size: 14px;
  color: #f4f4f4;
  line-height: normal;
  white-space: nowrap;
  will-change: transform;
  border-radius: 4px;
  border: 1px solid var(--Color-Color-05, rgba(255, 255, 255, 0.12));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(4px);
}

.login-button::before {
  content: "";
  margin-right: 8px;
  background-image: url(../images/icons/login-icon.svg);
  width: 16px;
  height: 16px;
}

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

/* App Button */

.app-button {
  font-family: "NotoSerif";
  position: relative;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* max-width: 240px; */
  width: max-content;
  min-width: 115px;
  min-height: 46px;
  font-weight: 900;
  font-size: 14px;
  color: #f4f4f4;
  line-height: normal;
  white-space: nowrap;
  will-change: transform;
  z-index: 1;
  line-height: 1.28;
}

.app-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  right: 0px;
  height: 100%;
  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;
}

.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: translateY(-2px);
  filter: brightness(1.1);
}

/* app-banner */

.app-banner {
  margin-top: 30px;
  margin-bottom: 40px;
  position: relative;
  padding: 35px 20px;
  min-height: 292px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  background:
    radial-gradient(
      89.78% 162.99% at 51.32% 122.89%,
      rgba(197, 43, 70, 0.2) 0%,
      rgba(197, 43, 70, 0.3) 25.75%,
      rgba(34, 18, 21, 0) 100%
    ),
    linear-gradient(0deg, #090505 100%, #221215 69.01%, #221215 0%);
}

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

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

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

/* Scroll Top */

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #881179 0%, #631067 49.16%, #3d0e54 98.31%);
  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: 16px;
  height: 18px;
}

.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 20px;
  color: var(--primary-text-color);
  background: linear-gradient(180deg, #164072 0%, #081e50 98.31%);
}

.section::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -6px;
  bottom: -4px;
  right: -4px;
  background-image: url(../images/border-section-lg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.section > .background {
  border-radius: 12px;
  overflow: hidden;
}

.section h2 {
  background: linear-gradient(180deg, #ee9b5b 43.27%, #ffe1b6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

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

.section > .primary-button {
  margin-left: auto;
  margin-right: auto;
}

.section--bg {
  background: linear-gradient(180deg, #164072 50%, #081e50 98.31%);
}

.section > img:first-child {
  margin-top: -20px;
  margin-left: -20px;
  min-width: calc(100% + 40px);
  min-height: 220px;
  object-fit: cover;
}

/* Table */

.table-wrapper {
  position: relative;
  padding: 16px;
  overflow: auto;
  border-radius: 4px;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, #3a011d 0%, #8f0046 100%);
}

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

.table--bg {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

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

.table thead {
  color: var(--primary-text-color);
  font-family: "NotoSerif";
  font-size: 22px;
  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: 16px;
}

.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 {
}

.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;
  padding: 0 20px;
  z-index: 3;
  overflow: auto;
  border-radius: 12px;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, #3a011d 0%, #8f0046 100%);
}

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

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

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

.table-banner thead th {
  padding: 20px 12px 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, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.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 12px 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 80px;
  min-height: 400px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
}

.banner__background img {
  position: relative;
  z-index: -1;
}

.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: 12px;
  color: var(--primary-text-color);
  font-family: "NotoSerif";
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.banner__subtitle {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  font-family: "NotoSerif";
  font-size: 34px;
  font-weight: 900;
  line-height: normal;
  background: linear-gradient(180deg, #ee9b5b 43.27%, #ffe1b6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner__subtitle > span {
  max-width: max-content;
  display: inline-block;
}

.banner__buttons {
  margin-top: 20px;
  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;
  background: linear-gradient(180deg, #3a011d 0%, #8f0046 100%);
}

.accordion .accordion__title {
  position: relative;
  padding: 15.5px 50px 15.5px 16px;
  font-family: "NotoSerif";
  font-size: 22px;
  font-weight: 900;
  line-height: normal;
  color: var(--primary-text-color);
  cursor: pointer;
}

.accordion .accordion__title:hover,
.accordion .accordion__title:focus,
.accordion .accordion__title:active {
  background: #a80052;
}

.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 {
  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;
}

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

.list li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

/* Feature List */

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

.feature-list > li {
  position: relative;
  min-height: 64px;
  color: var(--primary-text-color);
  font-family: "NotoSerif";
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  background: #9e077b;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.4);
}

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

.feature-list > li::after {
}

.feature-list > li > p {
}

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

.feature-list--number > li::before {
  content: counter(step-counter);
  position: absolute;
  top: 50%;
  left: 12px;
  width: 35px;
  height: 40px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4d1200;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  font-family: "NotoSerif";
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
  border-radius: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.98;
  background: linear-gradient(90deg, #f7b88b 38.94%, #ffdc8e 100%);
}

.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: 14px !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(50%);
  background-repeat: no-repeat no-repeat;
}

.breadcrumbs__link {
  font-weight: 400;
  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 {
}

/* Card */

.card {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card__item {
  position: relative;
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  outline: 1px solid #ee9b5b;
  isolation: isolate;
}

.card__box {
  position: relative;
  padding: 20px 18px;
  flex: 1;
  border-radius: 4px;
}

.card .card__item:nth-child(1),
.card .card__item:nth-child(2) {
  z-index: 2;
}

.card .card__item:nth-child(3)::before {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 300px;
  height: 320px;
  left: -37%;
  background-image: url(../images/icons/card-2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.card .card__item:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 370px;
  height: 500px;
  right: -35%;
  background-image: url(../images/icons/card-3.webp);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.card .card__item:nth-child(3) {
  width: calc(60% - 10px);
  z-index: 1;
}

.card .card__item:nth-child(1) .card__box {
  background: linear-gradient(180deg, #236194 0%, #164072 49.16%, #081e50 98.31%);
}

.card .card__item:nth-child(2) .card__box {
  background:
    linear-gradient(180deg, #881179 0%, #631067 49.16%, #3d0e54 98.31%),
    linear-gradient(180deg, #236194 0%, #164072 49.16%, #081e50 98.31%);
}

.card .card__item:nth-child(3) .card__box {
  background: linear-gradient(180deg, #681b91 0%, #441c78 49.16%, #1f1c5f 98.31%);
}

.card__item img {
  margin-top: -50px;
  margin-bottom: 12px;
  margin-left: 12px;
  margin-right: -6px;
  float: right;
  max-width: 30%;
}

.card__box > h3 {
  background: linear-gradient(180deg, #ee9b5b 43.27%, #ffe1b6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 2px #000);
}

.card__box > h4 {
  margin-top: 12px;
  background: linear-gradient(180deg, #ee9b5b 43.27%, #ffe1b6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 2px #000);
}

.card__box > p {
  margin-top: 12px;
}

.card__box > .secondary-button {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: max-content;
}
