/*============= FUNCTIONS ===============*/
/*============= MIXINS ===============*/
.payment-block {
  margin-bottom: 30px;
}
.payment-block:last-child {
  margin-bottom: 40px;
}
.payment-holder {
  padding: 60px 110px;
  background: var(--card);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 55px;
}
.payment-title {
  width: 30%;
}
.payment-desc {
  width: 70%;
}
.payment-desc h2,
.payment-desc h3,
.payment-desc h4,
.payment-desc h5,
.payment-desc h6 {
  margin-bottom: 20px;
  margin-top: 30px;
}
.payment-desc h2:first-child,
.payment-desc h3:first-child,
.payment-desc h4:first-child,
.payment-desc h5:first-child,
.payment-desc h6:first-child {
  margin-top: 0;
}
.payment-desc ol {
  margin-bottom: 15px;
}
.payment-desc ul {
  margin-bottom: 15px;
}
.payment-desc ul li::marker {
  color: var(--primary);
}
.payment-icon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-icon img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media (max-width: 992px) {
  .payment-block {
    margin-bottom: 20px;
  }
  .payment-block:last-child {
    margin-bottom: 20px;
  }
  .payment-holder {
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
  }
  .payment-title {
    margin-bottom: 0;
    width: -moz-fit-content;
    width: fit-content;
  }
  .payment-icon {
    position: unset;
    bottom: unset;
    left: unset;
    width: 50px;
    height: 50px;
    padding: 10px;
  }
  .payment-icon img {
    width: 100%;
    height: 100%;
  }
  .payment-desc {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .payment-holder {
    padding: 30px 15px;
  }
}/*# sourceMappingURL=block.css.map */