@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');

#page {
  
  width: 80%;
  margin: 0 auto;
  font-family:'Raleway', sans-serif;

}


#tabs {
  padding-top: 40px;
}

.c-tabs-nav {
  list-style: none;
  padding: 0;
  position: relative;
  margin-bottom: 10px;
}

.c-tabs-nav__link {
    text-decoration: none;
    color: #585858;
    opacity: 0.7;
    margin: auto;
    padding: 10px 15px;
    font-family: 'Raleway', sans-serif;
    font-size: .9em;
    width: 19.5%;
    height: 30px;
    display: inline-block;
    text-align: center;
}


.c-tabs-nav__link.is-active {
  opacity: 1;
}



/**
 * Tab
 */
.c-tab {
  display: none;
  border-top: 2px solid rgb(10, 151, 226);
}

.c-tab.is-active {
  display: block;
}

.c-tab__content {
  padding: 20px;
  position: relative;
  animation: showTab 300ms ease-in-out both;
}

@keyframes showTab{
  from {opacity: 0; top: 5px}
  to {opacity: 1; top: 0;}
}

.c-tab-nav-marker {
  min-height: 4px;
  background-color: #0a97e2;
  position: absolute;
  bottom: -10px;

  transition: all 0.3s ease-out;
}