/*----- Tabs -----*/
.tabs {
  width: 70%;
  margin: auto;
}
/*----- Tab Links -----*/
/* Clearfix */
.tab-links:after {
  display: block;
  clear: both;
  content: '';
}
.tab-links .li-elements {
  margin: 0px 5px;
  float: left;
  list-style: none;
}
.tab-links a {
  padding: 9px 15px;
  display: inline-block;
  border-radius: 3px 3px 0px 0px;
  background: #3e6f4f;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: all linear 0.15s;
}
.tab-links a:hover {
  background: rgba(233,83,13,0.7);
  text-decoration: none;
}
.li-elements.active a, .li-elements.active a:hover {
  background: rgba(51,51,51,0.3);
  color: #fff;
}
/*----- Content of Tabs -----*/
.tab-content {
  padding: 15px;
  border-radius: 3px;
  box-shadow: -1px 1px 1px rgba(0,0,0,0.15);
  background: rgba(51,51,51,0.3);
}
.tab {
  display: none;
}
.tab p {
  color: #fff;
}
.tab.active {
  display: block;
}
