:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

.a-indep-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 360px);
  grid-gap: 48px;
  margin-top: 60px;
  justify-content: center;
}
.a-indep-list-item {
  padding: 40px;
  background-color: #EEF8FD;
  box-shadow: 0 20px 50px -10px rgba(7, 50, 56, 0.1);
  border: 1px solid #EEF8FD;
}
.a-indep-list-item:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 20px -10px rgba(54, 57, 67, 0.2);
  border: 1px solid #019ab8;
}
.a-indep-list-item__svg {
  margin-bottom: 16px;
}
.a-indep-list-item__title {
  color: #01a9c1;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 32px;
}
.a-indep-list-item__text {
  color: black;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.75rem;
}