.tabs2{
  position: relative;
  margin: 0 0;
  height:450px;
  float:left;
  width:100%;
}

.tabs2::before,
.tabs2::after {
  content: "";
  display: table;
}

.tabs2::after { clear: both; }

.tab { float: left; }

.tab-switch { display: none; }

.tab-label {
  position: relative;
  display: block;
  padding:8px 10px;
  color: #3a3a3a;
  cursor: pointer;
  top: 0;
  transition: all 0.25s;
  width:100%;
  float:right;
  margin-top:20px;
  margin-bottom:10px;
  border:1px solid #fff;
  font-weight:600;
 
}

.tab-label:hover {
  #top: -0.25rem;
  transition: all 0.25s;
  color:#e50f3c;
}

.tab-content {
  #padding: 1.618rem;
  color: #2c3e50;
  position: absolute;
  z-index: 1;
  top: 2.75em;
  left: 0;
  opacity: 0;
  transition: all 0.35s;
  width:100%;
  margin-top:20px;
}

.tab-switch:checked + .tab-label {
  color: #e50f3c!important;
  border-bottom: 0;
  transition: all 0.35s;
  z-index: 2;
  border:1px solid #ddd;
  
}

.tab-switch:checked + .tab-label:hover { top: -0.0625rem; }

.tab-switch:checked + .tab-label + .tab-content {
  opacity: 1;
  transition: all 0.35s;
  z-index: 3;
}