.header-wrapper {
    content-visibility: visible;
}

#header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: var(--bg-grey-black);
    position: relative;
    z-index: 101;
}

#header a,
#header a:hover {
    text-decoration: none;
}

.header-logo {
    display: inline-block;
    position: relative;
    margin-left: 30px;
}

.header-logo a,
.header-logo a:focus,
.header-logo a:hover {
    border: none;
}

.header-logo img {
    display: block;
    width: 135px;
    height: 32px;
}

.header-slogan {
    color: var(--text-color-slogan);
    font-weight: bold;
    font-size: var(--text-small-size);
    line-height: var(--text-small-size);
    height: var(--text-small-size);
    margin: calc(32px - var(--text-small-size)) 0 0 20px;
}

@media only screen and (max-width: 1024px) {
    .header-logo {
        margin-left: 20px;
    }
}

@media only screen and (max-width: 1240px) and (min-width: 1025px),
only screen and (max-width: 610px) {
    .header-slogan {display: none;}
}