/* SECTION
================================================== */
#sp_nav {
  margin: 0 0 2.5em;
  width: 100%;
  position: fixed;
  top: 80px;
  left: 0;
  background: #008042;
  z-index: 99;
}
#sp_nav {
  display: none;
}
#sp_nav .nav li {
    border-bottom: 1px solid rgba(255,255,255,.4);
}
#sp_nav .nav li:last-child {
  border-bottom: none;
}
#sp_nav .nav li .sub {
    border-top: 1px solid rgba(255,255,255,.4);
}
#sp_nav .nav li a {
    display: block;
    padding: 15px;
    color: #fff;
}

.target {
  background-color: #ddd;
  display: none;
}
.target .active a {
  background-color: #161b1d;
}
.target .active a:hover {
  background-color: #2c363a !important;
}
.target .active a:before {
  background-color: #f50057 !important;
}
#sp_nav .nav .active a {
  background-color: #ddd;
}
#sp_nav .nav .active a:hover {
  background-color: #ffa5a5 !important;
}
#sp_nav .nav li .sub li:last-child {
    border-bottom: none;
}
#sp_nav .nav li .sub li a {
    padding-left: 2em;
}



/* BUTTON
================================================== */
.btn_hamburger {
    /*margin: 0 auto 2em !important;*/
    width: 55px;
    position: fixed;
    left: 10px;
    top: 10px;
    z-index: 99;
    background: #fff;
    padding: 19px 12px;
    border:1px solid #007f41;
}
.btn_hamburger a {
    position: relative;
    display: block;
    height: 22px;
    -webkit-transition: all .4s;
    transition: all .4s;
    box-sizing: border-box;
}
.btn_hamburger span {
    position: absolute;
    display: inline-block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #007f41;
    border-radius: 2px;
    -webkit-transition: all .4s;
    transition: all .4s;
    box-sizing: border-box;
}
.btn_hamburger span:nth-of-type(1) {
    top: 0;
}
.btn_hamburger span:nth-of-type(2) {
    top: 10px;
}
.btn_hamburger span:nth-of-type(3) {
    bottom: 0;
}
.btn_hamburger span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #007f41;
    border-radius: 2px;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.btn_hamburger .active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.btn_hamburger .active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.btn_hamburger .active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) scale(0);
    -ms-transform: translateY(20px) scale(0);
    transform: translateY(20px) scale(0);
}
.btn_hamburger .active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) scale(0);
    -ms-transform: translateY(-20px) scale(0);
    transform: translateY(-20px) scale(0);
}