.navigation-grid-system {
    display: grid;
    height: 100%;
    grid-template-rows: auto 1fr;
    grid-template-columns: auto 1fr;
    grid-template-areas: "hd hd" "sb main";
}

.navigation-grid-container {
    grid-area: hd;
    display: -ms-flexbox!important;
    display: flex!important;
}

/* Navigation Static Top */

.navigation-static-top {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    background-color: #101314;
    z-index: 99;
}

.navigation-top-language {
    display: flex;
    position: relative;
    height: 100%;
    max-width: auto;
    min-width: auto;
}

.navigation-top-logo .navigation-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 12px 0;
    text-decoration: none;
    cursor: pointer;
}

.navigation-top-language .navigation-language-item {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.navigation-top-language .navigation-language-item:hover {
    background-color: #212223;
}

.navigation-language-item-mboile {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    cursor: pointer;
}

.navigation-language-item-mboile a {
    color: #7d8391;
}

.navigation-language-item-mboile a:first-child {
    margin-right: 15px;
}

.navigation-top-language.menu-1 {
    margin-left: auto;
}

.navigation-top-language.menu-2 {
    margin-right: 4.675rem;
}

.navigation-top-language.menu-3 {
    max-width: auto;
    min-width: auto;
    font-weight: 700;
}

.navigation-top-logo {
    position: absolute;
    left: calc(48%);
}

.navigation-top-logo img {
    width: 80px;
}

.navigation-top-logo span {
    font-size: 1.75rem;
}

/* Navigation Bottom */

.navigation-fixed-top {
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    background-color: #f60c1a;
    z-index: 99;
    transition: all .3s ease-in-out;
}

.navigation-fixed-top.bg-fadein {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #f60c1a;
    -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .25);
    z-index: 999;
}

.navigation-bottom-container {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
    padding-left: 4.675rem;
    padding-right: 4.675rem;
}

.navigation-fixed-top .navigation-bottom-menu-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    font-size: 1.35rem;
    color: #fff;
    padding: 12px 10px;
    text-decoration: none;
    cursor: pointer;
}

.navigation-fixed-top .navigation-bottom-menu-item:hover {
    background-color: #b80000;
    color: #fff;
}

.navigation-fixed-top .navigation-bottom-menu-item.active {
    background-color: #b80000;
    color: #fff;
}

.navigation-fixed-top .navigation-bottom-menu-item:hover a.navigation-bottom-menu-item {
    background-color: transparent;
    color: #fff;
}

.navigation-menu-hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
}

.navigation-menu-hamburger:hover {
    color: #fff;
}

.navigation-menu-hamburger.active {
    color: #fff;
}

.dropdown-menu {
    z-index: 9999;
}

.dropdown.show {
    background-color: #fff;
    color: #333333;
}

.dropdown.show .navigation-bottom-menu-item {
    background-color: #b80000;
    color: #fff;
}

/* Background Reval */

.background-reveal {
    background-color: transparent;
}

.background-reveal .navigation-top-logo .navigation-logo-item {
    color: #fff;
}

.background-reveal .navigation-top-language .navigation-language-item {
    color: #fff;
}

.background-reveal .navigation-top-language .navigation-language-item:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.12);
}

.background-reveal.navigation-fixed-top .navigation-bottom-menu-item.active {
    background-color: inherit;
    color: #fff;
}

.background-reveal.navigation-fixed-top .navigation-bottom-menu-item:hover {
    background-color: transparent;
    color: #fff;
}

.background-reveal.navigation-fixed-top .navigation-bottom-menu-item:hover:after {
    width: 50%;
    height: 4px;
    display: block;
    position: absolute;
    top: 45px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f60c1a;
    content: "";
    -webkit-animation: dude .35s 1 forwards;
    animation: dude .35s 1 forwards;
}

.background-reveal.navigation-fixed-top.bg-fadein .navigation-bottom-menu-item:hover:after {
    width: 50%;
    height: 4px;
    display: block;
    position: absolute;
    top: 38px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    content: "";
    -webkit-animation: dude .35s 1 forwards;
    animation: dude .35s 1 forwards;
}

/* Drop Down */

.navigation-fixed-top .dropdown .dropdown-item {
    margin: 0px;
    position: relative;
    padding: 0 1.5rem;
    line-height: 43px;
    font-size: 1.45rem;

    display: inline-block;
    width: 274px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.phone-mobile {
    display: none;
}

/* Animate Line */

@-webkit-keyframes dude {
    0% {
        width: 0;
    }
    100% {
        width: 50%;
    }
}

@keyframes dude {
    0% {
        width: 0;
    }
    100% {
        width: 50%;
    }
}