.vans {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.vans-title {
  font-size: 27px;
  margin-bottom: 20px;
}
.vans-item {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  width: 100%;
  max-width: 263px;
  text-align: center;
  padding: 20px 10px;
  transition: 0.4s;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: normal;
}
@media (max-width: 991px) {
  .vans-item {
    width: 48%;
    margin-bottom: 20px;
    padding: 16px 10px;
  }
}
.vans-item h3 {
  display: block;
  font-size: 21px;
  font-weight: bold;
}
.vans-item .text p {
  font-size: 14px;
}
.vans-item:hover {
  background: #0068ff;
  color: #ffffff;
}
.vans-item:hover .vans-item-icon {
  background-color: #fff;
}
.vans-item-icon {
  width: 103px;
  height: 103px;
  background-size: cover;
  background-color: #000;
}
