body {
  font-family: "lato", sans-serif;
}

.container {
  margin-left: auto;
  margin-right: auto;
  diplay: flex;
  justify-content: center;
}

h2 {
  font-size: 35px;
  text-align: center;
  margin-right: 25px;
  margin-left: 25px;

}
h2 small {
  font-size: 0.5em;
}

.responsive-table li {
  border-radius: 3px;
  padding: 25px 30px;
  display: block;
  justify-content: center;
  margin-bottom: 15px;
  margin-right: 15%;
  margin-left: 10%;
}
.responsive-table .table-header {
  justify-content: center;
  background-color: #111d58;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.responsive-table .table-row {
  background-color: #ffffff;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}
.responsive-table .col-1 {
   text-align: center;
  flex-basis: 50%;
    flex-wrap: inline-wrap;
    max-width: 100%;
}
.responsive-table .col-2 {
   text-align: center;
  flex-basis: 50%;
        flex: 0 0 50%;
    max-width: 100%;
}
.responsive-table .col-3 {
   text-align: center;
  flex-basis: 50%;
        flex: 0 0 50%;
    max-width: 100%;
}
a.Buttons {
  background-color: #111d58;
  border: none;
  color: white;
  padding: 15px 25px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 13px;
  margin: 25px 15%;
  cursor: pointer;
}

@media all and (max-width: 100%) {
  .responsive-table .table-header {
    display: flex;
      width: 100%;
  }
  .responsive-table li {
    display: block;
      width: 100%;
  }
  .responsive-table .col {
    flex-basis: 100%;
      width: 100%;
     max-width: 100%;
  }
  .responsive-table .col {
    display: block;
    padding: auto;
      width: 100%;
  }
  .responsive-table .col:before {
    color: #6C7A89;
      width: 100%;
    padding-right: auto;
    content: attr(data-label);
    flex-basis: 100%;
    text-align: center;
  }
}