
/************************************** HEADER **************************************/

header {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100px;
    background: rgb(0, 164, 189);
    z-index: 99;
}

header .logo-left {
    background: url('/assets/images/logo-left.png');
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    height: 100px;
    width: 298px;
    cursor: pointer;
}

header .menu {
   flex-grow:1;
   text-align:center;
}

header .logo-right {
    background: url('/assets/images/logo-right.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    height: 100px;
    width: 300px;
}


@media screen and (max-width: 1023px) {
    header {
        flex-direction:column;
        height: auto;
        background: rgb(0, 164, 189);
        z-index: 99;
    }

    header .menu {
        width:100%;
    }

}


@media screen and (max-width: 1260px) {
    header .logo-right {
        display: none
    }
}


