a.plus_svg,
figure.plus_svg {
  position: relative;
}
a.plus_svg::after,
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;
}
a.plus_svg::after {
  pointer-events: auto;
}
a.plus_svg:hover:after,
figure.plus_svg:hover:after {
        content: '';
        background: url('../Images/plus_hover.svg') no-repeat center center;
}
a.plus_svg:hover::after,
figure.plus_svg:hover::after {
  animation: pulse 2s ease-in-out infinite;
}

a.plus_svg .plus-svg-icon,
figure.plus_svg .plus-svg-icon {
  background: url('../Images/plus.svg') no-repeat center center;
  width: 150px;
  height: 140px;
  position: absolute;
  bottom: -42px;
  right: -32px;
  pointer-events: none;
  display: block;
  z-index: 5;
}

a.plus_svg:hover .plus-svg-icon,
figure.plus_svg:hover .plus-svg-icon {
  background-image: url('../Images/plus_hover.svg');
  animation: pulse 2s ease-in-out infinite;
}
