/* ---- header element ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 110px;
  z-index: 9;
  background-color: #FAFAFA ;
  transition: 0.1s linear all;
  box-shadow: 1px 6px 10px 0px rgba(0,0,0,0.21);
  -webkit-box-shadow: 1px 6px 10px 0px rgba(0,0,0,0.21);
  -moz-box-shadow: 1px 6px 10px 0px rgba(0,0,0,0.21);
}
/* ----  ---- header top ---- ---- */
header .header-top {
  background-color: #db9e2e;
  padding: 5px 0;
}
header .header-top .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
}
header .header-top p {
  text-align: center;
  font-size: 14px;
  color: #FAFAFA;
  margin: 0;
}
header .header-top a {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #FAFAFA;
  text-decoration: none;
  margin: 0 30px 0 0;
}
header .header-top a svg {
  display: inline-block;
  margin: 0 6px 0 0;
}
header .header-top .content-wrapper a:last-of-type {
  margin: 0;
}
/* ---- ---- ---- ---- ---- ---- */
/* ----- header top mobile ----- */
header .header-top-mobile {
  display: none;
  background-color: #db9e2e;
  padding: 5px 0;
}
header .header-top-mobile span {
  text-align: center;
  display: block;
  font-size: 14px;
  color: #FAFAFA;
  margin: 0;
}
/* ----- ---- ---- ---- ---- ----- */
/* ----- header logo ----- */
header .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
header .logo a {
  display: block;
  text-align: left;
  text-decoration: none;
}
header .logo a img {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
}
/* ----- header nav ----- */
header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
header nav ul {
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav ul li {
  position: relative;
  display: inline-block;
  height: 80px;
  color: #F2F2F2;
  font-size: 16px;
  cursor: pointer;
}
header nav ul li.active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header nav ul li .hover-element {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  max-width: 150px;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: 0.1s linear all;
}
header nav ul li:hover .hover-element {
  opacity: 1;
}
header nav ul li.active .item-with-children {
  margin-right: 2px;
}
header nav ul li .item-with-children,
header ul li a {
  position: relative;
}
header ul li a,
header ul li .item-with-children {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  color: #2E7554;
  padding: 30px 20px;
  height: 80px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {

}

@media only screen and (max-width: 768px) {
  header {
    height: unset;
  }
  header .header-top-mobile {
    display: block;
  }
  header .header-top {
    display: none;
  }
  header nav {
    justify-content: center;
  }
  header .logo a {
    width: 100%;
    text-align: center;
  }
  header .logo a img {
    margin: 20px auto 0;
  }
  header nav ul li {
    height: unset;
  }
  header ul li a {
    height: unset;
    padding: 20px 12px;
  }
}

@media only screen and (max-width: 440px) {

}
