.page-anq_links{
  margin-top: 100px;
}

.corp-history{
  background: #fff;
  padding: 80px 0 60px;
  @media screen and (max-width: 767px){
    padding: 40px 0 0;
  }
}

.history-item{
  display: flex;
  gap: 40px;
  padding-bottom: 56px;
  position: relative;
  @media screen and (max-width: 767px){
    gap: 12px;
    .event{
      width: calc(100% - 12px - 26px);
    }
  }
  &:last-child{
    padding-bottom: 0;
  }
  &::before{
    content: "";
    width: 2px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 4px;
    left: 12px;
  }
  .sq-block{
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #000;
    margin-top: 4px;
  }
  .year{
    font-weight: 700;
  }
}

.event-item{
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
  @media screen and (max-width: 767px){
    gap: 12px;
    margin-bottom: 12px;
  }
  &:last-child{
    margin-bottom: 0;
  }
  .month{
    width: 3em;
  }
  .ivent-info{
    width: calc(100% - 3em - 40px);
    img{
      vertical-align: middle;
      padding: 4px;
    }
  }
}