

.tabs-wrapper {
width: 100%;
margin: 0 auto;
}
.tabs-wrapper input[type=radio] {
  display: none;
}
.tabs-wrapper label.tbtxt {
   font-family: 'Gotham', sans-serif;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  cursor: pointer;
  color: #707070;
  width: 25%;
 text-align: left !important;
 padding-bottom: 6px;
 padding-left: 10px;
 padding-right: 10px;
  background: #ffffff;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  font-weight: normal;
}
@media screen and (max-width: 1600px) {
  .tabs-wrapper label.tbtxt {
    width: 18%;
  }
}
@media screen and (max-width: 900px) {
  .tabs-wrapper label.tbtxt {
    width: 20%;
  }
}

.tabs-wrapper label.tbtxt:last-of-type {
  border-bottom: none;
}
.tabs-wrapper label.tbtxt:hover {
  background: #ffffff;
  color: #023F88;
  font-weight: bold;

}
.tabs-wrapper input[type=radio]:checked + label.tbtxt {
 background: #ffffff;
  color: #023F88;
  font-weight: bold;
   border-bottom: 2px solid #023F88;
}
.tabs-wrapper label.tbtxt{
  margin-bottom: 0;
}
.tabs-wrapper .tab-body {
  position: absolute;
  top: -9999px;
  opacity: 0;
  padding: 10px 0;
  transition: opacity 0.5s ease-in;
}
@media screen and (max-width: 600px) {
  .tabs-wrapper {
    margin: 0;
  }
}

.tab-body-wrapper {
  background: #ffffff;
  border-top: #707070 2px solid;
}


#tab1:checked ~ .tab-body-wrapper #tab-body-1, #tab2:checked ~ .tab-body-wrapper #tab-body-2, #tab3:checked ~ .tab-body-wrapper #tab-body-3, #tab4:checked ~ .tab-body-wrapper #tab-body-4, #tab5:checked ~ .tab-body-wrapper #tab-body-5 , #tab6:checked ~ .tab-body-wrapper #tab-body-6{
  position: relative;
  top: 0px;
  opacity: 1;
}