@charset "utf-8";
@import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@1.0/nanumsquare.css);
@import url(normalize.css);
@import url(common.css);

#content_wrapper {
  width: 100%;
  padding-bottom: 100px;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/*triangle shape images*/
.history_img1 {
  display: block;
  position: absolute;
  right: 180px;
  top: 42%;
}
.history_img2 {
  display: block;
  position: absolute;
  left: 280px;
  top: 56%;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: "";
  position: absolute;
  width: 1px;
  border-right: dashed 1.4px #ccc;
  top: 150px;
  bottom: 0;
  left: 50%;
  margin-top: 50px;
  margin-left: -1px;
}
/*we are in 2019*/
.timeline_now {
  text-align: center;
}
.timeline_now h5 {
  font-size: 18px;
  line-height: 1.6em;
  color: #999;
}
.timeline_now h5 b {
  font-size: 24px;
  color: #002758;
  font-weight: normal;
}

/* Container around content */
.container {
  padding: 10px 40px;
  box-sizing: border-box;
  position: relative;
  background-color: inherit;
  width: 50%;
}
/*Container li*/
.container li {
  padding: 2px;
  line-height: 1.5em;
  color: #0043a0;
}
.container h5 {
  display: block;
  font-size: 24px;
  color: #0043a0;
}
.container .right h5 {
  display: block;
  float: left;
}

/* The circles on the timeline */
.container::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -15px;
  background-color: #00b6a0;
  border: 6px solid #7fd9c9;
  top: 20px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  right: 0%;
  text-align: right;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.content {
  padding: 10px 0;
}

/* Media queries - Responsive timeline on screens less than 1215px wide */
@media screen and (max-width: 1215px) {
  /* The actual content */
  .content {
    padding: 10px 0;
  }
  /*triangle shape images*/
  .history_img1 {
    display: block;
    position: absolute;
    right: 10%;
    top: 42%;
  }
  .history_img2 {
    display: block;
    position: absolute;
    left: 20%;
    top: 56%;
  }
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .content {
    padding: 25px 0 0 0;
  }

  .timeline_now h5 {
    margin-bottom: 30px;
  }
  /*triangle shape images*/
  .history_img1 {
    display: none;
  }
  .history_img2 {
    display: none;
  }
  /* Place the timelime to the left */
  .timeline::after {
    left: 21px;
  }

  /* Full-width containers */
  .container li {
    font-size: 15px;
  }
  .container {
    width: 100%;
    padding: 0 0 20px 35px;
  }
  .container ul {
    list-style: square;
  }
  .left {
    right: 0%;
    text-align: left;
  }
  /* Make sure all circles are at the same spot */
  .left::after,
  .right::after {
    left: 5px;
  }

  /* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}
