.contactWrap .content {
  width: 70%;
  margin: 0 auto;
  padding: 20px 0;
}
.contactWrap .content .locationList {
  display: grid;
  grid-template-columns: repeat(auto-fill, 412px);
  gap: 25px;
  justify-content: center;
}
.contactWrap .content .locationList .card {
  line-height: 30px;
  box-shadow: 4px 4px 10px 3px #efefef;
  border-radius: 10px;
  padding: 20px 10px 10px;
  transition: 1s ease;
  background: #fff;
}
.contactWrap .content .locationList .card .title {
  font-size: 20px;
  font-weight: bold;
}
.contactWrap .content .locationList .card:hover {
  transform: scale3d(1.05, 1.05, 1.05);
}
