.company-section{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3rem 0;
}

table{
  max-width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}

table tr{
  border-bottom: solid 2px white;
  padding: 2rem 0;
}

table tr:last-child{
  border-bottom: none;
}

table th{
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #161717;
  color: white;
  text-align: center;
  padding: 20px 0;
}

table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #161717;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table td{
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #f9f9f9;
  padding: 10px 0;
}