header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height .3s;
    z-index: 98;
}

nav {
    width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 3.3rem;
}

nav ul li a {
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
    font-weight: 300;
    transition: all .2s;
}

nav ul li:hover a {
    color: #fff;
}

header.Fixed nav ul li a {
    color: rgba(255, 255, 255, .3)
}

.actives {
    color: #fff !important;
}

.Fixed {
    position: fixed;
    top: 0;
    height: 85px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, .05);
    box-shadow: 0 3px 15px rgba(0, 0, 0, .15);
}

.logo {
    width: 140px;
    padding-top: 4px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navBtn {
    color: #fff;
    padding: 13px 22px;
    font-size: 16px;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #fff;
    cursor: pointer;
    z-index: 90;
}

.langBtn {
    position: relative;
    gap: 7px;
}

.morelang {
    position: absolute;
    top: -1px;
    width: 102%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    background-color: #101010;
}

.morelang a {
    width: 105%;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.morelang a:first-child {
    border-radius: 10px 10px 0 0;
}
.morelang a:last-child {
    padding-top: 0;
    border-radius: 0 0 10px 10px;
}

.shopBtn {
    color: #000;
    font-weight: 700;
    background-color: #fff;
    box-shadow: 0 0 6px #fff;
    border: none;
}


/*==================================================*/
@media (max-width: 1350px) {
    nav {
        width: 100%;
        padding: 0 20px;
    }
}


@media (max-width: 1150px) {
    nav ul {
        display: none;
    }
}


@media (max-width: 550px) {
    header {
        height: 85px;
        transition: all .3s;
    }

    .Fixed {
        height: 65px;
        background-color: rgba(0, 0, 0, .1);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        box-shadow: none;
    }
    
    .logo {
        width: 100px;
    }

    .nav-right {
        gap: 10px;
    }
    
    .navBtn {
        padding: 7px 13px;
        font-size: 13px;
        border-radius: 6px;
    }

    .morelang a {
        font-size: 13px;
    }

    .globe {
        width: 13px;
    }

    .shopBtn {
        box-shadow: none;
    }
}