.tabs {
    width: 100%;
  float: none;
  list-style: none;
  position: relative;
  text-align: left;
}
.tabs li {
  display: inline;
}
.tabs input[type="radio"] {
  position: absolute;
  top: 0;
  left: -9999px;
}
.tabs label {
  display: block;
  font-size: 1em;
  font-weight: normal;
  text-transform: uppercase;
    opacity: .75;
    outline: none;
  cursor: pointer;
  position: absolute;
  top: 4px;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tabs li:nth-child(1) label {
    left: 5em;
}
.tabs li:nth-child(2) label {
    margin-left: -2em;
    left: 50%;
    -webkit-transform: translate3d(-50%,0,0);
    transform: translate3d(-50%,0,0);
}
.tabs li:nth-child(3) label {
    right: 5em;
}
.tabs label:hover {
    opacity: .8;
}
.tabs .tab-content {
  z-index: 2;
    visibility: hidden;
  /*display: none;*/
  overflow: hidden;
  width: 100%;
  font-size: 17px;
  line-height: 25px;
  padding: 25px;
  position: absolute;
  top: 50px;
  left: 0;
}
.tabs [id^="tab"]:checked + label {
    font-weight: 600;
    opacity: 1;
}
.tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  /*display: block;*/
    visibility: visible;
}

p.link {
  clear: both;
  margin: 380px 0 0 15px;
}
p.link a {
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  margin: 0 5px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}