@keyframes slideIn {
  0% {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 1
  }

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

@keyframes textJump {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.work-experience-item {
  cursor: pointer;
  margin-bottom: 12px;
}

.work-experience-item img {
  height: 100px;
  transition: height 0.75s cubic-bezier(.7, 0, .3, 1);
}

.details ul li {
  font-size: 14px;
}

.animate span {
  animation-name: var(--animation);
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
  animation-delay: var(--delay);
  display: inline-block;
}

.details {
  display: none;
}

.section {
  display: flex;
}

.img {
  width: 150px;
  height: 100px;
  background: #eee;
  padding: 16px 12px;
  border-radius: 8px;
}

.content {
  margin-left: 40px;
  width: calc(100% - 190px);
}

.title {
  font-size: 20px;
  margin: 0;
  color: #6292e4 !important;
}

.date {
  margin: 0;
  font-size: 16px;
  color: green;
}

@media screen and (max-width: 750px) {
  .img {
    width: 50px;
    height: 50px;
    background: #eee;
    padding: 16px 12px;
    border-radius: 8px;
  }

  .content {
    margin-left: 10px;
    width: calc(100% - 60px);
  }

  .title {
    font-size: 16px;
    margin: 0;
    color: #6292e4 !important;
  }

  .date {
    margin: 0;
    font-size: 14px;
    color: green;
  }

  .details ul li {
    font-size: 12px;
  }

}