.categorys {
  width: 90%;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
.profile-card-2 {
  /* max-width: 300px; */
  /* background-color: #fff; */
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  background-position: center;
  overflow: hidden;
  position: relative;
  margin: 10px auto;
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid var(--bs-white);
  overflow: hidden;
}

.profile-card-2 img {
  transition: all linear 0.25s;
  width: 100%;
}

.profile-card-2 .profile-name {
  position: absolute;
  left: 30px;
  bottom: 70px;
  font-size: 30px;
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  transition: all linear 0.25s;
}

.profile-card-2:hover .profile-name {
  bottom: 80px;
}