.site-header {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.navigation-bar{
    height: 115px;
}
.navigation-bar--fullwidth .navigation-bar__inner{
    height: 115px;
}
.navigation-bar-btn{
    padding: 0;
}
.navigation--main > li > a{
    padding: 0 30px;
    height: 115px;
    line-height: 115px;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text);
    text-transform: unset;
}
.navigation--main > li > a:before{
    bottom: auto;
    top: 0;
    background-color: var(--color-logo);
}
.navigation-bar .header-logo img{
    max-height: 115px;
    padding: 20px 0;
}
.navigation--offcanvas > li > a{
    text-transform: unset;
}

.sticky-header .navigation-bar{
    height: 60px;
}
.sticky-header .navigation-bar--fullwidth .navigation-bar__inner{
    height: 60px;
}
.sticky-header .navigation--main > li > a{
    height: 60px;
    line-height: 60px;
}
.sticky-header .navigation-bar .header-logo img{
    max-height: 60px;
    padding: 15px 0;
}
/* search form*/
.mnmd-search-full{
    background-color: rgba(20,21,22,0.95) !important;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    visibility: hidden;
    overflow: hidden;
    padding: 0 15px;
}
.mnmd-search-full.On{
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    max-width: 100%;
    opacity: 1;
    border-bottom: 2px solid #000;
    visibility: visible;
}
.mnmd-search-full form{
    width: 100%;
    max-width: 100px;
    margin: auto;
    position: relative;
    top: 50%;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
    opacity: 0;
}
.mnmd-search-full.On form{
    -o-transition: all 0.5s ease 0.5s;
    transition: all 0.5s ease 0.5s;
    -moz-transition: all 0.5s ease 0.5s;
    -webkit-transition: all 0.5s ease 0.5s;
    max-width: 1200px;
    opacity: 1;
    border-bottom: 2px solid #000;
}
.mnmd-search-full .form-control{
    padding: 15px 60px 15px 15px;
    width: 100%;
    height: 90px;
    border: none;
    background: none;
    color: #fff;
    font-size: 35px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    text-align: center;
}
.mnmd-search-full.On .form-control{
    padding: 15px 60px 15px 15px;
    width: 100%;
    height: 90px;
    border: none;
    background: none;
    color: #fff;
    font-weight: 300;
    font-size: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    text-align: center;
}
.mnmd-search-full.On  input:focus{
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#mnmd-search-remove{
    position: absolute;
    right: 15px;
    top: 40px;
    margin: -15px 0;
    height: 25px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 35px;
}