@media screen and (min-width: 600px) {
    #menuMobile {
        display: none;
    }
}
/* =======================================

	Menu On

========================================== */
.mobileHeaderTitle {
    font-family: 'catamaran', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.68;
    color: #333;
    position: fixed;
    top: 25px;
    left: 18px;
    z-index: 20;
}
.mobileHeaderTitle.active {
    display: none;
}
.mobileHeaderTitle.hide {
    display: none;
}

.navToggle.active span::after {
    content: "CLOSE";
    cursor: pointer;
}
.navMobile{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    background-color: #D0D0D0;
    padding: 0 18px 10px 18px;
    visibility: hidden;
}
.navMobile.active {
    visibility: visible;
}
.navMobileHeader {
    display: inline-block;
    height: 80px;
    padding-top: 30px;
}
.navMobileHeader a {
    font-family: 'catamaran', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
}
.menuMobileList {
    margin: 30px auto auto 42px;
}
.menuMobileList li {
    font-family: 'catamaran', sans-serif;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.65;
    letter-spacing: 00.05rem;
    margin-bottom: 30px;
    color: #fff;
}
.menuMobileList a:hover {
    color: #FC022A;
}
.menuMobileList li:last-child {
    margin-bottom: 0px;
}
.navLang {
    text-align: end;
    font-family: 'catamaran', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.68;
    letter-spacing: 0rem;
    color: #333;
    position: fixed;
    right: 18px;
    bottom: 25px;
}
.navSiteCopy {
    font-family: 'catamaran', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0;
    color: #333;
    position: fixed;
    bottom: 10px;
    right: 18px;
}
.navToggle {
    font-family: 'catamaran', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.68;
    letter-spacing: 0.1rem;
    color: #333;
    position: fixed;
    top: 25px;
    right: 18px;
    z-index: 20;
}
.navToggle:hover {
    color: #FC022A;
}
/* =======================================

	Menu Off

========================================== */
.navToggle span::after {
    content: "MENU";
    cursor: pointer;
}
.navToggle.hide {
    display: none;
}


