.plans-rows .rows {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}
.plans-rows .rows .row .col .image {
  cursor: pointer;
  position: relative;
}
.plans-rows .rows .row .col .image img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.plans-rows .rows .row .col .image:hover:before, .plans-rows .rows .row .col .image:hover:after {
  opacity: 1;
}
.plans-rows .rows .row .col .image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: rgba(53, 54, 78, 0.5);
  opacity: 0;
  transition: 0.3s;
  z-index: 1;
}
.plans-rows .rows .row .col .image:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: url(../../images/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}