#header .from-top-menu-container {
    position: fixed;
    background: white;
    width: 100%;
    z-index: 2;
    top: -110%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 375px;
    opacity: 0;

    box-shadow: 1px 0px 5px 0px #494949;

    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#header.visible .from-top-menu-container {
    top: 0;
    opacity: 1;

    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#header .menu-overlay {
    opacity: 0;

    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

#header.visible .menu-overlay {
    opacity: 1;

    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

#header .from-top-menu-container .menu-header {
    justify-content: center;
}

#header .from-top-menu-container .menu-body {
    margin-top: 75px;
}

#header .from-top-menu-container .menu-body.no-logo {
    margin-top: 0;
}

#header .from-top-menu-container .new-menu {
    display: flex;
    align-items: center;
}

#header .from-top-menu-container .new-menu .menu-item {
    padding: 10px;
}

@media (max-width: 1200px) {
    #header .from-top-menu-container {
        min-height: 250px;
    }

    #header .from-top-menu-container .menu-body {
        margin-top: 25px;
    }

    #header .from-top-menu-container ul.new-menu > li > a {
        font-size: 1.5rem;
    }
}

@media (max-width: 1024px) {
    #header .from-top-menu-container {
        height: 100%;
    }

    #header .from-top-menu-container .new-menu {
        flex-direction: column;
    }

    #header .from-top-menu-container .menu-body {
        align-items: flex-start;
    }

    #header .from-top-menu-container .menu-body.no-logo {
        margin-top: 70px;
    }
}

#top-menu-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    z-index: 999;
    width: 100%;
    height: 105px;
    background: transparent;
    padding: 10px 40px;
    -webkit-box-shadow: 0 3px 2px -2px rgba(0,0,0,.2);
    box-shadow: 0 3px 2px -2px rgba(0,0,0,.2);
}

#top-menu-header .top-menu-header--container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

#top-menu-header .logo-wrapper img {
    width: 150px;
}

#top-menu-header .menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#top-menu-header .menu-wrapper li {
    list-style: none;
    margin: 0 30px 0 0;
    position: relative;
    padding: 0 0 5px;
}

#top-menu-header .menu-wrapper li:last-of-type {
    margin-right: 0;
}

#top-menu-header .menu-wrapper li:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #212121;
    will-change: transform;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

#top-menu-header .menu-wrapper li:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

#top-menu-header .menu-wrapper--mobile {
    background: white;
    display: none;
    position: absolute;
    top: 95px;
    left: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    padding: 15px 30px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .15s cubic-bezier(.39,.575,.565,1);
    -o-transition: all .15s cubic-bezier(.39,.575,.565,1);
    transition: all .15s cubic-bezier(.39,.575,.565,1);
}

#top-menu-header .menu-wrapper--mobile.is-open {
    top: 84px;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all .15s cubic-bezier(.39,.575,.565,1);
    -o-transition: all .15s cubic-bezier(.39,.575,.565,1);
    transition: all .15s cubic-bezier(.39,.575,.565,1);
}

#top-menu-header .menu-wrapper--mobile li {
    list-style: none;
    width: 100%;
}

#top-menu-header .menu-wrapper--mobile li:not(:last-of-type) {
    margin-bottom: 15px;
}

#top-menu-header .right-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#top-menu-header .search-wrap {
    margin-right: 15px;
}

#top-menu-header .right-section .burger {
    width: 36px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}

#top-menu-header .right-section .burger--mobile {
    display: none;
}

#top-menu-header .right-section .burger span {
    display: block;
    height: 1px;
    background-color: #050505;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 999;
}

#top-menu-header .right-section .burger span:first-of-type {
    width: 60%;
    -webkit-transition: width 0.5s;
    -o-transition: width 0.5s;
    transition: width 0.5s;
}

#top-menu-header .right-section .burger span:last-of-type {
    width: 42%;
    margin-left: auto;
    -webkit-transition: width 0.5s;
    -o-transition: width 0.5s;
    transition: width 0.5s;
}

#top-menu-header .right-section .burger:hover span:first-of-type,
#top-menu-header .right-section .burger:hover span:last-of-type {
    width: 100%;
    -webkit-transition: width 0.5s;
    -o-transition: width 0.5s;
    transition: width 0.5s;
}

#top-menu-header .additional-hamburger-section {
    position: fixed;
    top: 0;
    height: 100vh;
    min-width: 470px;
    right: -470px;
    background: #050505;
    visibility: hidden;
    -webkit-transition: all .5s cubic-bezier(.39,.575,.565,1);
    -o-transition: all .5s cubic-bezier(.39,.575,.565,1);
    transition: all .5s cubic-bezier(.39,.575,.565,1);
    padding: 100px;
    z-index: 9999;
    color: #fff;
}

#top-menu-header .additional-hamburger-section * {
    color: #fff;
}

#top-menu-header .additional-hamburger-section.is-open {
    right: 0;
    visibility: visible;
    -webkit-transition: all .5s cubic-bezier(.39,.575,.565,1);
    -o-transition: all .5s cubic-bezier(.39,.575,.565,1);
    transition: all .5s cubic-bezier(.39,.575,.565,1);
}

#top-menu-header .additional-hamburger-section .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 26px;
    height: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-transition: color cubic-bezier(.25,.46,.45,.94) .15s;
    -o-transition: color cubic-bezier(.25,.46,.45,.94) .15s;
    transition: color cubic-bezier(.25,.46,.45,.94) .15s;
    z-index: 10;
}

#top-menu-header .additional-hamburger-section .close-button:before,
#top-menu-header .additional-hamburger-section .close-button:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 26px;
    height: 1px;
    display: inline-block;
    margin-top: -1px;
    background-color: #fff;
    -webkit-transition: -webkit-transform cubic-bezier(.25,.46,.45,.94) .3s;
    transition: -webkit-transform cubic-bezier(.25,.46,.45,.94) .3s;
    -o-transition: transform cubic-bezier(.25,.46,.45,.94) .3s;
    transition: transform cubic-bezier(.25,.46,.45,.94) .3s;
    transition: transform cubic-bezier(.25,.46,.45,.94) .3s, -webkit-transform cubic-bezier(.25,.46,.45,.94) .3s;
    transition: transform cubic-bezier(.25,.46,.45,.94) .3s,-webkit-transform cubic-bezier(.25,.46,.45,.94) .3s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#top-menu-header .additional-hamburger-section .close-button:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#top-menu-header .additional-hamburger-section .close-button:hover:before,
#top-menu-header .additional-hamburger-section .close-button:hover:after {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

@media (max-width: 1024px) {
    #top-menu-header {
        box-shadow: none;
    }

    #top-menu-header .menu-wrapper {
        display: none;
    }

    #top-menu-header .menu-wrapper--mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    #top-menu-header .right-section .burger {
        display: none;
    }

    #top-menu-header .right-section .burger--mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 500px) {
    #top-menu-header {
        padding: 15px;
    }
}