
.container-sub-menu{
  width: 100%;
  padding-top: 40px;
  padding-bottom: 0px;
  padding-left: 0%;
  padding-right: 0%;
  justify-content: center;
    display: flex;

}
.txtcenter {
    justify-content: center;

}
.tabs {
  width: 100%;
  float: none;
  list-style: none;
  position: relative;
  margin: 0px 0px 60px 10px;

}
.tabs li {
  float: left;
  display: block;
  background-color: lightgray;
    
}
.tabs input[type="radio"] {
  position: absolute;
  top: 0;
  left: -9999px;

}
.tabs label {
  display: inline-flexbox;
  padding: 14px 21px;
  border-radius: 0px 0px 0 0;
  font-size: 16px;
  color: black;
  background-color: white;
  font-weight: normal;
  text-transform: none;
  cursor: pointer;
  position: relative;
  top: 0px;
  -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 {
  color: #009568;
  text-decoration: underline
}
.tabs .tab-content {
  z-index: 2;
  display:grid;
  overflow: hidden;
  width: 100%;
  font-size: 16px;
  line-height: 25px;
  padding: 2px;
  position: absolute;
  top: 53px;
  left: 0px;
  background: yellow;
}
.tabs [id^="tab"]:checked + label {
  top: 0;
  padding-top: 17px;
  background: none;
}
.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: yellow;
  padding: 5px 10px;
  margin: 0 5px;
  background-color: none;
  -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;
}
