/*==================================================
TARGET
==================================================*/

.target {
  padding: 120px 0;

  background: var(--primary-soft);
}

.target-road {
  max-width: 760px;

  margin: 70px auto;

  position: relative;
}

.target-road::before {
  content: "";

  position: absolute;

  top: 20px;

  bottom: 20px;

  left: 16px;

  width: 2px;

  background: var(--primary-alpha-15);
}

.target-item {
  display: flex;

  gap: 30px;

  position: relative;

  margin-bottom: 42px;
}

.target-item:last-child {
  margin-bottom: 0;
}

.target-check {
  width: 34px;

  height: 34px;

  flex-shrink: 0;

  border-radius: var(--radius-round);

  background: var(--primary);

  border: 6px solid var(--white);

  box-shadow: var(--shadow-ring-sm);

  z-index: 2;
}

.target-content h3 {
  margin-bottom: 12px;
}

.target-content p {
  margin-bottom: 0;
}

.target-quote {
  max-width: 760px;

  margin: 80px auto 0;

  padding: 36px;

  border-radius: var(--radius-lg);

  background: var(--white);

  text-align: center;

  box-shadow: var(--shadow-sm);
}

.target-quote p:first-child {
  font-family: var(--arabic-font);

  font-size: 2rem;

  color: var(--primary);

  margin-bottom: 20px;
}

.target-quote span {
  display: block;

  margin-top: 18px;

  color: var(--primary);

  font-weight: 600;
}
