.card-access-simple {
  position: relative;
}

.card-access-simple a {
  display: block;
}

.card-access-simple img {
  object-fit: cover;
}

.card-access-simple a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 42, 194, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-access-simple a:hover .btn-action::before {
  opacity: 1;
}

.card-access-simple a:hover .btn-action {
  background-color: #768ee7;
  color: white;
}

.card-access-simple .btn-action {
  position: absolute;
  z-index: 1;
  right: calc(1.325rem + 0.9vw);
  bottom: calc(1.325rem + 0.9vw);
  top: auto;
  left: auto;
}
@media (min-width: 1200px) {
  .card-access-simple .btn-action {
    right: 2rem;
  }
}
@media (min-width: 1200px) {
  .card-access-simple .btn-action {
    bottom: 2rem;
  }
}

.card-access-simple a:hover .btn-action::before {
  transform: rotate(-45deg);
}

.card-access-simple a:hover::after {
  opacity: 1;
}
