



h2 {
  font-size: 1.5rem;
  text-align: center;
}

.tabs {
  font-family: 'AdelleSans-SemiBold';
  font-size: 1.6rem;
  text-align: center;
  padding: 2.4rem;
}

ul.tabs li {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  /*padding: .8rem 2.4rem;
  background:#eee;*/
  cursor: pointer;
  margin: 0 1.0rem;
}

.tabs li:after {
  position: absolute;
  content: "";
  display: table;
  clear: both;
  bottom: -.4rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: #1a92c2;
  -webkit-transition: width 125ms ease, opacity 200ms ease;
  transition: width 125ms ease, opacity 200ms ease;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.tabs li.current:after {
  opacity: 1;
  width: 100%;
}

ul.tabs li.current {
  font-weight: 500;
  color:#1a92c2;
}
.tab-content {
  display: none;
    
}
.tab-content.current {
  display: inherit;
}