html {
  font-size: 16px;
  /* 1rem = 16px */
}

html {
  font-size: 16px;
  /* 1rem = 16px */
}

.devPrestationsCards {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 22rem;
  width: 22rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 4px 4px 19px -4px rgba(10, 11, 10, 0.2) !important;
  position: relative;
}
.devPrestationsCards__top {
  border-bottom: solid 2px #091226;
  width: 100%;
  text-align: center;
  align-items: center;
  height: 4rem;
  z-index: 3;
  background-color: #ffffff;
}
.devPrestationsCards__top h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.devPrestationsCards__middle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 22rem;
  height: 22rem;
  background-color: #f7f7ff;
  text-align: center;
  position: relative;
}
.devPrestationsCards__middle img {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: #f7f7ff;
  transition: opacity 2s ease-out;
}
.devPrestationsCards__middle p {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
}
.devPrestationsCards__middle img:hover {
  opacity: 0;
  transition-duration: 1s;
}
.devPrestationsCards__bottom {
  display: flex;
  border-top: solid 2px #091226;
  width: 100%;
  height: 4rem;
  z-index: 3;
  background-color: #ffffff;
}
.devPrestationsCards__bottom a {
  display: flex;
  height: 2rem;
  width: 8rem;
  background-color: #f7f7ff;
  border-radius: 0.5rem;
  border: solid 1px #707070;
  text-decoration: none;
  transition: all 2s ease-out;
  margin-right: auto;
  margin-left: auto;
  z-index: 4;
  position: relative;
  bottom: 1rem;
  /* From https://css.glass */
  background: rgba(112, 112, 112, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10.8px);
  -webkit-backdrop-filter: blur(10.8px);
}
.devPrestationsCards__bottom a p {
  margin: auto;
  font-size: 1rem;
  transition: all 2s ease-out;
}
.devPrestationsCards__bottom a:hover {
  transition-duration: 1s;
  background-color: #ffffff;
  border: solid 1px #0A0B0A;
}
.devPrestationsCards__bottom a:hover p {
  color: #81A1B8;
  transition-duration: 1s;
}
.devPrestationsCards__bottom a:hover p {
  color: #8B0000;
}/*# sourceMappingURL=devPrestationsCards.css.map */