

#process-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-transform: capitalize;
  padding-bottom: 1.2em;
}

.line {
  height: 2px;
  width: 15em;
  background-color: var(--black);
  margin-top: 2.2em;
  margin-left: 1em;
  margin-right: 1em;
}

#process-steps {
  width: 100%;
  padding: 0 0 2em 0;
}

#processes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}

.process {
  padding: 1em;
}



.process img {
  width: 4em;
  height: 4em;
  object-fit: contain;
  padding: 0.5em;
  background-color: var(--main);
  border: 1px solid black;
  border-radius: 20%;
  transition: 0.5s;
}

.process-description {
  height: 8em;
  position: relative;
  top: -3em;
  z-index: -1;
  padding: 2em;
  background-color: var(--white);
  max-width: 20em;
  border: 1px solid black;
  border-radius: 0.5em;
}


@media only screen and (max-width: 1000px) {
  
  #process-steps {
    font-size: 0.9rem;
    padding: 0;
  }


  .line {
    width: 3em;
  }

  .process p {
    font-size: 1.2em;
  }
}