#head-tabs {
  margin: 0;
  position: absolute;
  bottom: -67px;
  width: 100%;
  background: #fff;
  border-bottom: #e7e7e7 solid 1px;
  left: 0px;
}
#head-tabs * {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
#head-tabs .tabs {
  overflow: auto;
  -webkit-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  display: block;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  text-align: center;
}
#head-tabs .tabs li {
  display: inline-block;
  position: relative;
  overflow: visible;
  width: auto;
}
#head-tabs .tabs li:after {
  content: '';
  background: url(../img/icons/bullet.png) center no-repeat;
  display: block;
  height: 4px;
  width: 4px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: -2px;
  z-index: 10;
  opacity: 0.5;
}
#head-tabs .tabs li:last-child:after {
  display: none;
}
#head-tabs .tabs li.current {
  background: #fff;
}
#head-tabs .tabs li.current a {
  color: #82b8e5;
}
#head-tabs .tabs li:hover a {
  color: #82b8e5;
}
#head-tabs .tabs li a {
  padding: 20px 40px;
  display: block;
  font-family: 'bignoodletitling', sans-serif;
  font-size: 26px;
  line-height: 26px;
  color: #8b8470;
  text-transform: uppercase;
  text-decoration: none;
}
@media screen and (max-width: 1115px) {
  #head-tabs .tabs li a {
    padding: 20px;
  }
}
@media screen and (max-width: 960px) {
  #head-tabs .tabs li a {
    font-size: 21px;
    line-height: 21px;
  }
}
