/*@import '../base/_mixins.scss';*/
/***************************************/
/**             HEADER                **/
/***************************************/
.main_header {
  display: grid;
  background: #fff9ef;
  border-top: 5px solid #1d7432;
  /*border-bottom: 10px solid $primary_color__light;*/
  /*border-bottom: none;
  box-shadow: none;
  padding-bottom: 10px;*/
}
.main_header .HeaderContent > .NavWrapper {
  padding-top: 15px;
}
.main_header .HeaderContent > .NavWrapper > ul > li > a {
  padding: 8px 15px;
  color: #201d15;
  background: #a9d284;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  transition: 0.4s ease-out;
}
.main_header .HeaderContent > .NavWrapper > ul > li > a:hover {
  border-bottom: 2px solid #1d7432;
  font-weight: 700;
}
.main_header .HeaderContent .NavWrapper ul li.active a {
  background: #24361c;
  color: #fff;
}
.main_header input[type=submit] {
  width: 100px;
  color: #201d15;
  background: #a9d284;
  border: none;
  border-bottom: 2px solid transparent;
  transition: 0.4s ease-out;
  cursor: pointer;
}
.main_header input[type=submit]:hover {
  text-decoration: none;
  font-weight: 800;
  color: #201d15;
  border-bottom: 2px solid #24361c;
}