.tabs {
    padding: 20px 0;
}
#tab-button {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
#tab-button li {
    display: table-cell;
    width: 20%;
}
#tab-button li a {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    display: block;
    padding: 15px;
    letter-spacing: 1px;
    background-color: #D4D4D4;
    border: 1px solid #ddd;
    text-align: center;
    color: #000;
    text-decoration: none;
    /* border-radius: 50px; */
}
#tab-button li:not(:first-child) a {
  border-left: none;
}
#tab-button li a:hover,
#tab-button .is-active a {
  border-bottom-color: transparent;
background-color: #275499 ;
color: #fff;
}
#tab-select{
  width: 100%;
  color: #101010;
  padding: 5px 0;
  font-size: 15px;

}
@media only screen and (max-width: 360px){
  #tab-select {
    width: 100%;
    color: #101010;
    padding: 5px 0;
    height: 50px;
    padding-left: 10px;
    border: 3px solid #003D84;
  }
}

.tab-contents h2{
  margin-top: 5;
  margin-bottom: 4%;
  color: #000000;
}
@media only screen and (max-width: 767px) and (min-width: 0px){
  .tab-contents h2{
    text-align: center;
  }
}
.tab-contents p{
  color: #424242;
  /* margin-bottom: 4%; */
  font-family: 'Source Sans Pro', sans-serif;
  text-align: justify;
  font-size: 17px;
}
.tab-button-outer {
  display: none;
}
.tab-contents {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .tab-button-outer {
    position: relative;
    display: block;
  }
  .tab-select-outer {
    display: none;
  }
  .tab-contents {
    position: relative;
    top: -1px;
    margin-top: 0;
  }
}
