header {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
    z-index: 98;
}

nav {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 140px;
}

.flag {
    height: 30px;
}


/*==================================================*/
@media (min-width: 2250px) {
    nav {
        width: 1400px;
    }
}


@media (max-width: 1650px) {
    header {
        height: 100px;
    }
}


@media (max-width: 1250px) {
    nav {
        width: 100%;
        padding: 0 20px;
    }

    .logo {
        width: 120px;
    }
}


@media (max-width: 550px) {
    .flag {
        height: 24px;
    }
}