.reflection {
  display: inline-block;
  max-width: 100%;
  position: relative;
}
.reflection__img {
  max-width: 100%;
}
.reflection__img_base {
  position: relative;
  z-index: 0;
}
.reflection__img_layer {
  position: absolute;
  left: 0;
  top: 90%;
  transform: scaleY(-1);
  opacity: 0.9;
  filter: blur(3px);
  z-index: -1;
}
.reflection_bg .reflection__img_layer {
  top: 60%;
  filter: blur(21px);
}
.swiper_custom.swiper-initialized {
  position: relative;
  width: 100vw;
  padding: 16px;
  padding-bottom: 48px;
  margin: -16px;
}
@media only screen and (min-width: 768px) {
  .swiper_custom.swiper-initialized {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .swiper_custom.swiper-initialized {
    width: auto;
  }
}
.swiper_custom.swiper-initialized::after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background-color: #e8e9eb;
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
}
.swiper_custom.swiper-initialized.swiper-navigation-disabled {
  padding-bottom: 16px;
}
.swiper_custom.swiper-initialized.swiper-navigation-disabled::after {
  display: none;
}
@media (max-width: 1024px) {
  .swiper_custom.swiper-initialized {
    padding-right: 32px;
  }
}
.swiper-button-prev_custom,
.swiper-button-next_custom {
  width: 20px;
  height: 20px;
  color: #1d233b;
  top: unset;
  bottom: 16px;
}
.swiper-button-prev_custom::after,
.swiper-button-next_custom::after {
  display: none;
}
.swiper-button-icon {
  stroke: currentColor;
}
.swiper-pagination_custom .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d2d3d8;
  cursor: pointer;
}
.swiper-pagination_custom .swiper-pagination-bullet:hover {
  background: #a5a7b1;
}
.swiper-pagination_custom .swiper-pagination-bullet-active {
  background: #9000ed;
}
.dark .swiper_custom.swiper-initialized::after {
  background-color: rgba(255, 254, 255, 0.1);
}
@media (max-width: 1024px) {
  .dark .swiper_custom.swiper-initialized {
    padding-right: 32px;
  }
}
.dark .swiper-button-prev_custom,
.dark .swiper-button-next_custom {
  color: #fffeff;
}
.banner-card {
  display: grid;
  align-content: start;
  height: auto;
  border-radius: 22px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
.banner-card__figure {
  display: block;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.banner-card__figure:hover {
  box-shadow: -10px -10px 12px 0px rgba(144, 0, 237, 0.1019607843);
}
@media only screen and (min-width: 1024px) {
  .banner-card__figure:hover {
    box-shadow: none;
  }
}
.banner-card__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.banner-card__figure-btn {
  padding: 16px 0 0 16px;
  border-radius: 32px 0 22px 0;
  background: #fffeff;
  position: absolute;
  bottom: 0;
  right: 0;
}
.banner-card__figure-btn::before, .banner-card__figure-btn::after {
  content: "";
  display: block;
  height: 50%;
  aspect-ratio: 1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyMyAyNCIgZmlsbD0iI0ZGRkVGRiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMjRDMTIuNzAyNiAyNCAyMyAxMy43MDI1IDIzIDFWMjRIMFoiIC8+CjxwYXRoIGQ9Ik0yMi45Nzg1IDBIMjNWMUMyMyAwLjY2NDk0OCAyMi45OTI3IDAuMzMxNTczIDIyLjk3ODUgMFoiIC8+Cjwvc3ZnPgo=);
  background-size: cover;
  position: absolute;
}
.banner-card__figure-btn::before {
  bottom: 0;
  right: 100%;
}
.banner-card__figure-btn::after {
  right: 0;
  bottom: 100%;
}
.banner-card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  padding: 12px;
  gap: 8px;
  border-radius: 50%;
  border: none;
  background: #1d233b;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.banner-card__btn:hover {
  background: #9000ed;
}
.banner-card__btn:active {
  background: #1d233b;
}
.banner-card__figcaption {
  display: grid;
  grid-template-rows: auto auto;
  gap: 8px;
  padding: 8px;
  justify-content: start;
}
.banner-card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 1024px) {
  .banner-card__details .chips {
    padding: 4px 0;
    background-color: transparent;
  }
}
@media only screen and (min-width: 1920px) {
  .banner-card__details {
    width: 416px;
  }
}
@media only screen and (min-width: 1920px) {
  .banner-card__details--full {
    width: 100%;
  }
}
.banner-card__row {
  display: flex;
  gap: 8px;
}
@media only screen and (min-width: 1024px) {
  .banner-card__row {
    gap: 24px;
  }
}
.banner-card__time {
  color: #a5a7b1;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.28px;
}
.banner-card__row {
  display: flex;
  gap: 8px;
}
@media only screen and (min-width: 1024px) {
  .banner-card__row {
    gap: 24px;
  }
}
.banner-card__time {
  color: #a5a7b1;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.28px;
}
.banner-card__h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.48px;
}
.banner-card_outlined {
  border: 1px solid #d2d3d8;
}
.banner-card_outlined:hover {
  box-shadow: 2px 4px 20px 0px rgba(144, 0, 237, 0.1019607843), 0px 0px 16px 0px rgba(144, 0, 237, 0.1019607843);
}
.banner-card_outlined .banner-card__img {
  box-shadow: none;
}
.banner-card_outlined .banner-card__figcaption {
  padding: 16px 32px 24px 32px;
}
.quote {
  border-left: 3px solid #9000ed;
  padding-left: 24px;
  font-style: italic;
}
.dark .banner-card_outlined {
  border-color: rgba(255, 254, 255, 0.1);
}
.dark .banner-card_outlined--background {
  overflow: hidden;
  background-color: rgba(255, 254, 255, 0.05);
}
.dark .banner-card__figure-btn {
  background: #1d233b;
}
.dark .banner-card__figure-btn::before, .dark .banner-card__figure-btn::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyMyAyNCIgZmlsbD0iIzFEMjMzQiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMjRDMTIuNzAyNiAyNCAyMyAxMy43MDI1IDIzIDFWMjRIMFoiIC8+CjxwYXRoIGQ9Ik0yMi45Nzg1IDBIMjNWMUMyMyAwLjY2NDk0OCAyMi45OTI3IDAuMzMxNTczIDIyLjk3ODUgMFoiIC8+Cjwvc3ZnPgo=);
}
.dark .banner-card__btn {
  border: 1px solid rgba(255, 254, 255, 0.1);
  text-decoration: none;
}
.dark .banner-card__time {
  color: rgba(255, 254, 255, 0.4);
}
.moreLink {
  display: none;
}
.moreText.isCollapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.moreText.isCollapsed.isActive {
  display: block;
}
.moreText.isCollapsed ~ .moreLink {
  display: inline-block;
}
.chips {
  display: flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 40px;
  background-color: rgba(29, 35, 59, 0.05);
  color: #1d233b;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.28px;
}
.chips--blue {
  padding: 4px 8px;
  border-radius: 20px;
  background-color: #9000ed;
  color: #fffeff;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.32px;
}
@media only screen and (min-width: 1024px) {
  .dark .banner-card__details .chips {
    background-color: transparent;
  }
}
.dark .chips {
  background-color: rgba(255, 254, 255, 0.05);
  color: #fffeff;
}
.dark .chips--blue {
  background-color: #9000ed;
  color: #fffeff;
}
.payment {
  color: #1d233b;
  overflow: hidden;
}
.payment__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.payment__toggle {
  display: none;
}
@media only screen and (min-width: 768px) {
  .payment__toggle {
    display: flex;
  }
}
@media only screen and (min-width: 1920px) {
  .payment__toggle {
    margin-top: 32px;
  }
}
@media only screen and (min-width: 768px) {
  .payment__select {
    display: none;
  }
}
.payment__field {
  display: none;
  justify-content: center;
  padding: 32px 16px;
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background-color: rgba(29, 35, 59, 0.03);
}
@media only screen and (min-width: 768px) {
  .payment__field {
    justify-content: flex-start;
    min-height: 660px;
    padding: 32px 160px;
  }
}
@media only screen and (min-width: 1024px) {
  .payment__field {
    width: 100%;
    margin-left: 0;
    left: 0;
    border-radius: 36px;
    border: 1px solid #e8e9eb;
    align-items: flex-start;
    justify-content: center;
    margin-right: 0;
    margin-left: 0;
    padding: 40px 64px;
    min-height: 444px;
  }
}
@media only screen and (min-width: 1920px) {
  .payment__field {
    gap: 16px 80px;
  }
}
.payment__field.visible {
  display: flex;
}
.payment__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .payment__list {
    gap: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .payment__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px 64px;
    max-width: 1104px;
  }
}
@media only screen and (min-width: 1920px) {
  .payment__list {
    max-width: 1324px;
  }
}
.payment__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .payment__item {
    flex-direction: row;
    gap: 16px;
    text-align: start;
  }
}
@media only screen and (min-width: 1024px) {
  .payment__item {
    width: calc(50% - 32px);
  }
}
.payment__item-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 20px 0px rgba(12, 50, 237, 0.07);
  background: #ffffff;
  filter: drop-shadow(0px 4px 20px rgba(12, 50, 237, 0.07));
}
.dark .payment {
  color: #fffeff;
}
.dark .payment__field {
  background-color: rgba(255, 254, 255, 0.05);
  border-color: rgba(255, 254, 255, 0.1);
}
.payment-faq {
  color: #1d233b;
}
.payment-faq__title {
  margin-bottom: 32px;
}
@media only screen and (min-width: 1024px) {
  .payment-faq__title {
    margin-bottom: 28px;
  }
}
.payment-faq__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media only screen and (min-width: 1024px) {
  .payment-faq__content {
    flex-direction: row;
    gap: 16px;
  }
}
.payment-faq__accordeon {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.payment-faq__card {
  border-bottom: 1px solid #e8e9eb;
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .payment-faq__card {
    border: 1px solid #e8e9eb;
    padding: 18px;
    border-radius: 22px;
  }
}
.payment-faq__tab {
  display: flex;
  width: 100%;
  align-items: center;
}
.payment-faq__btn {
  width: 48px;
  height: 48px;
  padding: 14px;
  border-radius: 50%;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: auto;
}
.payment-faq__btn:hover {
  background: #e8e9eb;
}
@media (max-width: 1024px) {
  .payment-faq__btn:hover {
    background: transparent;
  }
}
.payment-faq__btn:active {
  background: none;
}
.payment-faq__btn.isActive {
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  .payment-faq__btn.isActive {
    transform: none;
  }
  .payment-faq__btn.isActive svg {
    display: none;
  }
  .payment-faq__btn.isActive::before {
    content: " ";
    width: 12px;
    height: 1px;
    display: inline-block;
    background: #9000ed;
    line-height: 1;
  }
}
.payment-faq__description {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
}
.payment-faq__description.isVisible {
  opacity: 1;
  transform: translateY(0);
  margin: 10px 0;
}
.payment-faq__button {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .payment-faq__button {
    display: none;
  }
}
.payment-faq__contact {
  position: relative;
  display: none;
  flex-shrink: 0;
}
@media only screen and (min-width: 1024px) {
  .payment-faq__contact {
    display: flex;
    justify-content: center;
    width: 480px;
    height: 384px;
    border-radius: 36px;
    padding-top: 82px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(214, 215, 251, 0.4) 0%, rgba(90, 81, 194, 0.4) 100%);
  }
}
@media only screen and (min-width: 1440px) {
  .payment-faq__contact {
    width: 544px;
  }
}
@media only screen and (min-width: 1920px) {
  .payment-faq__contact {
    width: 654px;
  }
}
.payment-faq__contact__filter-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #9000ED 0%, rgba(151, 71, 255, 0) 100%);
  mix-blend-mode: soft-light;
}
.payment-faq__contact .reflection__img_base {
  z-index: 1;
}
.payment-faq__contact .reflection__img_layer {
  transform: scaleY(1);
  filter: blur(15px);
  top: 30%;
  z-index: 0;
}
.payment-faq__link {
  position: absolute;
  right: 28px;
  bottom: 24px;
  padding: 14px;
}
html.dark .payment-faq {
  color: #fffeff;
}
html.dark .payment-faq__card {
  border-color: rgba(255, 254, 255, 0.1);
  background-color: transparent;
}
@media only screen and (min-width: 1024px) {
  html.dark .payment-faq__card {
    background-color: rgba(255, 254, 255, 0.05);
  }
}
html.dark .payment-faq__contact {
  background: linear-gradient(180deg, rgba(214, 215, 251, 0.3) 0%, rgba(90, 81, 194, 0.3) 100%);
}