header{
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    padding: 24px;
    background-color: #00000080;
    border-radius: 20px;
    z-index: 1;
    .left, .right, ul{
        display: flex;
    }
    .left{
        gap: 40px;
        ul{
            align-items: center;
            list-style: none;
            gap: 40px;
            margin: 0;
            padding: 0;
            font-size: 16px;
            li{
                font-weight: 500;
                line-height: 120%;
                a{
                    color: white;
                }
            }
        }
    }
    .right{
        display: flex;
        gap: 40px;
        align-items: center;
        .icons{
            a{
                width: 24px;
                height: 24px;
            }
            display: flex;
            gap: 10px;
            img{
                width: 24px;
                height: 24px;
            }
        }
    }
}
.menu{
    svg{
        width: 234px;
        height: 30px;
    }
}

@media(max-width: 784px){
    header{
        padding: 10px 20px;
        border-radius: 10px;
        .left {
            ul{
                display: none;
            }
            a{
                .menu{
                    svg {
                        width: 156px;
                        height: 20px;}
                }
            }
        }
        .right{
            a, .icons{
                display: none;
            }
        }
    }
}