/* Cards */
.clp_cards-block {}
.clp_cards {
  padding-bottom: 24px;
}
.clp_cards-title-box {
  margin-bottom: 100px;
}
.clp_cards-title {
  color: #000;
  font-size: 42px;
  line-height: 48px;
  font-weight: 600;
  text-align: center;
}
.clp_cards-subtitle {
  color: #000;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}
.clp_cards-box {}
.clp_cards-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
}
.clp_cards-item {
  color: #000;
  position: relative;
  width: calc(25% - 24px);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(25% - 24px);
}
.clp_cards-item:before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  transition: .2s all ease-in-out;
}
.clp_cards-item:hover:before {
  top: -24px;
  border-color: #000;
  height: calc(100% + 46px);
}
.clp_cards-item:after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 1;
  border: 1px solid #E5E5E5;
  background: url(../imgs/card_background.png);
  border-radius: 16px;
  transition: .2s all ease-in-out;
}
.clp_cards-item:hover:after {
  opacity: 0;
  top: -24px;
  height: calc(100% + 46px);
}
.clp_cards-item-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100%;
  padding: 30px 26px 0;
  opacity: .5;
  transition: .2s all ease-in-out;
}
.clp_cards-item:hover .clp_cards-item-container {
  padding-top: 15px;
  opacity: 1;
}
.clp_cards-item-icon-box {
  margin: 0 0 20px;
  height: 40px;
  line-height: 40px;
}
.clp_cards-item-icon {
  max-height: 40px;
  max-width: 60px;
  vertical-align: middle;
}
.clp_cards-item-title-box {
  margin: 0;
}
.clp_cards-item-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}
.clp_cards-item-info {
  font-size: 18px;
  line-height: 24px;
  margin: 16px 0 26px;
}
.clp_cards-item-link-box {
  margin: auto 0 0;
  padding-top: 0;
  opacity: 0;
  transition: .2s all ease-in-out;
}
.clp_cards-item:hover .clp_cards-item-link-box {
  padding-top: 15px;
  opacity: 1;
}
.clp_cards-item-link {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.42px;
  text-transform: uppercase;
  padding: 10px 26px;
  line-height: 22px;
  display: inline-block;
  width: 100%;
  background: transparent;
  text-align: center;
  border: 1px solid #000;
  border-radius: 26px;
  transition: .2s all ease-in-out;
}
.clp_cards-item-link:hover {
  background: #000;
  color: #FFF;
}

@media (max-width: 767px) {
  .clp_cards-block {
    overflow: hidden;
  }
  .clp_cards {}
  .clp_cards-title-box {}
  .clp_cards-title {
    font-size: 32px;
    line-height: 40px;
    max-width: 304px;
    margin-left: auto;
    margin-right: auto;
    br{
      display: none;
    }
  }
  .clp_cards-subtitle {
    font-size: 18px;
    line-height: 24px;
    max-width: 304px;
    margin-left: auto;
    margin-right: auto;
  }
  .clp_cards-box {
    padding: 0 16px;
  }
  .clp_cards-list {}
  .clp_cards-item {
    width: 100%;
    flex-basis: 100%;
  }
  .clp_cards-item:hover:before {
    top: 0;
    border-color: #E5E5E5;
    height: 100%;
  }
  .clp_cards-item.swiper-slide-active:before {
    top: -24px;
    border-color: #000;
    height: calc(100% + 46px);
  }
  .clp_cards-item:hover:after {
    opacity: 1;
    top: 0;
    height: 100%;
  }
  .clp_cards-item.swiper-slide-active:after {
    opacity: 0;
    top: -24px;
    height: calc(100% + 46px);
  }
  .clp_cards-item-container {}
  .clp_cards-item:hover .clp_cards-item-container {
    padding-top: 30px;
    opacity: .5;
  }
  .clp_cards-item.swiper-slide-active .clp_cards-item-container {
    padding-top: 15px;
    opacity: 1;
  }
  .clp_cards-item-icon-box {}
  .clp_cards-item-icon {}
  .clp_cards-item-title-box {}
  .clp_cards-item-title {}
  .clp_cards-item-info {}
  .clp_cards-item-link-box {}
  .clp_cards-item:hover .clp_cards-item-link-box {
    opacity: 0;
    padding-top: 0;
  }
  .clp_cards-item.swiper-slide-active .clp_cards-item-link-box {
    opacity: 1;
    padding-top: 15px;
  }
  .clp_cards-item-link {}
  .clp_cards-item-link:hover {
    background: transparent;
    color: #000;
  }
}

/* Balance */
.clp_premium-block .clp_premium-title {
  color: #000;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0 24px;
}

.clp_premium-block .clp_premium-subtitle {
  color: #000;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}

.clp_premium-title-box {
  margin-bottom: 128px;
}

.clp_premium-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  margin-bottom: 128px;
}

.clp_premium-row--reverse .clp_premium-media {
  order: 2;
}

.clp_premium-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 400px;
}

.clp_premium-h {
  color: #000;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0 32px;
}

.clp_premium-lead {
  color: #000;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  margin: 0 0 32px;
}

.clp_premium-copy {
  color: #86868B;
  font-family: Nunito;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}

.clp_premium-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.clp_btn {
  color: #FFF;
  text-align: center;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: .48px;
  text-transform: uppercase;
  height: 56px;
  padding: 20px 32px;
  border-radius: 64px;
  background: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.clp_btn--green {
  background: #22E243;
  color: #000;
}

@media (max-width: 767px) {
.clp_premium-content{
  max-width: 520px;
}

  .clp_premium-block .clp_premium-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  .clp_premium-block .clp_premium-subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .clp_premium-title-box {
    margin-bottom: 64px;
  }

  .clp_premium-row {
    display: block;
    margin-bottom: 64px;
  }

  .clp_premium-media {
    margin-bottom: 32px;
  }

  .clp_premium-h {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 32px;
  }

  .clp_premium-lead {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
  }

  .clp_premium-copy {
    font-size: 18px;
    line-height: 24px;
  }

  .clp_premium-cta {
    display: none;
  }
}



/* KYC */
.clp_kyc-block .clp_kyc-title {
  color: #000;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0 12px;
}

.clp_kyc-block .clp_kyc-subtitle {
  color: #000;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 48px;
}

.clp_kyc-desc {
  color: #86868B;
  text-align: center;
  font-family: Nunito;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 48px;
}

.clp_kyc-media {
  margin: 0 0 48px;
  overflow: hidden;
}
.clp_kyc-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.clp_kyc-media-canvas-box {
  margin: 0 -9%;
}
.clp_kyc-media-canvas {
  width: 100%;
}

.clp_kyc-note {
  color: #86868B;
  text-align: center;
  font-family: Nunito;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 24px;
}

.clp_kyc-strong {
  color: #000;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 80px;
}

.clp_kyc-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
}



@media (max-width: 767px) {


  .clp_kyc-block .clp_kyc-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 12px;
  }

  .clp_kyc-block .clp_kyc-subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 32px;
  }

  .clp_kyc-desc {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 40px;
    br{
      display: none;
    }
  }

  .clp_kyc-media-canvas-box {
    margin: 0 -20px;
  }

  .clp_kyc-media img {
    margin-bottom: 40px;
  }

  .clp_kyc-note {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .clp_kyc-strong {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 40px;
  }

  .clp_kyc-cta {
    display: flex;        flex-direction: column;
  }
}


/* Currencies */

.clp_currencies-block .clp_currencies-badge img {
  display: block;
  margin: 0 auto 24px;
  height: auto;
}

.clp_currencies-block .clp_currencies-title {
  color: #000;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0 116px;
}

.clp_currencies-cols {
  columns: 3;
  column-gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clp_currency {
  break-inside: avoid;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 23px;
}

.clp_currency-flag img {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  object-fit: cover;
  display: block;
}

.clp_curr-code,
.clp_curr-name,
.clp_curr-dot {
  color: #222;
  font-family: Nunito;
  font-size: 24px;
  font-style: normal;
  line-height: normal;
}

.clp_curr-code {
  font-weight: 700;
}



@media (max-width: 767px) {


  .clp_currencies-block .clp_currencies-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 40px;
  }

  .clp_currencies-cols {
    columns: 1;
  }

  .clp_currency {
    margin-bottom: 24px;
  }

  .clp_curr-code,
  .clp_curr-name,
  .clp_curr-dot {
    font-size: 18px;
    line-height: 24px;
  }

  .clp_curr-code {
    font-weight: 700;
  }


}



/* clp_feature */

.clp_feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.clp_feature-row--image-left .clp_feature-media {
  order: 1;
}
.clp_feature-content{
  max-width: 520px;
}
.clp_feature-row--image-left .clp_feature-content {
  order: 2;
}

.clp_feature-title {
  color: #000;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0 16px;
}

.clp_feature-subtitle {
  color: #000;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  margin: 0 0 32px;
}

.clp_feature-kicker {
  color: #000;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin: 0 0 40px;
  max-width: 460px;
}

.clp_feature-list {
  list-style: none;
  margin: 0 0 80px;
  padding: 0;
}

.clp_feature-li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 24px;
}

.clp_feature-li:last-child {
  margin-bottom: 0;
}

.clp_feature-li-icon {
  width: 24.689px;
  height: 25.366px;
  flex: 0 0 24.689px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.clp_feature-li-text {
  color: #000;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.clp_feature-li-text strong {
  color: #000;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.clp_feature-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.clp_feature-media picture,
.clp_feature-media img {
  display: block;
  width: 100%;
}

.clp_feature-media img {
  height: 780px;
  object-fit: contain;
}



@media (max-width: 767px) {
.clp_feature-cta{
      display: flex
;
    flex-direction: column;
}

  .clp_feature-row {
    display: block;
  }

  .clp_feature-title {
    font-size: 32px;
    line-height: 40px;
    margin: 0;
  }

  .clp_feature-subtitle {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 16px;
  }

  .clp_feature-kicker {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 40px;
  }

  .clp_feature-li-text {
    font-size: 18px;
    line-height: 24px;
  }

  .clp_feature-li-text strong {
    font-size: 16px;
    line-height: 20px;
  }

  .clp_feature-list {
    margin-bottom: 24px;
  }

  .clp_feature-li {
    margin-bottom: 24px;
  }

  .clp_feature-media img {
    height: 492px;
    aspect-ratio: 55 / 89;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .clp_feature-row {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "subtitle"
      "kicker"
      "list"
      "media"
      "cta";           
    gap: 16px;
  }

  .clp_feature-content {
    display: contents;
  }

  .clp_feature-title     { grid-area: title; }
  .clp_feature-subtitle  { grid-area: subtitle; }
  .clp_feature-kicker    { grid-area: kicker; }
  .clp_feature-list      { grid-area: list; }
  .clp_feature-media     { grid-area: media; }
  .clp_feature-cta       { grid-area: cta; }


}


/* highlight */

.clp_highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 416px);
  gap: 32px;
  justify-content: center;
}

.clp_highlight {
  width: 416px;
  height: 416px;
  flex-shrink: 0;
  border-radius: 1px;
  background: #F7F7F7;
  box-shadow: 0 0.482px 7.226px 0 rgba(0, 0, 0, 0.10);
  padding: 57px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.clp_highlight-icon {
  max-height: 55px;
  margin: 0 0 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.clp_highlight-title {
  color: #000;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 24px;
}

.clp_highlight-text {
  color: #000;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}

@media (max-width: 767px) {


  .clp_highlights-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .clp_highlight {
    width: 100%;
    height: auto;
    padding: 78px 24px;
  }

  .clp_highlight-title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .clp_highlight-text {
    font-size: 16px;
    line-height: 24px;
  }
}


/* hero */

.clp_hero-block {
  position: relative;
  overflow: hidden;
  margin-top: unset;
  /* padding-top: 230px; */
  padding-bottom: 170px;
}

.clp_hero-inner {
  display: flex;
  align-items: center;
  min-height: 650px;
}

.clp_hero-grid {
}

.clp_hero-title {
  color: #000;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 68px;
  font-style: normal;
  font-weight: 700;
  line-height: 76px;
  margin: 0 0 32px;
}

.clp_hero-text {
  color: #000;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin: 0 0 64px;
}

.clp_hero-cta .clp_btn {
  width: max-content;
  height: 56px;
  padding: 20px 32px;
  border-radius: 64px;
  background: #000;
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: .48px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.clp_hero-anim {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  pointer-events: none;
  width: 100%;
  z-index: -1;
}
.clp_hero-anim-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 20px;
  left: 0;
}

@keyframes clpHeroFloat {
  from { transform: translateY(0) translateX(0); }
  to   { transform: translateY(-10px) translateX(-6px); }
}

.clp_hero-media {
  display: none;
}

.clp_hero-partners {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 16px 0;
}

.clp_hero-partners-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: clpHeroMarquee 28s linear infinite;
}

@keyframes clpHeroMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.clp_hero-partner-logo {
  height: 23.462px;
  width: auto;
  flex: 0 0 auto;
  display: block;
}

@media (max-width: 767px) {
  .clp_hero-title {
    max-width: 300px;
  }

  .clp_hero-grid {
    display: block;
  }

  .clp_hero-title {
    font-size: 40px;
    line-height: 48px;
    margin: 0 0 24px;
  }

  .clp_hero-text {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 24px;
  }

  .clp_hero-cta .clp_btn {
    width: 100%;
    margin-bottom: 32px;
  }

  .clp_hero-anim {
    display: none;
  }

  .clp_hero-media {
    display: block;
    margin: 0px -45px;
  }
  .clp_hero-media img {
    width: 100%;
  }
  .clp_hero-media video {
    width: 100%;
    height: auto;
    display: block;
  }

  .clp_hero-partners {
    padding: 12px 0;
    bottom: unset;
  }

  .clp_hero-partners-track {
    gap: 40px;
    animation-duration: 24s;
  }
  .clp_hero-block {
    margin-bottom: 0;
    padding-bottom: 50px;
  }
}




/* pricing */
.clp_pricing-block {
  position: relative;
}

.clp_pricing-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  
  margin: 0 0 104px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.clp_pricing-title {
  color: #000;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  margin: 0 0 48px;
}

.clp_pricing-text {
  color: #727272;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin: 0 0 48px;
}

.clp_pricing-cta {
  display: flex;
  justify-content: center;
}

.clp_btn--accent {
  display: flex;
  width: max-content;
  height: 56px;
  padding: 20px 22px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 64px;
  background: #22E243;
  color: #000;
  text-align: center;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 767px) {

  .clp_pricing-img img {
    margin-bottom: 64px;
  }

  .clp_pricing-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 48px;
  }

  .clp_pricing-text {
    color: #727272;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 48px;
    max-width: 304px;
    margin-left: auto;
    margin-right: auto;
    br{
      display: none;
    }
  }

  .clp_btn--accent {
    width: 100%;
    margin-bottom: 0;
  }
}


/* ctacard */


.clp_ctacard-block {
  padding-bottom: 64px;
}

.clp_ctacard {
  width: 1150px;
  max-width: 100%;
  height: 462px;
  margin: 0 auto;
  border-radius: 20px;
  background-repeat: repeat;
  background-size: 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding-bottom: 64px;
  position: relative;
  box-shadow: 0 0.482px 7.226px 0 rgba(0,0,0,0.10);
  background-size: contain;
}

.clp_ctacard-logo {
  width: 152px;
  height: 152px;
  object-fit: contain;
  display: block;
  margin: -76px auto 48px; /* lekko do góry + 48px pod spodem */
}

.clp_ctacard-title {
  color: #000;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin: 0 0 48px;
}

.clp_ctacard-text {
  color: #000;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 48px;
  max-width: 760px;
 
}

.clp_ctacard-btn {
  display: flex;
  width: 242px;
  height: 56px;
  padding: 20px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 64px;
  background: #22E243;
  color: #000;
  text-align: center;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 767px){


  .clp_ctacard{
    width: 352px;
    height: 374.917px;
    border-radius: 20px;
    padding-bottom: 64px;
  }

  .clp_ctacard-logo{
    width: 106px;
    height: 106px;
    margin: -53px auto 32px;
  }

  .clp_ctacard-title{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
  }

  .clp_ctacard-text{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px; max-width: 304px;
  }

  .clp_ctacard-btn{
    width: 242px;
    height: 56px;
    padding: 20px 32px;
  }
}




/* heading */

.clp_heading-overline {
  color: #AAA;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.clp_heading-title {
  color: #000;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 68px;
  font-style: normal;
  font-weight: 700;
  line-height: 76px;
  margin: 0;
}

@media (max-width: 767px) {


  .clp_heading-overline {
    color: #AAA;
    font-family: Nunito;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .clp_heading-title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width:768px){
  .clp_heading-block{
  margin-top: 48px !important;
  margin-bottom: -100px !important;
}

}
.clp_heading-block{
  margin-top: 48px !important;
}
/* arrow link */

.clp_arrows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  text-transform: uppercase;
}

.clp_arrows-item,.clp_arrows-link,.clp_arrows-right {
  display: flex;
  align-items: center;
  gap: 12px;
  
}
@media (max-width:768px){
  .clp_arrows-item,.clp_arrows-link,.clp_arrows-right {
display: block !important;
  }
}
.clp_arrows-item--left { justify-self: start; }
.clp_arrows-item--right { justify-self: end; }

.clp_arrows-icon svg {
  width: 100px;
  height: 87px;
  display: block;
}

.clp_arrows-link {
  color: #000;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 2px;
  text-decoration: none;
}

.clp_arrows-right {
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Nunito;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 2px;
  text-decoration: none;
}
.clp_arrows-right .muted,.clp_arrows-item--left .muted { color: #727272; }
.clp_arrows-right .strong { color: #000; }

@media (max-width: 767px){
.clp_arrows-item--right{
  .clp_arrows-icon{
    order: -1;
    float: right;
    margin-left: auto;
  }
}
  .clp_arrows {
    grid-template-columns: 1fr;
    row-gap: 40px;    
        width: 213px;
        margin: 0 auto;
  }

  .clp_arrows-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .clp_arrows-link {
    color: #000;
    font-size: 12px;
    line-height: 32px;
    letter-spacing: 2px;
  }

  .clp_arrows-right {
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 2px;
  }
  .clp_arrows-right .muted,.clp_arrows-item--left .muted  { color: #727272; }
  .clp_arrows-right .strong { color: #000; }
}


.btn_margin{
  margin: 0 auto;
  margin-top: 80px;
}
@meida (max-width:768px){
  .btn_margin{
    display: none;
  }
}
/* ===== FAQ ===== */
.clp_faq-title {
color:  #000;
text-align: center;
font-family: Nunito;
font-size: 48px;
font-style: normal;
font-weight: 700;
line-height: 64px; /* 133.333% */
  margin: 0 0 52px;
}

.clp_faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.clp_faq-item {
  border-bottom: 1px solid rgba(0,0,0,.3);
  padding-bottom: 64px; 
  padding-top: 64px; 
  padding-left: 5vw;
  padding-right: 5vw;
}

.clp_faq-item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

.clp_faq-item summary::-webkit-details-marker { display: none; }

.clp_faq-q {
  color: #000;
font-family: Nunito;
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: 32px; 
  margin: 0;
  flex: 1;
  margin-bottom: unset !important;
}

.clp_faq-icon {
width: 17.384px;
height: 17.384px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}

details[open] .clp_faq-icon { transform: rotate(180deg); }

.clp_faq-a {
  color: #000;
  font-family: Nunito;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 16px 0 0; 
}

@media (max-width: 767px){
.clp_faq-item{
padding: 32px 0px;
}
  .clp_faq-title {
font-family: Nunito;
font-size: 28px;
font-style: normal;
font-weight: 700;
line-height: 40px; 
    margin-bottom: 34px;
    text-align: left;
  }

  .clp_faq-q {
    font-size: 18px;
    line-height: 24px;
  }
}




/* HERO PRODUCT */
.clp_product-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;

  align-items:center;
}

.clp_product-hero-cta{grid-area:cta;display:flex;gap:16px;flex-wrap:wrap}

.clp_product-hero-title{
  color:#000;
  font-feature-settings:'liga' off,'clig' off;
  font-family:Nunito;
  font-size:68px;
  font-style:normal;
  font-weight:700;
  line-height:76px;
  margin:0 0 12px;
}

.clp_product-hero-subtitle{
  color:#000;
  text-align:left;
  font-feature-settings:'liga' off,'clig' off;
  font-family:Nunito;
  font-size:24px;
  font-style:normal;
  font-weight:700;
  line-height:32px;
  margin-bottom: 80px;
  max-width: 530px;
}

.clp_product-hero-media picture,
.clp_product-hero-media img{display:block;width:100%;height:auto;object-fit:contain}

.clp_btn{
  color:#FFF;
  text-align:center;
  leading-trim:both;
  text-edge:cap;
  font-family:Nunito;
  font-size:16px;
  font-style:normal;
  font-weight:600;
  line-height:normal;
  letter-spacing:.48px;
  text-transform:uppercase;
  height:56px;
  padding:20px 32px;
  border-radius:64px;
  background:#000;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none
}
.clp_btn--green{background:#22E243;color:#000}

@media (max-width:767px){
  .clp_product-hero-grid{
    grid-template-columns:1fr;
    grid-template-areas:
      "left"
      "right"
      "cta";
    gap:0
  }
  .clp_product-hero-title{
    font-size:40px;
    line-height:48px;
    margin-bottom:12px
  }
  .clp_product-hero-subtitle{
    font-size:20px;
    line-height:24px;
    margin-bottom:0
  }
  .clp_product-hero-right{margin:36px 0}
  .clp_product-hero-cta{flex-direction:column}
  .clp_product-hero-cta .clp_btn{width:100%}
}
.clp_product-hero-block{
  margin-top: 48px;
}
@media (max-width: 767px) {
  .clp_product-hero-block{
    margin-top: unset;
  }
  .clp_product-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "subtitle"
      "media"
      "cta"; 
    gap: 16px;
  }

  .clp_product-hero-left {
    display: contents; 
  }

  .clp_product-hero-title    { grid-area: title; }
  .clp_product-hero-subtitle { grid-area: subtitle; }
  .clp_product-hero-cta      { grid-area: cta; }
  .clp_product-hero-media    { grid-area: media; }


}




/* clp_process */

.clp_process-title{
  color:#000;
  text-align:center;
  font-feature-settings:'liga' off,'clig' off;
  font-family:Nunito;
  font-size:42px;
  font-style:normal;
  font-weight:700;
  line-height:48px;
  margin:0 0 40px;
}

.clp_process-tabs{
  display:flex;
  justify-content:center;
  gap:40px;
  overflow:hidden;
}
@media (max-width:768px){
  .scroll-tabs{
    overflow: scroll;
    .clp_process-tabs{
      width: 600px;
      gap: 10px;
    }
  }
}
.clp_process-tab{
  background:transparent;
  border:0;
  padding:12px 4px;
  color:#A3A3A3;
  font-feature-settings:'liga' off,'clig' off;
  font-family:Nunito;
  font-size:18px;
  font-style:normal;
  font-weight:500;
  line-height:24px;
  border-bottom:4px solid transparent;
  cursor:pointer;
}

.clp_process-tab.is-active{
  color:#222;
  font-weight:700;
  border-bottom-color:#000;
}

.clp_process-wrap{
  margin-top:80px;
}

.clp_process-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:64px;
}

.clp_process-pane{display:none}
.clp_process-pane.is-active{display:block}

.clp_process-pane-title{
  color:#000;
  font-feature-settings:'liga' off,'clig' off;
  font-family:Nunito;
  font-size:42px;
  font-style:normal;
  font-weight:700;
  line-height:48px;
  margin:0 0 16px;
}

.clp_process-pane-sub{
  color:#000;
  font-feature-settings:'liga' off,'clig' off;
  font-family:Nunito;
  font-size:34px;
  font-style:normal;
  font-weight:500;
  line-height:40px;
  margin:0 0 42px;
}

.clp_process-list{
  list-style:none;
  margin:0 0 80px;
  padding:0;
}

.clp_process-li{
  display:flex;
  gap:8px;
  align-items:flex-start;
  color:#000;
  font-family:Nunito;
  font-size:16px;
  font-style:normal;
  font-weight:500;
  line-height:20px;
  margin:0 0 24px;
}

.clp_process-li:last-child{margin-bottom:0}

.clp_process-li-icon{
  width:24.689px;
  height:25.366px;
  flex:0 0 24.689px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.clp_process-media picture,
.clp_process-media img,
.clp_process-media video{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}

.clp_process-cta{display:flex;gap:16px;flex-wrap:wrap}
.clp_btn{
  color:#FFF;
  text-align:center;
  leading-trim:both;
  text-edge:cap;
  font-family:Nunito;
  font-size:16px;
  font-style:normal;
  font-weight:600;
  line-height:normal;
  letter-spacing:.48px;
  text-transform:uppercase;
  height:56px;
  padding:20px 32px;
  border-radius:64px;
  background:#000;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none
}
.clp_btn--green{background:#22E243;color:#000}

@media (max-width:767px){
  .clp_process-title{
    font-size:32px;
    line-height:40px;
    margin-bottom:40px
  }
  .clp_process-tabs{
    justify-content:flex-start;
    overflow-x:auto;
    padding-bottom:8px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch
  }
  .clp_process-tab{
    font-size:16px;
    line-height:24px;
    scroll-snap-align:start
  }
  .clp_process-wrap{margin-top:80px}
  .clp_process-row{display:block}
  .clp_process-pane-title{
    font-size:32px;
    line-height:40px;
    margin-bottom:16px
  }
  .clp_process-pane-sub{
    font-size:24px;
    line-height:32px;
    margin-bottom:40px
  }
  .clp_process-cta{flex-direction:column}
  .clp_process-cta .clp_btn{width:100%}
}
@media (max-width: 767px) {
  .clp_process-list{
    margin-bottom: unset;
  }
  .clp_process-row {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "subtitle"
      "list"
      "media"
      "cta"; 
    gap: 16px;
  }

  .clp_process-content {
    display: contents; 
  }

  .clp_process-pane-title { grid-area: title; }
  .clp_process-pane-sub   { grid-area: subtitle; }
  .clp_process-list       { grid-area: list; }
  .clp_process-media      { grid-area: media; }
  .clp_process-cta        { grid-area: cta; }

}




/* B2C SEKCJE */


/* flip-card */


.clp_crypto-cards-heading {
    color: #000;
    text-align: center;
   
    font-family: Nunito;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    margin-bottom: 78px
}

.clp_crypto-cards-grid {
    margin-bottom: 80px
}

.clp_crypto-cards-grid-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(301.195px, 1fr));
    gap: 24px;
    justify-items: center;
}



.swiper {
    width: 100%
}

.swiper-slide {
    display: flex;
    justify-content: center
}

.swiper-slide .four_coulmn_wrap-card {
    width: 301.195px;
    height: 446px;
    flex-shrink: 0
}

.four_coulmn_wrap-column {
    perspective: 1000px
}

.four_coulmn_wrap-card {
    position: relative;
    width: 301.195px;
    height: 446px;
    padding: 26px 31px;
border-radius: 18.499px;
background:  #F7F7F7;
box-shadow: 0 0.482px 7.226px 0 rgba(0, 0, 0, 0.10);
    transition: transform .6s
}

.four_coulmn_wrap-column-content,
.four_coulmn_wrap-column-flip {
    position: absolute;
    inset: 0;
    padding: 26px 31px;
    display: flex;
    flex-direction: column;
    gap: 16px
}



.four_coulmn_wrap-column-flip.back {
    transform: rotateY(180deg)
}

.four_coulmn_wrap-column.is-flipped .four_coulmn_wrap-card {
    transform: rotateY(180deg)
}

.four_coulmn_wrap-column .front {
    opacity: 1;
    pointer-events: auto
}

.four_coulmn_wrap-column .back {
    opacity: 0;
    pointer-events: none
}

.four_coulmn_wrap-column.is-flipped .front {
    opacity: 0;
    pointer-events: none
}

.four_coulmn_wrap-column.is-flipped .back {
    opacity: 1;
    pointer-events: auto
}

.clp_card-title {
    color: #000;
   
    font-family: Nunito;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.clp_card-text {
    color: #000;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px
}

.clp_card-image {
    width: 215px;
    height: 215px;
    margin-top: auto
}

.clp_card-image img {
    width: 215px;
    height: 215px;
    object-fit: contain
}

.four_column-toggle,
.four_column-toggle-close {
    margin-top: auto;
    margin-left: auto;
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: absolute;
    bottom: 26px;
    right: 22px;
    display: none;
}

.four_column-toggle svg circle,
.four_column-toggle-close svg circle {
    fill: #000
}

.clp_crypto-swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 32px;
    position:unset !important;
    align-items: center;
}

.clp_crypto-swiper-pagination .swiper-pagination-bullet {
    width: 4.415px;
    height: 4.415px;
    background: #222;
    opacity: .3
}

.clp_crypto-swiper-pagination .swiper-pagination-bullet-active {
    width: 9px;
    height: 9px;
    background: #222;
    opacity: 1
}


.clp_crypto-cards-disclaimer {
    color: #000;
    text-align: center;
   
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 54px
}

.clp_crypto-cards-cta {
    display: flex;
    justify-content: center
}

.clp_crypto-cards .clp_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    text-decoration: none
}


@media (max-width:767px) {
    .clp_crypto-cards-heading {
        color: #000;
        text-align: center;
       
        font-family: Nunito;
        font-size:  24px;
        font-style: normal;
        font-weight: 700;
        line-height:  32px;
        margin-bottom: 24px;
        br{
          display: none;
        }
    }
    .clp_crypto-cards-disclaimer{
color:  #000;
text-align: center;
font-family: Nunito;
font-size:  16px;
font-style: normal;
font-weight: 500;
line-height:  20px; 
    }
}
@media (max-width:1199px) {
    .clp_crypto-cards-grid-inner {
        grid-template-columns: repeat(2, minmax(301.195px, 1fr));
    }
}

@media (max-width:767px) {
    .clp_crypto-cards-grid {
        display: none
    }

    .clp_crypto-cards-swiper-wrapper {
        display: block;
    }
}

@media (min-width:768px) {
    .clp_crypto-cards-swiper-wrapper {
        display: none
    }
}

.cards-with-icons{
  .clp_card-image img{
    width: unset;
    height: unset;
    bottom: 50px;
    position: absolute;
  }

}


/* step-cards */

.clp_steps-heading {
    color:  #000;
    text-align: center;
  
    font-family: Nunito;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    margin-bottom: 16px;
}

.clp_steps-subheading {
    color:  #000;
    text-align: center;
  
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 84px;
}

.clp_steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 416px);
    gap: 32px;
    justify-content: center;
    margin-bottom: 84px
}

.clp_step-card {
    width: 416px;
    flex-shrink: 0;
border-radius: 1px;
background:  #F7F7F7;
box-shadow: 0 0.482px 7.226px 0 rgba(0, 0, 0, 0.10);
    padding-top: 46px;
    padding-bottom: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start
}

.clp_step-card .clp_step-inner {
    margin: 0 auto
}

.clp_step-label {
    color: #86868B;
    text-align: center;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 40px
}

.clp_step-icon {
    height: 50px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

.clp_step-icon img {
    height: 50px;
    width: auto
}

.clp_step-title {
    color:  #000;
    text-align: center;
  
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%;
    margin-bottom: 12px;
}

.clp_step-text {
    color:  #000;
    text-align: center;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height:  24px;
}

.clp_steps-cta {
    display: flex;
    justify-content: center
}

@media (max-width:1279px) {
    .clp_steps-grid {
        grid-template-columns: repeat(2, 416px)
    }
}

@media (max-width:899px) {
    .clp_steps-grid {
        grid-template-columns: repeat(2, minmax(320px, 416px))
    }
}
.clp_steps-pagination{
  align-items: center;
}
@media (max-width:767px) {
    .clp_steps-heading {
        color: #000;
        text-align: center;
      
        font-family: Nunito;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height:  32px;
        margin-bottom: 16px
    }

    .clp_steps-subheading {
        color:  #000;
        text-align: center;
        font-family: Nunito;
        font-size:  16px;
        font-style: normal;
        font-weight: 500;
        line-height:  20px;
        margin-bottom: 61px
    }

    .clp_steps-grid {
        display: none
    }

    .clp_steps-swiper-wrap {
        display: block
    }

    .clp_steps-swiper .swiper-slide {
        display: flex;
        justify-content: center
    }

    .clp_step-card--mobile {
        width: 100%;
        max-width: 352px;
        margin: 0 24px;

        padding: 40px 0px;
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .clp_step-card--mobile .clp_step-title,
    .clp_step-card--mobile .clp_step-text {
        width: 100%
    }

    .clp_steps-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 16px;
        margin-bottom: 32px;
        position: unset;
    }

    .clp_steps-pagination .swiper-pagination-bullet {
        width: 4.415px;
        height: 4.415px;
        background: #222;
        opacity: .3
    }

    .clp_steps-pagination .swiper-pagination-bullet-active {
        width: 9px;
        height: 9px;
        background: #222;
        opacity: 1
    }
}

@media (min-width:768px) {
    .clp_steps-swiper-wrap {
        display: none
    }
}



/* Split */

.clp_split-inner {
    display: flex;
    gap: 48px;
    align-items: center
}

.clp_split-media {
    flex: 1;
    min-width: 0
}

.clp_split-media img {
    width: 100%;
    height: auto;
    display: block
}

.clp_split-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column
}



.clp_split--align-left .clp_split-content {
    align-items: flex-start;
    text-align: left
}

.clp_split-intro {
    color: #AAA;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.clp_split-title {
    color: #000;
 
    font-family: Nunito;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 16px
}

.clp_split-big {
    color: #000;
 
    font-family: Nunito;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 32px
}

.clp_split-small {
    color: #000;
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 40px
}

.clp_split-list {
    list-style: none;
    margin: 0 0 80px 0;
    padding: 0;
    max-width: 640px
}

.clp_split-li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-items: center;
}

.clp_split-li+.clp_split-li {
    margin-top: 24px
}

.clp_split-li-text {
    color: #000;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px
}

.clp_split-cta {
    margin-bottom: 80px
}

.clp_split-stores {
.download{
      display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap
}
}

.clp_split-stores .clp_store img {
    height: 52.214px;
    width: auto;
    display: block
}

@media (min-width:768px){
  .clp_split-intro{
    color:  #AAA;
font-family: Nunito;
font-size: 12px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 1.2px;
text-transform: uppercase;
  }
  .clp_split--image-right .clp_split-media {
    order: 2
}

.clp_split--image-right .clp_split-content {
    order: 1
} 

.clp_split--image-left .clp_split-media {
    order: 1
}

.clp_split--image-left .clp_split-content {
    order: 2
} 
}

@media (max-width:767px) {
  .clp_split-li-text{
    text-align: left;
  }
  .clp_split-stores {
.download{
  justify-content: center;
}
  }
  .opinion{
   .clp_store  img{
          width: 222px;
    height: 30px;
    margin-top: 32px;
    }
  }
    .clp_split-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 24px
    }

    .clp_split-media {
        /* order: 1 */
        margin-bottom: 32px;
    }

    .clp_split-content {
        order: 2;
        align-items: flex-start;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .clp_split-title {
        color: #000;
     
        font-family: Nunito;
        font-size: 32px !important;
        font-style: normal;
        font-weight: 700;
        line-height: 40px !important;
        margin-bottom: 16px
    }
    .clp_split-stores{
              align-items: center;
        justify-content: center;
    }

    .clp_split-big {
        color: #000;
     
        font-family: Nunito;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px;
        margin-bottom: 32px
    }

    .clp_split-small {
        color: #000;
        font-family: Nunito;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        margin-bottom: 40px;
        br{
          display: none;
        }
    }

    .clp_split-list {
        margin-bottom: 40px
    }

    .clp_split-cta {
        margin-bottom: 40px
    }

    .clp_store--mobile {
        display: inline-block
    }
}

@media (min-width:768px) {
    .clp_store--mobile {
        display: none
    }
    .clp_split--align-right .clp_split-content {
    align-items: flex-end;
    text-align: right
}
}

 .clp_split-content .clp_split-media{
    display: none;
  }
@media (max-width:768px){
  .clp_split-media-hide-mobile{
    display: none;
  }
  .clp_split-content .clp_split-media{
    display: block;
  }
}


/* popular pairs */

.clp_pairs-head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 80px
}

.clp_pairs-icon {
    width: 39.385px;
    height: 39.385px;
    flex: 0 0 auto
}

.clp_pairs-title {
    color: #000;
    text-align: center;
    font-family: Nunito;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.92px
}

.clp_pairs-list {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    column-gap: 150px;
    row-gap: 60px;
    justify-content: center;
}

.clp_pairs-link {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none
}

.clp_pairs-c {
    color:  #000;
 
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

.clp_pairs-to {
    color:  #86868B;
 
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

@media (max-width:767px) {
  .clp_pairs .clp_section-container{
    max-width: 305px;
    margin-left: auto;
    margin-right: auto;
  }
    .clp_pairs-head {
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 38px
    }

    .clp_pairs-title {
        color: #000;
     text-align: left;
        font-family: Nunito;
        font-size:  24px;
        font-style: normal;
        font-weight: 700;
        line-height:  32px
    }

    .clp_pairs-list {
        grid-template-columns: repeat(2, max-content);
        column-gap: 24px;
        row-gap: 24px;
        justify-content: space-between;
        text-align: left;
    }

    .clp_pairs-c {
        font-size: 14px;
        line-height: normal
    }

    .clp_pairs-to {
        font-size: 14px;
        line-height: normal
    }
}


/* coins */

.clp_supported-heading {
    color: #000;
    text-align: center;
 
    font-family: Nunito;
    font-size: 40px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    margin-bottom: 8px;
}

.clp_supported-subheading {
    color:black;
    text-align: center;
 
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 80px;
}

.clp_supported-grid {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    column-gap: 150px;
    row-gap: 32px;
    justify-content: center;
}

.clp_supported-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none
}

.clp_supported-icon {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    display: block
}

.clp_supported-name {
    color:black;
 
    font-family: Nunito;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal
}

@media (max-width:767px) {
  .clp_supported{
    .clp_section-container{
      max-width: 305px;
        margin-left: auto;
        margin-right: auto;
    }
  }
    .clp_supported-heading {
        color: #000;
        text-align: center;
     
        font-family: Nunito;
        font-size:  24px;
        font-style: normal;
        font-weight: 700;
        line-height:  32px;
        margin-bottom: 9px;
    }

    .clp_supported-subheading {
        color:black;
        text-align: center;
     
        font-family: Nunito;
        font-size:  16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .clp_supported-grid {
        grid-template-columns: repeat(2, max-content);
        column-gap: 24px;
        row-gap: 32px;
        justify-content:space-between;
    }

    .clp_supported-icon {
        width: 40px;
        height: 40px;
        aspect-ratio: 1/1;
        flex-shrink: 0
    }

    .clp_supported-name {
        font-size: 18px;
        font-weight: 700;
        line-height: normal
    }
}


/* what is crypto */

.clp_what-inner {
    display: flex;
    align-items: center
}

.clp_what-media {
    flex: 1;
    min-width: 0
}

.clp_what-media img {
    /* width: 100%;
    height: auto; */
    display: block
}

.clp_what-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    /* align-items: flex-end;
    text-align: right */
}

.clp_what-title {
    color:black;
    /* text-align: right; */
    font-family: Nunito;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: 57.6px;
    margin-bottom: 32px;
}

.clp_what-badge {
    border-radius: 16px;
    background:  #F7F7F7;
    padding: 24px 32px 24px 48px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 32px;
    max-width: 640px
}

.clp_what-badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* text-align: right */
}

.clp_what-badge-row {
    color: #000;
    /* text-align: right; */
    
    font-family: Nunito;
    font-size:  24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.clp_what-badge-row strong {
    color: #000;
    
    font-family: Nunito;
    font-size:  24px;
    font-style: normal;
    font-weight: 700;
    line-height:  32px;
}

.clp_what-badge-icon {
    width: 62px;
    height: 62px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
    display: block
}


.clp_what-text {
    color:black;
    /* text-align: right; */
    
    font-family: Nunito;
    font-size:  24px;
    font-style: normal;
    font-weight: 500;
    line-height:  32px;
}

.clp_what-text strong {
    color:black;
    
    font-family: Nunito;
    font-size:  24px;
    font-style: normal;
    font-weight: 700;
    line-height:  32px;
}


@media (max-width:767px) {
    .clp_what-inner {
        flex-direction: column;
        align-items: stretch
    }

    .clp_what-content {
        order: 1;
        align-items: flex-start;
        text-align: left
    }

    .clp_what-media {
        order: 2
    }

    .clp_what-title {
        color:black;
        
        font-family: Nunito;
        font-size:  32px;
        font-style: normal;
        font-weight: 700;
        line-height:  40px;
        margin-bottom: 32px;
    }

    .clp_what-badge {
        border-radius: 16px;
        background:  #F7F7F7;
        padding: 16px 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 32px;
        margin-bottom: 40px;
    }

    .clp_what-badge-text {
        text-align: left
    }

    .clp_what-badge-row {
        color: #000;
        text-align: left;
        font-family: Nunito;
        font-size:  16px;
        font-style: normal;
        font-weight: 500;
        line-height:  24px;
    }

    .clp_what-badge-row strong {
        color: #000;
        
        font-family: Nunito;
        font-size:  16px;
        font-style: normal;
        font-weight: 700;
        line-height:  24px;
    }

    .clp_what-badge-icon {
        width: 62px;
        height: 62px;
        aspect-ratio: 1/1;
        flex-shrink: 0
    }

    .clp_what-media img {
        margin-bottom: 40px;
        width: 100%;
    }

    .clp_what-text {
        color:black;
        font-family: Nunito;
        font-size:  14px;
        font-style: normal;
        font-weight: 500;
        line-height:  18px;
        text-align: left;
        strong{
          font-size:  14px;   line-height:  18px;
        }
    }
}



/* TABS */
 .clp_tabs-heading {
        color:  #000;
        text-align: center;
      
        font-family: Nunito;
        font-size:  42px;
        font-style: normal;
        font-weight: 700;
        line-height:  48px;
        margin-bottom: 72px
    }

    .clp_tabs-nav {
        display: flex;
        gap: 32px;
        max-width: 100%;
        overflow-x: auto;

        margin: 0 auto;
        padding-bottom: 8px;
        scrollbar-width: auto;
        justify-content: center
    }

    .clp_tab {
        background: transparent;
        border: 0;
        outline: 0;
        padding: 8px 0;
        border-bottom: 4px solid transparent;
        white-space: nowrap;
        cursor: pointer;
        color:  #A3A3A3;
      
        font-family: Nunito;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height:  24px
    }

    .clp_tab.is-active,
    [aria-selected="true"] {
        color:  #222;
        font-weight: 700;
        border-bottom-color:  #222
    }

    .clp_tabs-content {
        margin-top: 112px
    }
.clp_tabs-content{
  .clp_split-content{
    max-width: 475px;
  }
  .clp_split-inner{
gap: unset;
  }
}
    .clp_tab-panel {
        width: 100%
    }

    @media (max-width:767px) {
        .clp_tabs-heading {
            color: #000;
            text-align: center;
          
            font-family: Nunito;
            font-size:  24px;
            font-style: normal;
            font-weight: 700;
            line-height:  32px;
            margin-bottom: 24px
        }

        .clp_tab {
            font-size:  16px;
            line-height: 24px
        }

        .clp_tab.is-active,
        [aria-selected="true"] {
            color: #222;
            font-weight: 700
        }

        .clp_tabs-nav {
            justify-content: center
        }
    }




    .sticky-tabs {
        position: sticky;
        top: 96px;
        z-index: 40;
        display: none;
        margin: 24px auto 16px;
        padding: 0 24px;
        max-width: 1200px;
    }

    @media (min-width: 769px) {
        .sticky-tabs {
            display: flex;
            justify-content: center;
        }
    }

    .tabs-track {
        list-style: none;
        margin: 0;
        padding: 8px;
        display: inline-flex;
        gap: 16px;
        align-items: center;
        border-radius: 64px;
        background: #F7F7F7;
    }

    .tabs-track>li {
        margin: 0;
        padding: 0;
    }

    .tab-link {
        border: 0;
        background: transparent;
        color: #888;
        border-radius: 64px;
        cursor: pointer;

        font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 18px;

        padding: 8px 12px;
        transition: background .2s ease, color .2s ease, padding .15s ease, transform .15s ease;
    }

    .tab-link:hover {
        transform: translateY(-1px);
    }

    .tab-link.is-active {
        background: #22E243;
        color: #000;
        padding: 16px 24px;
    }

    /* .anchor-section {
        min-height: 80vh;
        padding: 48px 24px;
        scroll-margin-top: calc(var(--offset-top) + 24px);
    } */



@media (min-width:768px){
  .breadcrumbs_wrap{
padding-top: 20px !important;
}
}