@charset "utf-8";

.second-view a,
.last-view a {
  color: #616df3;
  border-bottom: solid 1px #616df3;
}

.dev-timeline {
  max-width: 750px;
  margin-left: 30px;
  padding-top: 10px;
}

.dev-list {
  padding-left: 10px;
  padding-bottom: 20px;
  counter-increment: section;
  position: relative;
}

.dev-list:last-child {
  padding-bottom: 5px;
}

.dev-list::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #8a9ac3;
  position: absolute;
  top:0;
  left:0;
}

.dev-list::after {
  content: counter(section, decimal-leading-zero);
  font-size: 15px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  background-color: #46abea;
  color: #ffffff;
  text-align: center;
  width: 32px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  position: absolute;
  top:0;
  left: -13px;
}

.list-title {
  color: #149ef4;
  font-weight: bold;
  font-size: 23px;
  margin-bottom: 8px;
  margin-left: 15px;
}

.list-content {
  margin-left: 30px;
}

.blog-item p {
  margin-left: 10px;
  line-height: 30px;
}

.blog-item-second {
  width: 300px;
  padding: 20px 0 10px 10px;
  margin-left: 12px;
  margin-top: 20px;
}

.blog-item-second h4 {
  background-color: #f4d2ed;
  position: relative;
  box-shadow: 0px 0px 0px 10px #f4d2ed;
  padding: 5px 8px;
  margin-bottom: 20px;
}

.second-content {
  margin-left: 30px;
  margin-top: 5px;
}

.agile-image {
  display: flex;
  align-items: center;
  margin: 10px;
}

.agile-image img {
  width: 180px;
  height: 180px;
}

.agile-image p {
  font-size: 20px;
  font-weight: bold;
  margin-right: 20px;
  margin-left: 20px;
}

@media (max-width: 800px) {
  .dev-timeline {
    max-width: 90%;
  }

  .blog-item-second {
    max-width: 90%;
    margin-left: 5px;
  }
  
  .list-content {
    line-height: 15px;
  }

  .blog-item p {
    line-height: 1.5;
  }

  .second-content {
    margin-left: 0;
    max-width: 100%;
  }

  .second-content img {
    max-width: 90%;
  }

  .agile-image {
    display: block;
    margin-left: 20px;
  }

  .agile-image img {
    width: 150px;
    height: 150px;
  }
}