header {
    background: #000;
}

.langs {
    display: flex;
    align-items: center;
    gap: 16px;
}

.langs  a {
    font-size: 12px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 31px 0;
    gap: 20px;
    height: 100px;
}

.header__nav-list {
    display: flex;
    align-items: center;
    color: white;
}

.header__nav-list li {
    margin-right: 40px;
}

.header__nav-list li.btn {
    margin-left: 40px;
}

.header__nav-link {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    font-feature-settings: 'liga' off;
    color: #FFFFFF;
}

.header__nav-link.active {
    color: #00C050;
}

.header__btn {
    padding: 12px 25px;
    background: #FFFFFF;
    text-align: center;
    text-transform: capitalize;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    font-feature-settings: 'liga' off;
    color: #000000;
    cursor: pointer;
}

.burger {
    display: none;
}

header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10000;
}

@media screen and (max-width: 991px) {
    .header__nav-list li {
        margin-right: 20px;
    }

    .header__nav-list li:last-child {
        margin-left: 0;
    }

    .header__nav-link,
    .header__btn {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .header__inner {
        padding: 31px 0;
        height: 90px;
    }

    .burger {
        display: block;
        width: 32px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }

    .burger span {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 3px;
        position: absolute;
        left: 50%;
        top: 50%;
        background: #fff;
        translate: -50% -50%;
        content: '';
    }
    .burger:before {
        display: block;
        content: '';
        width: 22px;
        height: 2px;
        border-radius: 3px;
        position: absolute;
        left: 50%;
        top: 0;
        background: #fff;
        translate: -50% 0;
    }
    .burger:after {
        display: block;
        content: '';
        width: 22px;
        height: 2px;
        border-radius: 3px;
        position: absolute;
        left: 50%;
        bottom: 0;
        background: #fff;
        translate: -50% 0;
    }
    
    .header__item-mobile {
        display: block;
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        transform: translateY(100%) translateX(100%);
        background: #000;
        position: absolute;
        min-height: calc(100vh - 90px);
        transition: transform 0.2s ease;
    }

    .header__item-mobile.active {
        transform: translateY(100%) translateX(0);
    }

    .header__nav-list {
        width: calc(100% - 40px);
        margin-inline: auto;
        flex-direction: column;
        padding-top: 42px;
        gap: 32px;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .header__nav-list li {
        margin-right: 0;
    }

    .header__nav-list li.btn{
        margin-top: 30px;
        margin-left: 0;
    }

    .btn {
        order: 2;
    }

    .header__nav-link {
        font-weight: 400;
    }

    .langs {
        width: 100%;
        order: 1;
        border-top: 1px solid #454545;
        padding-top: 25px;
    }

    .langs  a {
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
    }
}