#company-history {
  background: white;
}

#company-history .history-container {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;


  position: relative;

  overflow: scroll;
}

#company-history .history-container .year-group {
  flex: 0 0 65%;
}
#company-history .history-container .year-group .year-items {
  padding-left: 20px;
  background-repeat: repeat-y;
  background-size: 6px 8px;
  background-position: 5px 1px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8"><circle cx="4" cy="4" r="2.5" fill="%2309516f" stroke="none" /></svg>');
}
#company-history .history-container .year-group .year {
  border-top: solid #09516f 3px;
  background: white;
  padding-left: 20px;
}

#company-history .history-container .year-group .item {
  margin-top: 1rem;
  padding-bottom: 1rem;

}

#company-history .history-container .year-group h3 {
  color: #1c80a4;
  font-size: 18px;
  margin-bottom: 4px;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 0 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M8,1 L15,8 L8,15 L1,8 L8,1" fill="white" stroke-width="1.5" stroke="%2309516f" stroke-linejoin="miter" stroke-linecap="round"></path></svg>');
  text-indent: 20px;
  margin-left: -20px;
}

#company-history .history-container .year-group button.more {
  background: #757575;
  color: white;
  padding: 6px 10px 6px 6px;
  border-radius: 6px;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  #company-history .history-container .year-group {
    flex: 0 0 35%;
  }
}

@media screen and (min-width: 1024px) {
  #company-history .history-container .year-group {
    flex: 0 0 25%;
  }
  #company-history .history-container .year-group:first-child {
    position: sticky;
    left: 0;
    background: white;
  }
  #company-history .history-container .year-group:last-child {
    position: sticky;
    right: 0;
    background: white;
  }
}
