.services_content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin: 10px;
  align-items: stretch;
}

.services_content div {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  gap: 15px;
  background-color: blue;
}

.services_content h3 {
  display: flex;
  justify-content: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.678);
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
}

.services_content img {
  border-radius: 10px;
  width: 90%;
  height: 320px;
}

.services_content i {
  color: #000;
}

.services_content a {
  width: 100%;
  display: flex;
  background-color: lightblue;
  color: #000;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  padding: 5px;
  gap: 2px;
}
