body {
  background: white;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

a > img {
  width: 8%;
  padding-left: 10px;
}

#clients div {
  display: flex;
  margin: 0 auto;
  padding-left: 100px;
}

.column {
  flex: auto;
  padding: 0 5px;
  width: 30%;
  height: fit-content;
  align-self: center;
}

.grid > article > img {
  padding-top: 20px;
  align-self: center;
  width: 100%;
  height: auto;
}

.slide > img {
  width: 20%;
  height: 10%;
  flex-direction: row;
}

.grid {
  margin: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  align-items: center;
}

.grid > article {
  background: white;
  border: none;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  text-align: center;
  width: 250px;
  transition: transform 0.3s;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 20px 20px 20px 20px;
}

.grid > article:hover {
  transform: translate(5px);
  box-shadow: 2px 2px 26px 0px rgba(0, 0, 0, 0.3);
}

.text {
  padding: 0 20px 20px;
}

.text h3 {
  text-transform: uppercase;
}

.text button {
  background: dodgerblue;
  border-radius: 20px;
  border: none;
  color: white;
  padding: 10px;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
  cursor: auto;
}
