/* =========================
   Future Step Section
========================= */
.future-step-section {
  margin-top: 90px;
}
body {
  text-justify: inter-word;
}
/* Triangle */
.step-triangle-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 250px;
  height: 200px;
}

.step-triangle-shape {
  width: 0;
  height: 0;
  border-left: 165px solid transparent;
  border-right: 165px solid transparent;
  border-bottom: 200px solid #ff6d6d2d;

  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(42, 39, 39, 0.332));
}

/* Title on triangle */
.step-title {
  position: relative;
  z-index: 2;
  color: #111;
  font-size: 1.5rem;
  margin-top: 80px;
  text-align: center;
}

/* Content Text */
.content-text {
  font-size: 1.3rem;
  line-height: 2;
  color: #111;
  margin-left: 170px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  text-align: justify !important;
  text-justify: inter-word;
}
/* Slogan */
.slogan-text {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(
    90deg,
    #ff6b6b,
    #feca57,
    #48dbfb,
    #1dd1a1,
    #5f27cd
  );
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 2px 2px 6px rgba(164, 162, 162, 0.25);
  margin-top: 5rem;
  padding-top: 1.5rem;
  margin-right: 50px;
}
