/* SUPERHEADER — base */
.superheader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  background: #8fc156;
  max-height: 44px;
	font-family: "Din-Light";
}

.superheader nav > ul {
  display: flex;
  align-items: center;
  height: 44px;
  margin: 0;
  padding: 0;
  font-size: 16px;
  text-transform: uppercase;
}

.superheader nav > ul > li {
  list-style: none;
  position: relative;
}

.superheader nav > ul > li > a {
  display: block;
  height: 44px;
  line-height: 44px;
  padding: 0px 32px;
  color: #fff;
  text-decoration: none;
}

.superheader nav > ul > li:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 0;
  width: 1px;
  height: 50%;
  background: #fff;
  transform: translateX(0.5px);
}

.superheader nav > ul > li:hover,
.superheader nav > ul > li.current-active-site {
  background: rgba(0, 0, 0, 0.4);
}

.superheader nav > ul > li.current-active-site a {
  pointer-events: none;
  cursor: default;
}

.superheader nav > ul > li.current-active-site::before,
.superheader nav > ul > li.current-active-site + li::before,
.superheader nav > ul > li:hover::before,
.superheader nav > ul > li:hover + li::before {
  display: none;
}
header#site-header {
    position: fixed;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    transition: 0.3s all ease;
	top:44px;
	padding:0 30px;
	
}
header#site-header .content-header {
    position: relative;
    width: 100%;
    padding-left: calc((100% - 1660px) / 2);
    margin: 0 auto;
    height: 70px;
    line-height: 70px;
}
header#site-header .content-header a{
    position: relative;
    display:inline-block;
}
header#site-header .content-header img{
    position: relative;
    top:15px;
	width:100%;
	max-width:280px;
	height:auto;
}
/* SUPERHEADER — responsive */
@media (max-width: 991px) {
  .superheader nav > ul {
    font-size: 15px;
  }
  .superheader nav > ul > li > a {
    padding: 0 10px;
  }
  .superheader nav > ul > li a span {
    display: none;
  }
  header#site-header .content-header img{
	max-width:180px;
	top:20px;
  }
}

@media (max-width: 767px) {
  .superheader nav > ul {
    font-size: 10px;
  }
}

@media (max-width: 577px) {
  .superheader nav > ul > li {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .superheader nav > ul > li > a {
    height: auto;
    line-height: 14px;
    text-align: center;
    padding: 0px 10px;
  }
}
