/* section-eighteen-start */
section.section-eighteen {
  padding-bottom: 60px;
}

.card-1 {
  padding: 40px 25px;
  margin-bottom: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.card-1:hover {
  /* box-shadow: 3px 8px 22px #2196f366;
  border-radius: 18px; */
  transform: scale(1);
}

.card1-img {
  margin-bottom: 20px;
}

.card1-img img {
  padding: 8px;
  border-radius: 7px;
  border: 2px dashed #0263ff;
}

.card-1:hover .card1-img img {
  border-radius: 7px;
  background: #c9deff;
  border: 2px solid #c9deff;
}

.card-1:hover h3 {
  color: #0263ff;
}

.card-1 h3 {
  font-size: 22px;
  font-weight: 700;
  min-height: 40px;
  color: #ffff;
}

.card-1 p {
  color: #000;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

div#cardContainer1 {
  justify-content: center;
  row-gap: 20px;
}

@media screen and (max-width: 991.98px) {
  section.section-two .row {
    justify-content: center;
  }

  section.section-two .col-sm-12:last-of-type .card-1 {
    margin-bottom: 0;
  }
}

@media (max-width: 768.98px) {
  .card-1 p {
    font-size: 16px;
  }
}

/* section-eighteen-end */



/*  section 8 start */
.step-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 1000px;
}

.step-number {
  font-size: 64px;
  font-weight: bold;
  color: #fff;
  min-width: 80px;
  font-family: "Urbanist";
}

.step-box {
  max-width: 700px;
  line-height: 1.6;
}

.step-box h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-box p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.gradient-border.odd .step-box::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: 50px;
  width: 35px;
  height: 35px;
  border-right: 3px solid #0f62f9;
  border-bottom: 3px solid #0f62f9;
  background-color: black;
  transform: rotate(45deg);
  background: #000;
}

.gradient-border.even .step-box::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50px;
  width: 35px;
  height: 35px;
  border-right: 3px solid #0f62f9;
  border-bottom: 3px solid #0f62f9;
  background-color: black;
  transform: rotate(45deg);
  background: #000;
}

.gradient-border {
  padding: 3px;
  /* thickness of the border */
  border-radius: 20px;
  display: inline-block;
  position: relative;
  margin-bottom: 50px;
}

.gradient-border.odd {
  background: linear-gradient(333deg, #0f62f9, transparent 70%);
}

.gradient-border.even {
  background: linear-gradient(90deg, #0f62f9, transparent 70%);
}

.inner-content {
  background-color: black;
  border-radius: 17px;
  padding: 20px 30px;
}

section.section-eight {
  padding-top: 70px;
  padding-bottom: 60px;
  margin-top: -1px;
}

.process-sec {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 70px;
}

.gradient-border.odd.last .step-box::after {
  display: none;
}

section.bg-black h2,
section.bg-black p,
section.bg-black .heading-sub {
  color: #fff;
}

section.section-eight p.para {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  section.section-eight {
    padding: 40px 0;
  }

  .step-container {
    flex-direction: column;
  }

  .gradient-border.even .step-container {
    flex-direction: column-reverse;
  }

  .gradient-border.even .step-container .step-number {
    text-align: right;
    width: 100%;
  }
}

section.bg-black {
  background: #000;
  margin-bottom: -1px;
}

/*  section 8 end */

/* section 2 start */
section.section-two {
  padding-bottom: 60px;
}

section.section-two h2 {
  max-width: 730px;
  margin: 0 auto;
}

/* card section start */

.card-1 {
  padding: 40px 25px;
  margin-bottom: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.card-1:hover {
  box-shadow: 3px 8px 22px rgb(0 0 0 / 40%);
  border-radius: 18px;
  transform: scale(1);
}

section.section-eighteen.bg-black .card-1:hover {
  /* box-shadow: 3px 8px 22px #c9deff26;
  border-radius: 18px; */
  transform: scale(1);
}

.card1-img {
  margin-bottom: 20px;
}

.card1-img img {
  padding: 8px;
  border-radius: 7px;
  border: 2px dashed #0263ff;
}

.card-1:hover .card1-img img {
  border-radius: 7px;
  background: #c9deff;
  border: 2px solid #c9deff;
}

.card-1:hover h3 {
  color: #0263ff !important;
}

.wht-lbl .card-1 h3 {
  font-size: 22px;
  font-weight: 700;
  min-height: 40px;
  color: #000;
}

.card-1 p {
  color: #000;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

div#cardContainer1 {
  justify-content: center;
  row-gap: 20px;
}

section.section-eighteen.bg-black .card-1 h3 {
  color: #fff;
}

@media screen and (max-width: 991.98px) {
  section.section-two .row {
    justify-content: center;
  }

  section.section-two .col-sm-12:last-of-type .card-1 {
    margin-bottom: 0;
  }
}

/* section 2 end */

/* white label cta img  */
.White-label-cta-img img {
  position: unset;

}


/* crypto cta start  */
.crypto-cta {
  background: #0263FF;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 80px 0px !important;
}

.crypto-cta::after {
  position: absolute;
  top: -20px;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  content: "";
  background: url("../img/White-label-exchange/white-label-cta.webp") !important;
  z-index: -1;
  background-size: 100% 100% !important;
}

.crypto-cta.whlb-cta-exchange::after {
  background: url("../img/White-label-exchange/wlb-cta-exchange.webp") !important;
  background-size: 100% 100% !important;
}

.crypto-cta.whlb-cta-payment {
  background: #0263FF !important;
}

.crypto-cta.whlb-cta-payment::after {
  background: url("../img/white-label-payment-gateway/white-label-payment-cta.webp") !important;
  background-size: 100% 100% !important;
}

.white-label-cta.crypto-cta {
  padding: 0px !important;
}

.white-label-cta.crypto-cta h2 {
  max-width: 1000px !important;
}

.white-label-cta.crypto-cta p {
  max-width: 900px !important;
}

.crypto-cta h2 {
  max-width: 700px !important;
}

.crypto-cta p {
  color: #fff;
  max-width: 600px !important;
}

.crypto-cta span.blu {
  color: #0263ff;
}

.crypto-cta a {
  width: fit-content !important;
}

@media (min-width: 991px) and (max-width: 1199.98px) {

  .white-label-cta.cta-crypto-exchange p,
  .white-label-cta.cta-crypto-exchange h2,
  .white-label-cta.cta-crypto-exchange a {
    text-align: left;
  }

  .white-label-cta .cta-crypto-exchange-button {
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .crypto-cta p {
    margin: 0 auto;
  }

  .crypto-cta::after {
    display: none;
  }

  .crypto-cta {
    text-align: center;
  }

  .crypto-cta-btn,
  .crypto-cta-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
}

/* crypto cta end */

.white-label-payment-admin .row {
  justify-content: center;
}

@media (min-width: 768px) and (max-width: 991.98px) {

  section.bannersection.white-label-crypto-payemnt-banner {
    height: 560px;
  }
}