@charset "UTF-8";
.process {
  padding: 10rem 0;
  color: white;
  background-color: var(--primary_color);
  text-align: center;
  position: relative;
}
.process .background-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
  mix-blend-mode: multiply;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.process .title-thc {
  color: #ffffff;
  text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.15);
  max-width: 550px;
  margin: 1rem auto 2rem;
}
.process .list .img-wrap {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: auto;
  padding: 1rem;
}
.process .list .img-wrap img {
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.process .list .title {
  font-size: 1.1rem;
  color: #ffffff;
  font-family: "Lora", Sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 1rem;
  padding: 0 2rem;
}
.process .list .inner:not(:last-child) .item {
  position: relative;
}
.process .list .inner:not(:last-child) .item:before {
  content: "";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  font-size: 1.2rem;
}
.process .primary-button {
  margin-top: 4rem;
}
.process .primary-button a {
  color: white;
}
.process .primary-button:hover a {
  border-color: white;
}
@media only screen and (max-width: 769px) {
  .process .list .inner:not(:last-child) .item:before {
    content: unset;
  }
  .process {
    padding: 2rem 0;
  }
  .process .list .title {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
