header.header {
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFF;
    z-index: 999;
    height: 140px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    box-shadow: 0 0 500px rgba(0, 0, 0, 0.88);
    -webkit-box-shadow: 0 0 500px rgba(0, 0, 0, 0.88);
    display: flex;
}
.logo {
    display: inline-block;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    height: 100%;
}
.logo img {
    height: 100%;
}
.menu_header {
    display: inline-block;
    float: right;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 52px 0;
}
header.header.smaller {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 100px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background: #FFF;
    box-shadow: 0 0px 40px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 0px 40px rgba(0, 0, 0, 0.4);
}
header.smaller .logo {
    width: auto;
    height: 100%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
header.smaller .logo img {
    height: 100%;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
header.smaller .menu_header {
    margin: 32px 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

@media (max-width: 1200px) {
header.header {
    box-shadow: 0 -100px 500px rgba(0, 0, 0, 0.88);
    -webkit-box-shadow: 0 -100px 500px rgba(0, 0, 0, 0.88);
}
}


@media (max-width: 992px) {
.menu_header {
    margin: 52px 10px;
}
header.smaller .menu_header {
    margin: 32px 10px;
}
}

header.header_mobile {
    padding: 10px 0;
    background: #FFF;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}
.logo_mobile {
    display: inline-block;
    margin-left: 20px;
}
.menu_content {
    background: #FFF;
    position: fixed;
    left: 0;
    top: 140px;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    padding: 5% 10px 20% 10px;
    transform: translateY(-150%);
    -webkit-transform: translateY(-150%);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    z-index: 99;
}
.menu_content.menu_mobile_active {
    transform: translateY(0);
    transition: all 0.5s ease;
    -webkit-transform: translateY(0);
    -webkit-transition: all 0.5s ease;
}
.menu_open {
    position: absolute;
    right: 20px;
    top: 40px;
    background: #75b214;
    padding: 15px 15px 10px 15px;
}
.menu_open.is-active {
    background: #f95d0f;
}
.menu_open .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    background-color: #FFF;
    height: 3px;
}

/*.header_container {
    display: flex;
    align-items: center;
}*/



