@charset "UTF-8";

.tabs {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500; }
  .tabs li em,
  .tabs li span {font-weight:600;}  
  .tabs li.active a {
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.9);
    cursor: default;
    text-decoration: none;
    background: none; }
  .tabs em,
  .tabs a {
    position: relative;
    top: 1px;
    font-style: normal;
    display: block;
    padding: 20px 30px;
    border: 1px solid transparent;
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none; 
    -moz-transition: all linear 0.1s;
    transition: all linear 0.1s; }
  .tabs a:hover {
    -moz-transition: all linear 0.1s;
    transition: all linear 0.1s;
    color: #3cbc05;
    text-decoration: none;
    background: none; }

@media (min-width: 768px) {
  .tabs ul {
    display: flex;
    margin-top: -1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.9); }
  .tabs li em,
  .tabs li.active a {
    border-bottom: 1px solid #fff;}
}

/* Timeline */
.timeline {
  border-left: 4px solid #3cbc05;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  background: rgba(0, 0, 0, 0.02);
  color: rgba(0, 0, 0, 0.9);
  margin: 0 0 0 120px;
  position: relative;
  line-height: 1.4em;
  font-size: 16px;
  padding: 40px 50px;
  list-style: none;
  text-align: left;
  font-weight: 100;
  max-width: 88%;
}
.timeline h1,
.timeline h2,
.timeline h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight:500;
  color: rgba(0, 0, 0, 0.9);
  font-size: 18px;
  line-height: 120%;
}
.timeline p {
  font-family: 'Rajdhani', sans-serif;
  font-weight:500;
  color: rgba(0, 0, 0, 0.9);
  font-size: 16px;
  padding: 0;
}
.timeline .event {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  margin-bottom: 28px;
  position: relative;
}

.timeline .event h3 span {display:block; margin-top:-10px;}

.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}
.timeline .event:before {
  left: -205px;
  color: rgba(0, 0, 0, 0.9);
  content: attr(data-date);
  text-align: right;
  font-weight:500;
  font-size: 16px;
  min-width: 120px;
}
.timeline .event:after {
  box-shadow: 0 0 0 4px #3cbc05;
  left: -57.85px;
  background: #fff;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
  top: 5px;
}

