/* [project]/app/resume/resume.css [app-client] (css) */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.resume-section {
  animation: .5s ease-out both fadeIn;
}

.resume-section:first-child {
  animation-delay: .1s;
}

.resume-section:nth-child(2) {
  animation-delay: .2s;
}

.resume-section:nth-child(3) {
  animation-delay: .3s;
}

.resume-section:nth-child(4) {
  animation-delay: .4s;
}

.resume-section:nth-child(5) {
  animation-delay: .5s;
}

.experience-item {
  position: relative;
}

.experience-item:before {
  content: "";
  background-color: #e5e7eb;
  width: 2px;
  height: calc(100% - 15px);
  position: absolute;
  top: 15px;
  left: -35px;
}

.dark .experience-item:before {
  background-color: #374151;
}

.experience-item:last-child:before {
  display: none;
}

@media print {
  .no-print {
    display: none;
  }
}

/*# sourceMappingURL=app_resume_resume_fe50a409.css.map*/