section#process {
  margin-top: 5rem;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
}

section#process > h2 {
  margin-bottom: 4rem;
}

section#process > div.container {
  display: flex;
  padding: 0 2rem 3rem 2em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

section#process > div.container article {
  display: flex;
  flex-direction: column;
  padding: 2.3rem;
  width: 280px;
  gap: 110px;
  height: 550px;
  position: relative;
  transition: var(--default-transition);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

section#process > div.container article:hover {
  transform: var(--default-transform);
}

section#process > div.container article:nth-child(1) {
  background-color: var(--secondary-color);
  color: #fff;
}

section#process > div.container article:nth-child(2) {
  background-color: #3874a5;
  color: #fff;
}

section#process > div.container article:nth-child(3) {
  background-color: #8ebee5;
  color: #000;
}

section#process > div.container article:nth-child(4) {
  background-color: var(--primary-color);
  color: #000;
}

section#process > div.container article header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

section#process > div.container article header img {
  margin-bottom: 1rem;
  width: 64px;
  height: 64px;
  object-fit: scale-down;
}

section#process > div.container article div img {
  min-width: 18px;
  object-fit: contain;
}

section#process > div.container article header span.name {
  margin-bottom: 10px;
  position: relative;
  font-weight: 700;
  width: 100%;
  text-align: center;
}

section#process > div.container article header span.name::after {
  content: "";
  border-bottom: 1px solid var(--secondary-color);
  width: 80%;
  display: block;
  margin-top: 10px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
}

section#process > div.container article header span.desc {
  margin-top: 10px;
  text-align: center;
  line-height: 1.3;
  height: 50px;
}

section#process > div.container article:nth-child(1) header span.name::after,
section#process > div.container article:nth-child(2) header span.name::after {
  border-bottom: 1px solid #fff;
}

section#process > div.container article > div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

section#process > div.container article > div figure {
  display: flex;
  gap: 15px;
}

@media (max-width: 599px) {
  section#process > div.container article {
    height: unset;
    justify-content: space-around;
  }

  section#process > div.container article header span.desc {
    height: unset;
    margin-top: 10px;
    line-height: 1.2;
  }

  section#process > div.container article:nth-of-type(1):before {
    content: "";
  }

  section#process > div.container article::before {
    content: "|";
    color: #000;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
