/* ---- header element ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 5;
  transition: 0.3s linear all;
}
header .header-top ul {
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100%;
  padding: 10px 0;
  margin: 0;
  transition: 0.15s linear all;
}
header .header-top ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0 40px 0 0;
}
header .header-top ul li:last-of-type {
  margin: 0;
}
header .header-top ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.15s linear all;
}
header.sticky .header-top ul {
  opacity: 0;
  padding: 0;
  transition: 0.15s linear all;
}
header .header-top ul li a:hover {
  color: #89EA5F;
}
header .header-top ul li a svg {
  display: block;
  margin: 0 4px 0 0;
}

header .header-bottom {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 15px 30px;
  transition: 0.15s linear all;
}
header .header-bottom.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
header .header-bottom .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
header .header-bottom .image-wrapper a {
  display: flex;
  align-items: center;
  height: 100%;
}
header .header-bottom .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
}
header .header-bottom ul {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
  padding: 0;
  margin: 0 40px 0 0;
}
header .header-bottom ul li {
  list-style: none;
  display: inline-block;
}
header .header-bottom ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  padding: 22px 0;
  margin: 0 40px 0 0;
  transition: 0.15s linear all;
}
header .header-bottom ul li a:hover {
  color: #89EA5F;
}
header .header-bottom ul li:last-of-type a {
  margin: 0;
}
header .header-bottom .contact-trigger {
  display: inline-block;
  background-color: #89EA5F;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #333333;
  padding: 14px 30px;
  border: 2px solid #89EA5F;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.15s linear all;
}
header .header-bottom .contact-trigger:hover {
  background-color: #163300;
  color: #89EA5F;
}
header .nav-mobile-wrapper {
  display: none;
  align-items: center;
  justify-content: end;
}
header .nav-trigger {
  display: flex;
  align-items: center;
  margin: 0 0 0 40px;
}
header .nav-trigger.active {

}
header nav.mobile {
  display: none;
  background-color: #FFFFFF;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 30px;
  margin: 0 15px;
}
header nav.mobile ul {
  padding: 0;
  margin: 0;
}
header nav.mobile ul li {
  list-style: none;
  margin: 0 0 30px 0;
}
header nav.mobile ul li:last-of-type {
  margin: 0;
}
header nav.mobile ul li a {
  text-decoration: none;
  color: #163300;
  font-weight: 500;
  padding: 5px 0;
}


@media only screen and (max-width: 992px) {
  header ul.nav-desktop-wrapper {
    display: none;
  }
  header .nav-mobile-wrapper {
    display: flex;
  }
  header .header-top {
    display: none;
  }
  header .header-bottom {
    margin: 15px 0 0 0;
  }
}

@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 576px) {
  header .header-bottom .contact-trigger {
    display: none;
  }
}
