.service-item {
  background-color: var(--light);
  align-items: center;
  justify-content: center;
  color: var(--blue);
  position: relative;
}

.service-item::before {
  /* bottom border */
  content: "";
  position: absolute;
  bottom: 0;
  width: 70%;
  height: 1px;
  background-color: var(--blue);
}

.service-item:nth-of-type(4)::before {
  /* bottom border */
  content: "";
  display: none;
}

.service-item.even {
  flex-direction: row-reverse;
}

.service-item .graphic {
  width: 45%;
}

.service-item .info {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.service-item .graphic .img {
  width: 90%;
  height: auto;
}

.service-item h2 {
  color: red;
}

.service-item .info .point {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.service-item .info .point-head {
  display: flex;
  align-items: center;
}

.service-item .info .point-head .icon {
  height: 1.2cap;
}

/* WHY WE STAND OUT */

.stand-out {
  height: 25em;
  background-color: var(--blue);
  padding: 2em;
}
