.profile {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  opacity: 0.8;
}
.profile:hover .profil {
  background: radial-gradient(200rem circle at var(--xPos) var(--yPos), #a19273, transparent 15%);
}
.profile .profil {
  width: 80%;
  height: 500px;
  border-radius: 0.5rem;
  position: relative;
}
.profile .profil:hover {
  transform: scale(1);
}
.profile .profil:hover::before {
  opacity: 1;
}
.profile .profil::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: radial-gradient(100rem circle at var(--xPos) var(--yPos), rgba(145, 129, 96, 0.2), transparent 35%);
  opacity: 0;
  transition: all 0.15s ease-in-out;
  pointer-events: none;
}
.profile .profil .profilImg {
  width: auto;
  height: 100%;
  max-height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  transform: scale(1.05);
  justify-content: center;
  margin-top: 0.5px;
  margin-left: -0.5px;
}
.profile .profil .profilBack {
  background-color: #222222;
  border-radius: inherit;
  transition: all 0.25s;
  width: 100%;
  height: 100%;
  padding: 12px;
}
.profile .profil .profilText {
  position: relative;
}
.profile .profil .profilText p {
  font-size: 18px;
  line-height: 1.6;
  color: beige;
}/*# sourceMappingURL=style_profil.css.map */