:root {
    --primary-color: #007BC2;
    --hover-primary-color: #111827;
    --secondary-color: #D9E3E9;
    --default-white: #FFF;
    --text-color: #000;
}

#pull,
#logo2 {
    display: none;
}

.mosaic-top-header, .topheader, #footer {
    ul,
    li {
        list-style: none;
        padding: 0;
        margin: 0;
    }
}

.menu {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.menu a {
    text-decoration: none;
    color: var(--primary-color);
    padding: 15px;
    font-weight: 600;
    font-size: 18px;
}

.menu a:hover {
    color: var(--hover-primary-color);
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: var(--hover-primary-color);
}

#innerheader {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    max-width: 1200px;
    padding: 10px 20px;
    margin: 0 auto;
}

#logo {
    height: 65px;
}

#logo2 {
    display: none;
    height: 65px;
}

.name_mosaic2 #logo2 {
    display: block;
}

#footer {
    padding: 50px;
    margin-top: auto;
    background: #0075aa;
}


@media screen and (max-width: 1140px) {
    #innerheader {
        position: relative;
    }

    .menu,
    .menu-button {
        display: none;
    }

    #pull {
        text-decoration: none;
        display: block;
    }

    #pull:before {
        font-family: "Font Awesome 6 Pro";
        font-size: 25px;
        font-weight: 400;
        content: "\f0c9";
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--primary-color);
    }

    #pull:hover:before {
        color: var(--hover-primary-color);
    }

    .b_menu-open {
        display: block;
        position: absolute;
        left: 0;
        top: 85px;
        z-index: 99;
        background: var(--default-white);
        width: 100%;
    }

    .menu a {
        display: inline-block;
        width: 100%;
    }

    .navigation-is-open::before {
        content: "";
        background: #00000063;
        width: 100%;
        height: 100%;
        top: 155px;
        position: absolute;
        z-index: 99;
    }
}

@media only screen and (min-width: 1px) and (max-width: 665px) {
    #innerheader {
        padding: 10px;
    }

    #innerheader #logo,
    #innerheader #logo2 {
        height: 35px;
    }
}