.hoverdiv {

    text-align: center;
    line-height: 200px;
    transition: background-color 0.3s; /* Ajoute une transition pour un changement en douceur */
}
.hoverdiv:hover {
    background-color: rgb(209, 209, 209); /* Nouvelle couleur lorsque le survol se produit */
}
.card1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  max-width: 340px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(192, 192, 192, 0.2);
  transition: 1s all;
  overflow: hidden;
}
.card1::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -30%;
  width: 120px;
  height: 120px;
  background: #6ae898;
  filter: blur(70px);
  border-radius: 50%;
  transition: width 1s, height 1s;
}
.card1::before {
  content: "";
  position: absolute;
  bottom: -160%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: #049a70;
  filter: blur(70px);
  border-radius: 50%;
  transition: width 1s, height 1s;
}
.card1:hover::before {
  bottom: -230%;
  width: 1000px;
  height: 1000px;
  filter: blur(1px);
}
.containers1 {
  position: relative;
}
.icon1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #e5f6eb;
}
.card1:hover .icon1 {
  background: #04b946;
  transition: 1s all;
}
.card1:hover .icon1 svg,
.card1:hover .linkMore1 svg {
  filter: brightness(0) invert(1);
  transition: 1s all;
}
.title1 {
  color: #171d29;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  transition: 1s all;
  margin: 1rem 0;
}
.subtitle1 {
  color: #5c5e5d;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  transition: 1s all;
}
.linkMore1 {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.8rem;
  color: #072713;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
  transition: 1s all;
  margin-top: 1rem;
}
.card1:hover .title1,
.card1:hover .subtitle1,
.card1:hover .linkMore1 {
  color: #fff;
  transition: 1s all;
}
