.content .card-item {
  display: grid;
  grid-template-columns: repeat(3, 30%);
  justify-content: space-evenly;
  transition: all 0.3s ease;
  gap: 36px;
}
@media screen and (max-width: 980px) {
  .content .card-item {
    grid-template-columns: repeat(2, 45%);
  }
}
@media screen and (max-width: 640px) {
  .content .card-item {
    grid-template-columns: repeat(1, 90%);
  }
}
.content .card-item .item {
  width: 100%;
  height: 210px;
  padding: 42px;
  background-color: white;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.content .card-item .item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(17, 74, 247, 0.1);
  border: 2px solid rgba(25, 140, 255, 0.9);
}
.content .card-item .item h2 {
  font-size: 21px;
}
.content .card-item .item p {
  color: #aaa;
  padding: 6px 0;
}
.content .card-item .bg {
  background-repeat: no-repeat;
  background-size: 391px;
  background-position: right bottom;
}
.content .card-item a:nth-child(1) .bg {
  background-image: url(../../../static/img/hepl/p-2.png);
}
.content .card-item a:nth-child(2) .bg {
  background-image: url(../../../static/img/hepl/p-1.png);
}
.content .card-item a:nth-child(3) .bg {
  background-image: url(../../../static/img/hepl/p-5.png);
}
.content .card-item a:nth-child(4) .bg {
  background-image: url(../../../static/img/hepl/p-3.png);
}
.content .card-item a:nth-child(5) .bg {
  background-image: url(../../../static/img/hepl/p-4.png);
}
.content .card-item a:nth-child(6) .bg {
  background-image: url(../../../static/img/hepl/p-6.png);
}

@media screen and (max-width: 420px) {
  .content .card-item {
    grid-template-columns: repeat(1, 90%);
  }
}/*# sourceMappingURL=home.css.map */