.full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
  padding: 0px 100px 0 100px;
}
.contact {
  text-align: center;
  padding: 20px 5px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: #274b8409;
  transition: transform 0.5s;
}
.contact i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #1b67a3;
}
.contact h2 {
  font-weight: 400;
  margin-bottom: 8px;
  color: rgb(96, 84, 84);
}
.contact:hover {
  background: #1b67a3;
  color: #fff;
  transform: scale(1.05);
}
.contact:hover i {
  color: #fff;
}
.contact:hover h2 {
  color: #fff;
}
