

/* Header Container */
#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
}

/* Language Selector */
.header-lang {
    position: absolute;
    left: 62px;
    top: 52px;
}

.header-lang:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -1px;
    background-color: #232323;
    border-radius: 100%;
    pointer-events: none;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.header-lang select {
    font-size: 16px;
    letter-spacing: .05em;
    color: #232323;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding-left: 12px;
}

/* Navigation */
.gnav {
    position: absolute;
    right: 154px;
    top: 112px;
    opacity: 0;
    transition: all .2s cubic-bezier(.19, 1, .22, 1);
}

.-showmenu .gnav {
    opacity: 1;
    transition: none;
}

.gnav a {
    display: inline-block;
    padding: 0px 10px;
    letter-spacing: .03em;
    line-height: 1.45;
    white-space: nowrap;
    font-size: 36px;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    transition: color .8s cubic-bezier(.19, 1, .22, 1);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .gnav a:hover {
        color: #CAC3BC;
        transition: color .4s cubic-bezier(.19, 1, .22, 1);
    }
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
    .header-lang select {
        font-size: 4.26667vw;
    }
}



