.header-container{
    display: flex;
    align-items: center;
    width: 1024px;
    margin: 0px 20px;
}

.logo-img{
    background-image: url('/static/css/pic/fav.svg');
    flex: 0 0 30px;
    background-size: 21px;
    height: 21px;
    background-repeat: no-repeat;
}

.logo{
    display: block;
    background-image: url(/static/css/pic/logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 175px;
    height: 13px;
    flex: 1 0 auto;
}

.subscribe{
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.sub-text{
    font-size: 11px;
    color: #555555;
}

.sub-logo{
    background-image: url('/static/css/pic/telegram.svg');
    height: 22px;
    width: 22px;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 6px;
}




.top-menu{
    /*margin-top: 45px;*/
    /*background-color: white;*/
    /*border-bottom: 1px solid #D9D9D9;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 33px;
    padding: 0px 14px;
    display: none;
}

.top-menu a{
    color: #000000;
    text-decoration: none;
    font-size: 13px;
}

@media (max-width: 768px){
    .top-menu{
        display: flex;
    }

    .header-container{
        margin: 0 14px 0 14px;
    }
}