
.exp-svg-wrap { display: flex; justify-content: center; }
.exp-svg-wrap svg { max-width: 510px; width: 100%; height: auto; }
.exp-card1 {
  animation: expCard1In 0.6s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0s;
}
.exp-card2 {
  animation: expCard2In 0.6s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.25s;
}
@keyframes expCard1In {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes expCard2In {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}