/* ========================= */
/* SECTION */
/* ========================= */
.timeline-section-s2 {
  padding: 80px 0;
  background: #f7f7f7;
}

.timeline-title-s2 {
  font-size: 28px;
  letter-spacing: 2px;
  color: #1b3c73;
  margin-bottom: 60px;
  text-align: center;
}

/* ========================= */
/* WRAPPER */
/* ========================= */
.timeline-wrapper-s2 {
  position: relative;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

/* CENTER LINE */
.timeline-wrapper-s2::before {
  content: '';
  position: absolute;
  width: 3px;
  background: #1b3c73;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ========================= */
/* ITEM */
/* ========================= */
.timeline-item-s2 {
  width: 50%;
  padding: 20px 30px;
  box-sizing: border-box;
  position: relative;
}

/* LEFT */
.timeline-item-s2:nth-child(odd) {
  text-align: right;
}

/* RIGHT */
.timeline-item-s2:nth-child(even) {
  text-align: left;
}

/* ========================= */
/* DOT */
/* ========================= */
.timeline-item-s2::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #1b3c73;
  border-radius: 50%;
  top: 40px;
  z-index: 2;
}

.timeline-item-s2:nth-child(odd)::after {
  right: -7px;
}

.timeline-item-s2:nth-child(even)::after {
  left: -7px;
}

/* ========================= */
/* CARD */
/* ========================= */
.timeline-card-s2 {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  max-width: 380px;
  display: inline-block;
}

/* ========================= */
/* ARROWS */
/* ========================= */
.timeline-item-s2:nth-child(odd) .timeline-card-s2::before {
  content: '';
  position: absolute;
  top: 28px;
  right: -15px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

.timeline-item-s2:nth-child(even) .timeline-card-s2::before {
  content: '';
  position: absolute;
  top: 28px;
  left: -15px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

/* ========================= */
/* IMAGE */
/* ========================= */
.timeline-card-s2 img {
  width: 100%;
  border-radius: 4px;
  margin: 10px 0;
}

/* ========================= */
/* YEAR */
/* ========================= */
.timeline-card-s2 .year,
.timeline-year-s2{
  font-weight: 600;
  color: #002d73;
  margin-bottom: 10px;
  font-size: 16px;
}



/* ========================= */
/* TEXT */
/* ========================= */
.timeline-card-s2 p {
  font-size: 18px;
  color: #555;
/*   line-height: 1.6; */
	color: #002d73;
}


.timeline-item-s2.right-s2{
	margin-top:40px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {

  .timeline-wrapper-s2 {
    display: block;
  }

  .timeline-wrapper-s2::before {
    left: 20px;
  }

  .timeline-item-s2 {
    width: 100%;
    padding: 20px 20px 20px 50px;
    text-align: left !important;
  }

  .timeline-item-s2::after {
    left: 12px !important;
  }

  .timeline-card-s2 {
    max-width: 100%;
  }

  .timeline-card-s2::before {
    display: none;
  }
}