figure.plus_svg {
  position: relative;
}
figure.plus_svg::after {
  content: '';
  background: url('../Images/plus.svg') no-repeat center center;
  width: 150px;
  height: 140px;
  position: absolute;
  bottom: -42px;
  right: -32px;
  pointer-events: none;
  cursor: pointer;
}
figure.plus_svg:hover:after {
        content: '';
        background: url('../Images/plus_hover.svg') no-repeat center center;
}
figure.plus_svg:hover::after {
  animation: pulse 2s ease-in-out infinite;
}
