.topnav {
    overflow: hidden;
    background-color: #00558c;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1;
}

.logo, .iconeMenu{
    margin-right: 50px;
}

.navItem {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    margin: 0px 10px;
    text-decoration: none;
    font-size: 14px;
}

.navItem:hover {
    text-decoration: underline;
    color: #f2f2f2;
}

.remove-hover{
    pointer-events: none;
}

.navItem.active {
    background-color: #19BAE0;
    padding: 5px 10px;
    color: white;
    text-decoration: none;
}

.topnav .icon {
    display: none;
}

.blue-button{
    background-color: #00BCE1;
    border: none;
    padding: 5px 15px;
    border-radius: 3px;
    color: white;
    margin-left: 20px;
}

.logo{
    width: 90%;
}

@media screen and (max-width: 1310px) {
    .topnav {
        justify-content: start;
    }

    .navItem:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
        position: absolute;
        right: 0;
        top: 35px;
    }

    .topnav button {
        float: right;
        display: block;
        position: absolute;
        right: 90px;
        top: 30px;
    }

    .topnav.responsive {
        position: relative;
        display: block;
    }

    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 35px;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }

    .logo{
        width: 60%;
    }
}

@media (max-width: 550px) {
    .topnav button {
        font-size: 15px;
    }

    .topnav button img {
        width: 17px;
    }

    .logo{
        width: 60%;
    }
}

@media (max-width: 425px) {
    .topnav button {
        font-size: 13px;
    }

    .topnav button img {
        width: 15px;
    }

    .logo{
        width: 60%;
    }
}
