.timeline-process .timeline {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-evenly;
}

.timeline-process .timeline .process-item {
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  flex-basis: 100%;
  margin-bottom: 1em;
}

.timeline-process .timeline .title {
  display: flex;
  align-items: flex-end;
}

.timeline-process .timeline .process-item .square {
  display: none;
}

.timeline-process .timeline .arrows {
  display: flex;
  color: var(--phddeib-primary);
  flex-basis: 25%;
  justify-content: space-evenly;
  font-weight: bold;
  align-items: end;
  margin: 0 0px 1em;
}

.timeline-process .timeline .arrows span {
  transform: rotate(90deg);
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	
	

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.timeline-process .timeline {
	  flex-wrap: nowrap;
	  border-bottom: none;
	}
	
	.timeline-process .timeline .process-item {
	  flex-basis: 50%;
    flex-direction: column;
    text-align: center;
    margin-bottom: 3em;
	}
  
  .timeline-process .timeline .arrows span {
    transform: rotate(0deg);
  }
	
  .timeline-process .timeline .arrows {
    display: flex;
    color: var(--phddeib-primary);
    flex-basis: 50%;
    justify-content: space-evenly;
    font-weight: bold;
    align-items: end;
    margin: 0 -50px 3em;
  }
  
  .timeline-process .timeline .title {
    height: 90px;
    margin-bottom: 20px;
    margin-left: 0px;
  }
  
  .timeline-process .timeline .process-item .square {
    display: block;
    width: 24px;
    height: 24px;
    background: var(--phddeib-primary);
    border-radius: 0;
    padding: 0;
    margin-bottom: 0px;
  }

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
	
}