/* Component Needs */
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700);
@import url(https://fonts.googleapis.com/css?family=Raleway:100,400,700);
.pc-tab1 > input,
.pc-tab1 section > div {
  display: none;
}

#tab1:checked ~ section .tab1,
#tab2:checked ~ section .tab2,
#tab3:checked ~ section .tab3 {
  display: block;
}

#tab1:checked ~ nav .tab1,
#tab2:checked ~ nav .tab2,
#tab3:checked ~ nav .tab3 {
  color: red;
}

/* Visual Styles */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}



h1 {
  text-align: center;
  font-weight: 100;
  font-size: 60px;
  color: #e74c3c;
}

.pc-tab1 {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.pc-tab1 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pc-tab1 ul li label {
  font-family: "Raleway";
  float: left;
  padding: 15px 25px;
  border: 1px solid #ddd;
  border-bottom: 0;
  background: #eeeeee;
  color: #444;
}
.pc-tab1 ul li label:hover {
  background: #dddddd;
}
.pc-tab1 ul li label:active {
  background: #ffffff;
}
.pc-tab1 ul li:not(:last-child) label {
  border-right-width: 0;
}
.pc-tab1 section {
  font-family: "Droid Serif";
  clear: both;
  height:96vh;
}
.pc-tab1 section div {
  padding: 20px;
  width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  line-height: 1.5em;
  letter-spacing: 0.3px;
  color: #444;
  height:90vh;
}
.pc-tab1 section div h2 {
  margin: 0;
  font-family: "Raleway";
  letter-spacing: 1px;
  color: #34495e;
 
}

#tab1:checked ~ nav .tab1 label,
#tab2:checked ~ nav .tab2 label{
  background: white;
  color: #111;
  position: relative;
}
#tab1:checked ~ nav .tab1 label:after,
#tab2:checked ~ nav .tab2 label:after{
  content: "";
  display: block;
  position: absolute;
  height: 96vh;
  width: 100%;
  background: #ffffff;
  left: 0;
  bottom: -1px;
}

