.container_cv {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  grid-column: 1 / span 2;
}

.container_cv.visible {
  max-height: 1000px;
}