header {
    display: flex;
    position: fixed;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 60px;
    top: 0;
    z-index: 2;
    justify-content: center;
    background: var(--bg);
    border-bottom: 1px solid var(--bord);
}

.nmd-h-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    width: 100%;
    position: relative;
    padding: 10px;
}

.nmd-h-logo {
    text-align: center;
}

.nmd-h-first {
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.nmd-h-cont {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.nmd-h-cont img {
    height: 30px;
    width: auto;
}

.nmd-h-logo a{
    font-size: 24px;
    font-weight: 800;
}

.nmd-h-logo img {
    height: 45px;
    width: auto;
}

.nmd-h-cont a {
    font-size: 14px;
    font-weight: 400;
}

.nmd-h-map {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 30px;
}

.nmd-h-map a {
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    line-height: 100%;
}

.mdp-h-navigation {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

@media (max-width: 1400px) {
    .nmd-h-map {
        gap: 20px;
    }
    
    .nmd-h-map a {
        font-size: 24px;
    }
}

@media (max-width: 1040px) {
    .nmd-h-map {
        display: none;
    }
    
    .nmd-h-logo img {
        height: 80px;
    }
}

@media (max-width: 768px) {
    
    header {
        height: 80px;
    }        
    
    .nmd-h-main {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .nmd-h-first {
        justify-content: center;
        gap: 0px;
    }
    
    .nmd-h-logo {
        margin: 0;
    }
    
    .nmd-h-logo img {
        height: 60px;
    }
    
    .nmd-h-logo a {
        font-size: 28px;
    }
    
    .nmd-h-cont {
        gap: 10px;
    }
    
    .model-photo.working img {
        width: 160px;
        height: 200px;
    }
}