.header {
    padding-top: 24px;
}

.logo-img {
    width: 181px;
}

.logo-img img {
    width: 100%;
    height: auto;
}

.header .wrapper {
    align-items: end;
    gap: 10px;
}

.header-menu {
    gap: 24px;
    align-items: center;
}

.header-menu-element {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.header-burger {
    display: none;
    position: relative;
    width: 32px;
    height: 12px;
    z-index: 99;
    cursor: pointer;
}

.header-burger>div {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 100px;
    position: absolute;
    transition: all 0.3s;
}

.header-burger>div:first-child {
    top: 0;
    left: 0;
}

.header-burger>div:last-child {
    bottom: 0;
    left: 0;
}

.header-burger.active>div:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.header-burger.active>div:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.header-mobile-menu {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: -100%;
    padding: 100px 16px 30px 16px;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #2b2b2b;
    z-index: 2;
}

.header-mobile-menu a {
    width: fit-content;
}

.header-mobile-menu.active {
    top: 0;
}

@media(max-width: 1240px) {
    .logo-img {
        width: 160px;
    }

    .header-menu {
        gap: 15px;
        align-items: center;
    }

    .header-menu-element {
        font-size: 16px;
        line-height: 22px;
    }

}

@media(max-width: 1000px) {
    .logo-img {
        width: 140px;
    }

    .header-menu {
        gap: 10px;
    }

    .header-menu-element {
        font-size: 14px;
        line-height: 20px;
    }
}

@media(max-width: 768px) {
    .logo-img {
        width: 136px;
    }

    .header .wrapper {
        align-items: center;
    }

    .header-menu {
        display: none;
    }

    .header-burger {
        display: flex;
    }

    .header-mobile-menu {
        display: flex;
    }

    .header-menu-element {
        font-size: 20px;
        line-height: 26px;
    }
    header{
        position: sticky;
        top: 0;
        padding-bottom: 20px;
        background-color: #000;
        z-index: 999;
    }
}