.timeline h4 {
  color: #fff !important;
  font-size: 14px;
  margin: 0 0 10px 0;
}
.timeline h3 {
  color: #d81e05 !important;
  font-size: 24px;
  margin: 0 0 5px 0;
  text-shadow: #000 0px 1px 0px;
  font-weight: 700 !important;
}
.timeline p {
  color: #fff !important;
  font-size: 20px;
  margin: 0 0 20px 0;
}
.timeline {
  display: flex;
  overflow-x: hidden;
  margin: 30px 0px;
}
.timeline:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 185px;
  height: 2px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.timeline-container {
  display: flex;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.timeline-card {
  flex: 0 0 auto;
  position: relative;
  padding: 20px;
  width: 400px;
  height: 150px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #dedede;
}
.timeline-card:not(:first-child) {
  margin-left: -195px;
}
.timeline-card:nth-of-type(even) {
  margin-top: 225px;
}
.timeline-card-svg path {
  fill: rgba(255, 255, 255, 0.6);
}
.timeline-card-svg:nth-of-type(odd), .timeline-card-svg:nth-of-type(even) {
  position: absolute;
  width: 13px;
  height: 49px;
  left: 50%;
  bottom: -52px;
  transform: translate(-50%);
}
.timeline-card:nth-of-type(even) .timeline-card-svg {
  top: -12px;
  margin-top: -42px;
  transform: scaleY(-1) translate(-50%);
}
.timeline-nav {
  position: static;
  margin-top: 175px;
  z-index: 10;
  width: 100%;
}
.timeline-nav-button {
  position: absolute;
  width: 48px;
  height: 48px;
  cursor: pointer;
  opacity: 0.75;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  background: #fff;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.timeline-nav-button:hover {
  width: 60px;
  height: 60px;
}
.timeline-nav-button:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 10px;
  background: #d81e05;
}
.timeline-nav-button:before {
  content: "";
  position: absolute;
  margin-left: -1px;
  height: 8px;
  width: 8px;
  border-style: solid;
  border-color: #d81e05;
  border-width: 0px 2px 2px 0px;
  transform: rotate(135deg);
}
