#tabs {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

#tabs li {
  float: left;
  margin: 0 .5em 0 0;
}

#tabs a {
  position: relative;
  background: #d6d9d8;

  padding: 1.3em 1.5em;
  float: left;
  text-decoration: none;
  color: #444;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
  -webkit-border-radius: 0px 0 0 0;
  -moz-border-radius: 0px 0 0 0;
  border-radius: 0px 0 0 0;

}

#tabs a:hover,
#tabs a:hover::after,
#tabs a:focus,
#tabs a:focus::after {}

#tabs a:focus {
  outline: 0;
}

#tabs a::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: -.5em;
  bottom: 0;
  width: 1em;
  background: #d6d9d8;
  color: #444;
  -webkit-transform: skew(0deg);
  -moz-transform: skew(0deg);
  -ms-transform: skew(0deg);
  -o-transform: skew(0deg);
  transform: skew(0deg);
  -webkit-border-radius: 0 0px 0 0;
  -moz-border-radius: 0 0px 0 0;
  border-radius: 0 0px 0 0;
}

#tabs #current a,
#tabs #current a::after {
  background: #f1f1f1;
  color: #d98419;
  z-index: 3;
}

/* ------------------------------------------------- */

#content {
  background: #f1f1f1;
  padding: 2em;
  max-width: 100%;
  min-height: 315px;
  
  position: relative;
  z-index: 2;



}

.tabsstyle {
  display: flex;
  gap: 25px;
  margin: 25px 0 55px 0;
  padding: 0 15px 0 15px;
}
.about{
  flex: 2;
}
.abst{
border: solid 1px #b7b7b7;
}

@media (max-width: 768px) {
  .tabsstyle {
    display: flex;
    flex-direction: column;

  }
  .abst{
  border-radius: 5px;
}

}