/* --- MOBILE NAV --- */
.c-hamburger {
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    font-size: 0;
    text-indent: -9999px;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.c-hamburger:focus {
    outline: none;
}

.c-hamburger span {
    display: block;
    position: absolute;
    top: 25px;
    left: 5px;
    right: 5px;
    height: 2px;
    background: white;
}

.c-hamburger span::after,
.c-hamburger span::before {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: $white;
    content: "";
}

.c-hamburger span::before {
    top: -10px;
}

.c-hamburger span::after {
    bottom: -10px;
}

.c-hamburger--htx {
    background-color: transparent;
}

.c-hamburger--htx span {
    transition: background 0s 0.3s;
}

.c-hamburger--htx span::after,
.c-hamburger--htx span::before {
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
    transition-property: top, transform;
}

.c-hamburger--htx span::after {
    transition-property: bottom, transform;
}
/* active state, i.e. menu open */
.c-hamburger--htx.is-active {
    background-color: transparent;
}

.c-hamburger--htx.is-active span {
    background: none;
}

.c-hamburger--htx.is-active span::before {
    top: 0;
    transform: rotate(45deg);
}

.c-hamburger--htx.is-active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.c-hamburger--htx.is-active span::after,
.c-hamburger--htx.is-active span::before {
    transition-delay: 0s, 0.3s;
}

#mobile-nav-toggle {
    position: absolute;
    right: 15px;
}

.mobile-language-select {
    display: inline-block;
    margin-top: 9px;
}

.mobile-language-select > ul {
    margin: 0;
    padding: 2px 5px;
    background-color: transparent;
    border: 2px solid $orange;
    width: 50px !important;
    list-style-type: none;
    position: relative;
    z-index: 5;
}

.mobile-language-select li {
    text-transform: uppercase;
    position: relative;
}

.mobile-language-select ul > li.active-lang {
    display: block;
    color: $white;
    position: relative;
    font-weight: 700;
}

.mobile-language-select ul > li.active-lang::after {
    content: "\f107";
    right: 2px;
    position: absolute;
    font-family: 'FontAwesome';
    top: 0;
}

.mobile-language-select ul > li.active-lang > ul {
    display: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 24px;
    left: -7px;
    width: 138%;
}

.mobile-language-select ul > li.active-lang > ul > li:first-of-type > a {
    padding-top: 10px !important;
}

.mobile-language-select ul > li.active-lang > ul > li:last-of-type > a {
    padding-bottom: 10px !important;
}

.mobile-language-select ul > li.active-lang > ul > li > a {
    position: relative;
    display: block;
    font-size: 14px;
    color: $white;
    font-weight: 700;
    padding: 2.5px 5px;
}

.mobile-language-select ul > li.active-lang > ul > li > a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: $orange;
    z-index: -1;
}

.mobile-language-select ul > li.active-lang:hover > ul {
    display: block;
}

.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 8;
    text-align: center;
    transition: opacity ease 0.5s;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-wrapper::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: #031225;
    opacity: 0.98;
}

.mobile-menu-wrapper .inner {
    position: fixed;
    top: 100px;
    width: 100%;
}

.mobile-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-menu > li {
    display: block;
}

.mobile-menu > li > a {
    display: block;
    font-size: 28px;
    color: $white;
    text-transform: uppercase;
    font-weight: bold;
    padding: 3px 0;
}
@media screen and (max-width:600px) {
    .mobile-menu > li > a {
        font-size: 22px;
        letter-spacing: 0.06em;
    }
}
