.services {
  margin-bottom: 150px;
}

.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 100px;
}

.services-title {
  max-width: 450px;
}

.services_card {
  padding: 48px;
  min-height: 490px;
  max-height: 525px;
  max-width: 380px;
  min-width: 350px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  box-shadow: 5px 20px 50px rgba(234, 145, 39, 0.5);
  border-radius: 10px;
  color: #0F001A;
}

.services_card-receive {
  background: url(../images/receive-card.png) no-repeat top center;
  transform: translateY(calc(-50% - 50px));
  justify-self: end;
}

.services_card-send {
  background: url(../images/send-card.png) no-repeat top center;
}

.services_card-buy {
  background: url(../images/buy-card.png) no-repeat top center;
}

.services_card-title {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 30px;
}

.services_card-more {
  margin-top: 52px;
  padding: 0;
  width: 127px;
  border: 0;
  background: url(../images/arrow.svg) no-repeat 95%;
  transition: background-position 0.1s ease-in;
  text-align: left;
  color: #CC5520;
}
.services_card-more:hover {
  background-position: 100%;
}/*# sourceMappingURL=services.css.map */