
.tabs {

  float: none;
  list-style: none;
  position: relative;
  margin: 50px 0 0 0px;
  text-align: left;
}

ol, ul {
    padding-left: 0;
}

ul li{
   
}
.tabs li {width: 50%;
  float: left;
  display: block;
}
.pl-5{ padding-left: 18.5%;}
.tabs input[type="radio"] {
  position: absolute;
  top: 0;
  left: -9999px;
}
.tabs label {
  display: block;
  padding: 10px 0 0 0;
  border-radius: 2px 2px 0 0;
  font-size: 20px;
  font-weight: normal;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  top: 0;
  -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 label:hover {
 
}
.tabs .tab-content {
  z-index: 2;
  display: none;
  overflow: hidden;
  width: 100%;
  font-size: 17px;
  line-height: 25px;
  position: absolute;
  left: 0;

}
.tabs [id^="tab"]:checked + label {
  top: 0;
  padding-top: 17px;

}
.tabs [id^="tab"]:checked ~ [id^="tab-content"] {
  display: block;
}

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;
  background-color: #612e76;
  -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;
}
p.link a:hover {
  background-color: #522764;
}


@media screen and (max-width: 520px) {
 .tabs li {
  width:50%;

}
}

@media screen and (max-width: 1280px) {
.pl-5{ padding-left: 10px!important}
}
@media screen and (max-width: 480px) {
.pl-5{ padding-left: 0px!important}
}

