header {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        color: var(--text);
        background: var(--block);
        z-index: 2;
    }
    
    .h-body {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 1160px;
        width: 100%;
        margin: 0 auto;
        padding: 32px;
    }
    
    .h-logo a{
        font-size: 24px;
        font-weight: bold;
        margin: 0;
    }
    
    .h-navigation {
        display: flex;
        gap: 48px;
        font-size: 14px;
    }
    
    .h-contacts {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 24px
    }
    
    .h-contact img {
        height: 32px;
        width: auto;
    }
    
    @media (max-width: 1200px) {
        .h-body {
            width: 90%;
            margin: 0 auto;
        }
        
        .h-navigation {
            display: none;
        }
    }
    
    @media (max-width: 768px) {
        
        .h-body {
            padding: 10px;
        }
        
        .h-logo {
            max-width: 200px;
        }
        
        .h-navigation {
            display: none;
        }
        
        .h-contacts {
            flex-direction: row;
            gap: 10px;
        }
        
        .h-logo p {
            margin: 10px 0;
            max-width: 100px;
            font-size: 28px;
        }
    }