.our-journey-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 4%;
  margin: 20px 0px;
}

.our-journey-section .journey-card {
  max-width: 900px;
  background: #95c138;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  box-shadow: 0px 0px 12px #EA2031;
}
.our-journey-section .journey-card::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 10%;
  right: 10%;
  height: 40px;
  background: #95c138;
  border-radius: 20px 20px 0 0;
  box-shadow: 0px -2px 0px #EA2031;
}

.our-journey-section .journey-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 40px;
  background: #95c138;
  border-radius: 0 0 20px 20px;
  box-shadow: 0px 2px 0px #EA2031;
}
.our-journey-section .journey-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
}

/* Line under title */
.our-journey-section .journey-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background: #fff;
  margin: 10px auto 0;
  opacity: 0.6;
}

/* Text */
.our-journey-section .journey-text {
  font-size: 14px;
  opacity: 1;
  color: #fff;
  font-weight: 500;
}
