.allcards {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  /* justify-content: center; */
  gap: 30px;
}
.allcards div:not(.img_box) {
  width: calc(25% - 30px);
  position: relative;
  /* border-radius: 24px; */
  background-color: var(--bookkeeping);
  overflow: hidden;
  text-align: center;
  padding: 60px 20px 30px 20px;
  box-shadow: 5px 5px 10px #bebebe, -20px -20px 60px #ffffff;
  transition: 0.3s;
}
.allcards div:hover {
  box-shadow: none;
}
.allcards div img {
  height: 80px;
}
.allcards div .title {
  font-weight: 500;
  color: var(--primary_color);
  padding-top: 30px;
  font-size: 18px;
}
.img_box {
  background-color: #fff;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img_box img {
  padding: 12px;
}
@media (max-width: 991px) {
  .allcards div:not(.img_box) {
    width: calc(50% - 30px);
  }
  .allcards {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .allcards div:not(.img_box) {
    width: 100%;
  }
  .allcards {
    justify-content: center;
  }
}
