#payment-block {
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 80px;
  margin-bottom: 80px;
  /* background-image: url("images/bg.png"); */
  background-color: var(--backgroundDark);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}


#payment-block .block__title {
  margin-bottom: 40px;
  text-align: center;
}

#payment-block .payments__holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  align-items: stretch;
}

#payment-block .payment__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  padding: 30px;
  background: var(--card);
  box-shadow: 0 15px 30px rgba(28, 45, 28, 0.1);
}

#payment-block .payment__item .item__icon {
  object-fit: contain;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

#payment-block .payment__item .item__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

#payment-block .payment__item .item__desc {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  color: var(--textLight);
}

@media (max-width: 769px) {
  #payment-block .payments__holder {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }

  #payment-block {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (max-width: 498px) {
  #payment-block {
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: none !important;
  }

  #payment-block .payments__holder {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=block.css.map */