:root {
  --bs-body-bg: #090909;
  --bs-body-color: #f9f9f9;
  --bs-primary: #0D99FF;
  --bs-primary-rgb: 0, 220, 205;

  --bs-green: #3ebe6a;
  --bs-success: #3ebe6a;
  --bs-success-rgb: 62, 190, 106;

  --bs-red: #ec6351;
  --bs-danger: #ec6351;
  --bs-danger-rgb: 236, 99, 81;

  --bs-font-sans-serif: "Geist", sans-serif;
}
.modal {
  --bs-modal-bg: rgba(37, 38, 45, .9);
}

body {
  font-family: var(--bs-font-sans-serif);
  overflow-x: hidden;
}
main {
  min-height: calc(100vh - 175px - 25px);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.spin {
  animation: spin 0.5s linear infinite;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
.blink {
  animation: blink 2.5s linear infinite;
}

.container {
  max-width: 1200px;
}

.overflow-hidden {
  overflow: hidden !important;
}

.navbar {
  padding: 8px 0px;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  max-width: 2000px;
  transition: all 0.5s cubic-bezier(.4,0,.2,1);
}
.navbar.scroll {
  max-width: 900px;
  padding: 8px 0px;
  margin-left: auto;
  margin-right: auto;
  top: 14px;
  background-color: rgba(37, 38, 45, .9);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  border-radius: 12px;
}
.nav-link {
  color: var(--bs-body-color);
}
.nav-link:focus, .nav-link:hover {
  color: var(--bs-body-color);
  opacity: .8;
}
.navbar-brand, .navbar-brand:hover, .navbar-brand:active, .navbar-brand:focus {
  color: #f9f9f9;
  font-weight: 500;
}
.navbar-brand > svg {
  color: #0D99FF;
}
.navbar-brand > img {
  width: 50px;
  margin-right: 8px;
}
.navbar-brand > span {
  font-family: "Playwrite DE SAS", cursive;
  font-weight: 400;
  font-size: 18px;
}
.navbar-toggler {
  display: flex;
  border: none;
  box-shadow: none;
  padding: 0px;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #0D99FF;
}
.navbar-toggler:focus {
  border: none;
  box-shadow: none;
}
.navbar-toggler > svg {
  width: 24px;
  height: 24px;
}

.btn {
  --bs-btn-padding-x: 16px;
  --bs-btn-font-size: 14px;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0D99FF;
  --bs-btn-border-color: #0D99FF;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1990e7;
  --bs-btn-hover-border-color: #1990e7;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #2589d2;
  --bs-btn-active-border-color: #2589d2;
  --bs-btn-active-shadow: none;
}
.btn-soft-primary {
  --bs-btn-color: #0D99FF;
  --bs-btn-bg: rgb(13 153 255 / 15%);
  --bs-btn-border-color: none;
  --bs-btn-hover-color: #0D99FF;
  --bs-btn-hover-bg: rgb(13 153 255 / 20%);
  --bs-btn-hover-border-color: none;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #0D99FF;
  --bs-btn-active-bg: rgb(13 153 255 / 25%);
  --bs-btn-active-border-color: none;
  --bs-btn-active-shadow: none;
}


.hero {
  padding: 50px 0;
  margin-top: 25px;
  background: url(/assets/img/design.bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-left {
  margin-bottom: 125px;
  padding-top: 48px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgb(62 190 106 / 10%);
  color: #f9f9f9;
  font-size: 14px;
  font-weight: 500;
  border-radius: 30px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.hero-badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #16cb81;
  border-radius: 50%;
  margin-right: 8px;
}
.hero-title {
  font-size: 55px;
  font-weight: 500;
  line-height: 65px;
  margin-bottom: 20px;
  max-width: 600px;
}
.hero-title > span {
  color: #0D99FF;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(115deg, #00e4df, #0D99FF);
  -webkit-background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: #9f9fac;
  margin: 0;
}
.hero-dots {
  position: absolute;
  z-index: 0;
  display: none;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 900px) {
  .navbar {
    margin-top: 0px;
  }
  .navbar.scroll {
    top: 0px;
    border-radius: 0px;
  }
  .hero {
    margin-top: 0px;
  }
}
@media (min-width: 768px) {
  .hero-dots {
    display: block;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 768px;
    height: auto;
  }
}
@media (min-width: 992px) {
  .hero-dots {
    left: 17%;
    transform: none;
    width: 996px;
    height: 720px;
  }
}
@media (min-width: 1200px) {
  .hero-dots {
    top: -30px;
    left: 35%;
    width: 1167px;
    height: 854px;
  }
}

.exchange-card {
  background-color: rgba(37, 38, 45, .9);
  border: none;
  border-radius: 16px;
  padding: 24px;
  padding-bottom: 14px;
  position: relative;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 32.6px 0 rgba(1, 3, 17, .04);
  z-index: 10;
}
@media (max-width: 992px) {
  .exchange-card {
    max-width: 485px;
    margin: auto;
  }
}
.exchange-block {
  background: rgb(196 204 244 / 10%);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 15px;
  position: relative;
}
.exchange-label {
  display: block;
  font-size: 16px;
  color: #9f9fac;
  margin-bottom: 0px;
}
.exchange-input-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}
.exchange-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 24px;
  font-weight: 500;
  outline: none;
  width: 100%;
  color: #f9f9f9;
}
.exchange-select {
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
}
.exchange-icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
.exchange-currency {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 6px;
  line-height: 20px;
  color: #f9f9f9;
}
.exchange-chevron {
  width: 12px;
  height: 12px;
  color: #9f9fac;
}
.exchange-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #9f9fac;
}
.exchange-swap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}
.exchange-swap .btn {
  position: absolute;
  top: -24px;
  z-index: 10;
  background-color: #0D99FF;
  border-radius: 25px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  box-shadow: 0px 0px 0 5px rgb(13 153 255 / 20%);
  border: none;

  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1145f4;
  --bs-btn-active-border-color: #1145f4;
}
.exchange-swap .btn > svg {
  color: #fff;
  width: 16px;
  height: 16px;
  transform: rotate(90deg);
}
.exchange-timer {
  display: flex;
  align-items: center;
  margin: 0px 0;
}
.exchange-timer-circle {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 12px;
  margin-right: 8px;
}
.exchange-timer-circle svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
.exchange-timer-circle .progress-ring__bg {
  fill: none;
  stroke: rgb(196 204 244 / 10%);
  stroke-width: 2;
}
.exchange-timer-circle .progress-ring__progress {
  fill: none;
  stroke: #0D99FF;
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}
.exchange-rate {
  font-size: 14px;
  color: #9f9fac;
}
.exchange-rate > span {
  color: #f9f9f9;
  font-weight: 500;
}
.exchange-discount {
  display: flex;
  align-items: center;
  margin: 6px 0;
}
.exchange-discount-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgb(196 204 244 / 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: #0d99ff;
}
.exchange-discount-icon > svg {
  width: 16px;
  height: 16px;
}
.exchange-discount-data {
  font-size: 14px;
  color: #9f9fac;
}
.exchange-discount-data > span {
  color: #f9f9f9;
  font-weight: 500;
}
.exchange-extra-input {
  margin-top: 6px;
  margin-bottom: 6px;
}
.exchange-extra-input > label {
  font-size: 14px;
  color: #9f9fac;
  margin-bottom: 3px;
}
.exchange-extra-input input {
  border-radius: 12px;
  font-size: 14px;
  padding: 12px 16px;
  border: none;
  background-color: rgb(196 204 244 / 10%);
}
.exchange-extra-input input:focus {
  box-shadow: none;
  border: none;
  background-color: rgb(196 204 244 / 10%);
}
.exchange-extra-input input::placeholder { color: #9f9fac; }
.exchange-extra-input input::-webkit-input-placeholder { color: #9f9fac; }
.exchange-extra-input input::-moz-placeholder { color: #9f9fac; }
.exchange-extra-input input::-moz-placeholder { color: #9f9fac; }
.exchange-extra-input input::-ms-input-placeholder { color: #9f9fac; }
.exchange-extra-input input.text-danger {
  background-color: rgba(var(--bs-danger-rgb), 0.1) !important;
}
.exchange-cta {
  margin-bottom: 15px;
}
.exchange-cta .btn {
  font-size: 16px;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0px 0px 0 5px rgb(13 153 255 / 20%);
}
.exchange-check {
  text-align: center;
}
.exchange-check a {
  font-size: 14px;
  text-decoration: none;
  color: #9f9fac;
  display: inline-flex;
  align-items: center;
}
.exchange-check svg {
  margin-right: 4px;
}
.exchange-check a:hover {
  color: #0D99FF;
  text-decoration: underline;
}
.exchange-card-overlay {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.25);
  z-index: 50;
  border-radius: 16px;
  transition: opacity .3s ease;
}
.exchange-card-overlay.show {
  display: flex;
}
.exchange-card-overlay.loader {
  display: flex;
}


.section-title {
  text-align: left;
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 25px;
}
.section-title > span {
  color: var(--bs-primary);
  -webkit-text-fill-color: transparent;
  background: linear-gradient(115deg, #00e4df, #0D99FF);
  -webkit-background-clip: text;
}


.advantages {
  padding: 50px 0;
}
.advantages-row {
}
.advantages-item {
  padding: 24px;
}
.advantages-icon {
  margin-bottom: 14px;
}
.advantages-icon > svg {
  width: 48px;
  height: 48px;
}
.advantages-name {
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 14px;
}
.advantages-desc {
  font-size: 16px;
  color: #9f9fac;
  line-height: 130%;
}


.metrics {
  background-color: var(--bs-primary);
  background-color: rgba(37, 38, 45, .9);
  color: var(--bs-primary);
  padding: 50px 0;
}
.metrics-row {
  text-align: center;
  row-gap: 24px;
}
.metrics-item {
  margin-bottom: 0px;
}
.metrics-value {
  font-size: 34px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 6px;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(115deg, #00e4df, #0D99FF);
  -webkit-background-clip: text;
}
.metrics-value small {
  font-size: .7em;
}
.metrics-label {
  font-size: 16px;
  opacity: 0.85;
  color: #f9f9f9;
}


.how-it-works {
  padding: 50px 0;
}
.how-it-works-row {
}
.how-item {
  padding: 24px;
}
.how-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 24px;
}
.how-item-img > img {
  width: 50%;
}
.how-icon-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.how-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  z-index: 2;
  color: #fff;
  background-color: var(--bs-primary);
  box-shadow: 0px 0px 0 5px rgb(64 95 254 / 20%);
  border-radius: 10px;
}
.how-icon > svg {
  height: 20px;
  width: 20px;
}
.how-line {
  flex-grow: 1;
  height: 2px;
  margin-left: 15px;
  background: linear-gradient(90deg, transparent 0%, var(--bs-primary) 50%, transparent 100%);
  border-radius: 8px;
}
.how-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 14px;
}
.how-desc {
  font-size: 16px;
  line-height: 130%;
  color: #9f9fac;
}


.reviews {
  padding: 50px 0;
}
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 25px;
}
.reviews-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #f9f9f9;
  text-decoration: none;
}
.reviews-link svg {
  color: var(--bs-primary);
}
.reviews-link:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}
.reviews-icon {
  width: 14px;
  height: 14px;
  margin-left: 6px;
}
.review-card {
  padding: 24px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  height: 100%;
  background-color: rgba(37, 38, 45, .9);
  border: none;
}
.review-stars {
  display: flex;
  margin-bottom: 14px;
  flex-direction: row;
  align-items: center;
  column-gap: 0px;
}
.review-stars .star {
  width: 24px;
  height: 24px;
  color: rgb(196 204 244 / 35%);
}
.review-stars .star.filled {
  color: #ffb84d;
}
.review-text {
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 12px;
}
.review-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #9f9fac;
}
.review-card-info {
  margin-top: 50px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 32.6px 0 rgba(1, 3, 17, .04);
  background-color: rgba(37, 38, 45, .9);
  border: none;
}
.review-card-info p {
  margin-bottom: 0px;
  color: #9f9fac;
}
.review-card-info hr {
  border-color: rgb(196 204 244 / 10%);
  opacity: 1;
}


.cta {
  padding: 25px 0;
}
.cta .cta-card {
  background-color: var(--bs-primary);
  /*background-image: url(/assets/img/cta-bg.webp);
  background-repeat: no-repeat;
  background-position: 55rem 0rem;
  background-blend-mode: color-burn;
  background-size: 32%;*/
  background-image: url(/assets/img/main.bg.svg);
  background-size: cover;
  background-position: center;
  background-blend-mode: color-burn;
  color: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 0 8px rgb(13 153 255 / 35%);
}
.cta .cta-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 14px;
}
.cta .cta-desc {
  font-size: 16px;
  line-height: 130%;
  opacity: 0.85;
  margin-bottom: 0px;
}
.cta .cta-timer {
  text-align: center;
}
.cta .cta-timer .timer {
  display: flex;
  font-size: 36px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 15px;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}
.cta .cta-timer .promo-code {
  display: inline-flex;
  background: #fff;
  color: var(--bs-danger);
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  padding: 8px;
  padding-left: 14px;
  border-radius: 12px;
  align-items: center;
  position: relative;
  column-gap: 14px;
}
.cta .cta-timer .promo-code .btn {
  padding: 5px;
  box-shadow: none;
  border: none !important;
}
.cta .cta-timer .promo-code .btn > svg {
  width: 20px;
  height: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .cta .cta-timer {
    margin-top: 25px;
  }
}

.partners {
  padding: 50px 0;
}
.partners-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  gap: 40px;
  user-select: none;
}
.partners-list svg {
  height: 34px;
}
.partners-list img {
  height: 45px;
  object-fit: contain;
}


.kyc-aml {
  padding: 50px 0;
}
.kyc-desc {
  font-size: 18px;
  margin-bottom: 35px;
  color: #9f9fac;
}
.kyc-aml .accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 25 24'%3E%3Cpath fill='%230D99FF' d='M13.414 13v6h-2v-6h-6v-2h6V5h2v6h6v2h-6Z'/%3E%3C/svg%3E");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 25 24'%3E%3Cpath fill='%230D99FF' d='M5.414 13v-2h14v2h-14Z'/%3E%3C/svg%3E");
}
@media (max-width: 1200px) {
  .kyc-aml .accordion {
    padding: 0 8px;
  }
}
.kyc-aml .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #25262d;
  border-radius: 0px;
}
.kyc-aml .accordion-button {
  font-size: 20px;
  font-weight: 400;
  background-color: transparent;
  box-shadow: none;
  padding: 16px 0px;
}
.kyc-aml .accordion-button:not(.collapsed) {
  color: var(--bs-body-color);
  background-color: transparent;
  box-shadow: none;
}
.kyc-aml .accordion-body {
  padding: 0px;
  font-size: 16px;
  line-height: 130%;
  color: #9f9fac;
  padding-bottom: 14px;
}
.kyc-aml .accordion-body p {
  margin-bottom: 5px;
}
.kyc-aml .accordion-body strong {
  font-weight: 500;
}
.kyc-aml .accordion-body ul {
  list-style: decimal;
}
.kyc-cta {
  background-color: rgba(37, 38, 45, .9);
  padding: 24px;
  margin: auto;
  border-radius: 16px;
  border: none;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 32.6px 0 rgba(1, 3, 17, .04);
}
.kyc-cta-text {
  font-size: 16px;
  margin: 0px;
}
.kyc-cta hr {
  border-color: rgb(196 204 244 / 10%);
  opacity: 1;
}
.kyc-services {
}
.kyc-services h3 {
  font-size: 20px;
  font-weight: 400;
}
.kyc-services ul {
  display: flex;
  list-style: decimal;
  padding: 0px;
  padding-left: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 42px;
  row-gap: 8px;
  margin: 0;
}
.kyc-services ul li {
}
.kyc-services ul li a {
  color: var(--bs-primary);
  text-decoration: none;
}
.kyc-services ul li a:hover {
  text-decoration: underline;
}


.faq-section {
  padding: 50px 0;
}
.faq-desc {
  font-size: 18px;
  margin-bottom: 35px;
  color: #9f9fac;
}
.faq-section .accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 25 24'%3E%3Cpath fill='%230D99FF' d='M13.414 13v6h-2v-6h-6v-2h6V5h2v6h6v2h-6Z'/%3E%3C/svg%3E");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 25 24'%3E%3Cpath fill='%230D99FF' d='M5.414 13v-2h14v2h-14Z'/%3E%3C/svg%3E");
}
@media (max-width: 1200px) {
  .faq-section .accordion {
    padding: 0 8px;
  }
}
.faq-section .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid #25262d;
  border-radius: 0px;
}
.faq-section .accordion-button {
  font-size: 20px;
  font-weight: 400;
  background-color: transparent;
  box-shadow: none;
  padding: 16px 0px;
}
.faq-section .accordion-button:not(.collapsed) {
  color: var(--bs-body-color);
  background-color: transparent;
  box-shadow: none;
}
.faq-section .accordion-body {
  padding: 0px;
  font-size: 16px;
  line-height: 130%;
  color: #9f9fac;
  padding-bottom: 14px;
}
.faq-section .accordion-body p {
  margin-bottom: 5px;
}
.faq-section .accordion-body strong {
  font-weight: 500;
}
.faq-section .accordion-body ul {
  list-style: decimal;
}


.contacts-cta {
  padding: 50px 0;
  padding-top: 25px;
}
.contacts-cta .contacts-card {
  background-color: rgba(37, 38, 45, .9);
  padding: 24px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 32.6px 0 rgba(1, 3, 17, .04);
  border-radius: 16px;
}
@media (max-width: 992px) {
  .contacts-cta .contacts-card {
    max-width: 495px;
    margin: auto;
    margin-bottom: 55px;
  }
}
.contacts-cta .contacts-card .card-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
.contacts-cta .contacts-card .card-text {
  font-size: 14px;
  margin-bottom: 16px;
  color: #9f9fac;
}
.contacts-cta .contacts-card .subtitle {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: #9f9fac;
  line-height: 14px;
  opacity: .85;
  margin-bottom: 6px;
  margin-top: 24px;
}
.contacts-cta .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 10px;
}
.contacts-cta .btn-icon {
  width: 20px;
  height: 20px;
}
.contacts-cta .contact-email {
  font-size: 14px;
  margin-top: 6px;
}
.contacts-cta .social-links {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contacts-cta .social-links .social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  width: 30px;
  height: 30px;
}
.contacts-cta .social-links .social-btn > svg {
  width: 20px;
  height: 20px;
}
.contacts-cta .cta-card {
  position: relative;
  padding: 48px;
  /*background: url(/assets/img/safe-cta-bg.webp) center / cover no-repeat;
  background-position: 17rem -7rem;
  background-size: 40rem;*/
  background: url(/assets/img/cta-bg.jpg) center no-repeat;
  background-size: cover;
  background-blend-mode: luminosity;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  margin-top: 8px;
  height: calc(100% - 16px);
  width: 100%;
  background-color: rgb(13 153 255 / 70%);
  border-radius: 16px;
  box-shadow: 0 0 0 8px rgb(13 153 255 / 35%);
  max-width: 800px;
  min-height: 350px;
}
.contacts-cta .cta-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}
.contacts-cta .cta-text {
  font-size: 16px;
  margin-bottom: 20px;
}
.contacts-cta .cta-btn {
  display: inline-block;
  font-size: 16px;
  padding: 12px 34px;
  margin-right: auto;
}


.site-footer {
/*  border-top: 1px solid #e6e6e6;*/
  background-color: rgb(36 37 41 / 50%);
  margin-top: 5rem;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  color: var(--bs-body-color);
  font-size: 18px;
  text-decoration: none;
}
.footer-logo > img {
  width: 50px;
  margin-right: 8px;
}
.footer-logo > span {
  font-family: "Playwrite DE SAS", cursive;
  font-weight: 400;
  font-size: 18px;
}
.footer-link {
  color: var(--bs-body-color);
  text-decoration: none;
}
.footer-link:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}
.footer-legal {
  color: #9f9fac;
  font-size: 12px;
  margin-top: 12px;
}


.exchange-rules {
  padding: 50px 0;
}
.exchange-rules .rules-card {
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 32.6px 0 rgba(1, 3, 17, .04);
  background-color: rgba(37, 38, 45, .9);
  border: none;
}
.exchange-rules .accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 25 24'%3E%3Cpath fill='%230D99FF' d='M13.414 13v6h-2v-6h-6v-2h6V5h2v6h6v2h-6Z'/%3E%3C/svg%3E");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 25 24'%3E%3Cpath fill='%230D99FF' d='M5.414 13v-2h14v2h-14Z'/%3E%3C/svg%3E");
}
.exchange-rules .accordion-item {
  background: rgb(196 204 244 / 10%);
  border: none;
  margin-bottom: 25px;
  border-radius: 10px;
}
.exchange-rules .accordion-button {
  font-size: 20px;
  font-weight: 400;
  background-color: transparent;
  box-shadow: none;
  padding: 24px;
}
.exchange-rules .accordion-button:not(.collapsed) {
  color: var(--bs-body-color);
  background-color: transparent;
  box-shadow: none;
}
.exchange-rules .accordion-body {
  font-size: 16px;
  line-height: 130%;
  color: #9f9fac;
  margin: 0px 14px;
  padding: 14px 0;
  border-top: 1px solid rgb(54 56 64 / 15%);
}
.exchange-rules .accordion-body li::marker {
  color: var(--bs-primary);
}
.exchange-rules .accordion-body p {
  margin-top: 10px;
}
.exchange-rules .accordion-body strong {
  font-weight: 500;
}
.exchange-rules .accordion-body ul {
  list-style: decimal;
}
@media (max-width: 576px) {
  .exchange-rules .rules-card {
    padding: 12px;
  }
  .exchange-rules .accordion-item {
    margin-bottom: 16px;
  }
  .exchange-rules .accordion-button {
    font-size: 16px;
    padding: 16px;
  }
}


.exchange-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  transition: opacity .3s ease;
}
.exchange-overlay[hidden] {
  display: none;
}
.exchange-modal {
  background: rgba(37, 38, 45, .9);
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  overflow: hidden;
  animation: modal-fade-in .25s ease;
}

@keyframes modal-fade-in {
  from {
    opacity: 0;
    transform: scale(.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.exchange-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgb(196 204 244 / 10%);
}
.exchange-modal-header h2 {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}
.exchange-modal-close {
  border: none;
  background: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background .2s;
  color: var(--bs-body-color);
}
.exchange-modal-close:hover {
  background: rgba(0,0,0,0.05);
}
.exchange-modal-search {
  padding: 12px 18px;
  padding-bottom: 0px;
}
.exchange-modal-search input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
  background-color: rgb(196 204 244 / 10%);
  color: var(--bs-body-color);
}
.exchange-modal-search input::placeholder { color: #9f9fac; }
.exchange-modal-search input::-webkit-input-placeholder { color: #9f9fac; }
.exchange-modal-search input::-moz-placeholder { color: #9f9fac; }
.exchange-modal-search input::-moz-placeholder { color: #9f9fac; }
.exchange-modal-search input::-ms-input-placeholder { color: #9f9fac; }
.exchange-modal-search input:focus {
  border-color: #007bff;
}
.exchange-modal-filters {
  display: flex;
  gap: 8px;
  padding: 10px 18px;
  border-bottom: 1px solid rgb(196 204 244 / 10%);
  justify-content: flex-start;
  flex-wrap: wrap;
}
.exchange-modal-filters button {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  background: rgb(196 204 244 / 10%);
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  color: #f9f9f9;
}
.exchange-modal-filters button:hover {
  background: rgb(196 204 244 / 20%);
}
.exchange-modal-filters button.active {
  background: #0D99FF;
  color: #fff;
  border-color: #0D99FF;
}
.exchange-modal-list {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0;
}
.exchange-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  cursor: pointer;
  transition: background .2s;
}
.exchange-item:hover {
  background: rgb(196 204 244 / 10%);
}
.exchange-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.exchange-item img {
  width: 28px;
  height: 28px;
}
.exchange-item span {
  font-size: 14px;
  font-weight: 500;
}
.exchange-item-balance {
  font-size: 14px;
  color: #9f9fac;
  font-weight: 400;
}

.exchange-success-modal {
  max-width: 365px;
}
.exchange-success-modal svg {
  width: 50px;
  height: 50px;
  margin-top: 10px;
  margin-bottom: 25px;
  border-radius: 50%;
  background-color: rgba(var(--bs-success-rgb), .15);
  color: rgba(var(--bs-success-rgb), .95) !important;
}
.exchange-success-modal .modal-title {
  color: #f9f9f9;
  font-size: 24px;
  font-weight: 500;
}
.exchange-success-modal p {
  color: #9f9fac;
  font-size: 16px;
}

.about {
  padding: 50px 0;
}
.about-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-illustration img {
  max-width: 435px;
  border-radius: 16px;
}
.about-illustration svg {
  max-width: 685px;
  height: auto;
  width: 100%;
}

.shadow-bg-wrapper {
  position: relative;
  z-index: 1;
}
.shadow-bg-wrapper .shadow-bg {
  background: 0 0;
  height: 0;
  position: absolute;
  width: 0;
  z-index: -1;
}
.shadow-bg-wrapper .shadow-bg-one {
  box-shadow: 0 0 300px 100px rgba(16, 183, 148, .26);
  right: 10%;
  top: 0;
}
.shadow-bg-wrapper .shadow-bg-two {
  box-shadow: 0 500px 300px 200px rgba(50, 205, 177, .25);
  right: 15%;
  top: 30%;
}
.shadow-bg-wrapper .shadow-bg-three {
  box-shadow: 0 0 300px 100px rgba(16, 183, 148, .26);
  left: 0;
  top: 0;
}
.shadow-bg-wrapper .shadow-bg-four {
  box-shadow: 0 500px 300px 200px rgba(50, 205, 177, .25);
  left: 4%;
  top: -4%;
}