.header{
    width: 100%;
    background: #f4f0eb;
    position: relative;
}

.header__content{
    padding: 16px 0 10px;
}

.header__logo{
    display: flex;
    justify-content: center;
    margin-bottom: 23px;
}

.header__logo a img{
    height: 80px;
}

.header__nav-list{
    display: flex;
    justify-content: center;
    gap: 5vw;
}

.header__nav-item a{
    text-align: center;
}

.header__nav-item a p{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #482b20;
    transition: color .3s ease;
}

.header__nav-item a span{
    display: block;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
    color: #B0A39E;
}

@media (hover: hover) and (pointer: fine) {
.header__nav-item:hover a p{
    color: #CF5D2C;
}
}

.header__operate{
    position: absolute;
    top: 20px;
    right: 35px;
    display: flex;
    align-items: center;
    gap: 10px;
}


.language{
    position: relative;
}

.language__select{
    background-color: #CF5D2C;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 20px;
    padding: 10px 20px;
}

.language__select p{
    font-weight: 400;
    font-size: 14px;
}

.singin{
    position: relative;
}

.singin>a{
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background-color: #CF5D2C;
    width: max-content;
    border-radius: 20px;
}

.singin>a span{
    color: #fff;
    font-size: 14px;
}

.singin a svg{
    flex-shrink: 0;
    display: block;
}


.operate__sublist{
    min-width: 100%;
    background-color: #ECE5DF;
    padding: 16px;
    border-radius: 10px;
    position: absolute;
    display: none;
    z-index: 999;
}

.operate__sublist::after{
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-bottom-color: #ECE5DF;
}

.operate__subitem{
    text-align: center;
}

.operate__subitem a{
    font-size: 16px;
    line-height: 2;
    color: #482B20;
}

.operate__subitem a:hover{
    color: #CF5D2C;
}


.singin:hover .operate__sublist--user{
    /* visibility: visible; */
    display: block;
    /* opacity: 1; */
}

.language:hover .operate__sublist--lang{
    /* visibility: visible; */
    display: block;
    /* opacity: 1; */
}



.header__mobile{
    display: none;
    width: max-content;
    background-color: #CF5D2C;
    padding: 4px 5px;
    margin: 0 auto;
}

.header__mobile-btn svg{
    display: block;
    width: 20px;
    height: 20px;
}

.header__mobile-btn--close{
    display: none;
}

@media (max-width:1199px) {
    .header__nav-item a p{
        font-size: 16px;
    }
}

@media (max-width:1024px) {
    header{
        background-image: none;
    }

    .header__mobile{
        display: block;
    }

    .header__nav{
        position: absolute;
        width: 100vw;
        top: 100%;
        left: 0;
        background-color: #422C22;
        height: 0;
        overflow: hidden;
        z-index: 999;
        transition: height .3s ease;
    }

    .header__nav-list{
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .header__nav-item{
        width: 100%;
        padding: 10px 20px;
    }

    .header__nav-item a{
        width: 100%;
    }

    .header__nav-item a p{
         color: #fff;
         font-weight: 400;
    }

    .header__nav-item a span{
        color: #fff;
     }


     .header__nav-item.active{
        background-color: #CF5D2C;
     }

    .header__operate{
        display: none;

    }

}

@media (max-width:767px) {
    .language__select svg:first-child{
        width: 16px;
        height: 16px;
    }

    .language__select svg:last-child{
        width: 12px;
        height: 12px;
    }

    .singin svg{
        width: 16px;
        height: 16px;
    }

    .language__select p{
        font-size: 12px;
    }

}