.avs-tile {
  color: white;
  background-repeat: no-repeat;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: bold;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 30px;
}

.avs-tile:hover {
  color: white;
  text-decoration: none;
}

.avs-tile::after {
  border-radius: 30px;
  z-index: 1;
  content: "";
  position: absolute;
  inset: 0;
  transition: all 0.2s ease;
  background: rgba(0, 0, 0, 0.5);
  /*background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.2) 100%);*/
  backdrop-filter: blur(0px);
}

.avs-tile:hover::after {
  background: rgba(0, 0, 0, 0.3);
  /*background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.4) 100%) !*backdrop-filter: blur(2px);*!;*/
  backdrop-filter: blur(1px);
}
.avs-tile__label {
  z-index: 2;
  position: relative;
}

.avs-tile__description {
  font-weight: normal;
  font-size: 16px;
  z-index: 2;
  color: #CCC;
}
