.header {
    padding: 17px 0;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #444444;
    margin-bottom: 10px;

    .container {
        display: flex;
        align-items: center;
    }
}

.logo {
    display: block;
    width: 330px;
    height: 52px;
    background: url("../images/logo.svg") left center no-repeat;
    background-size: contain;
    text-indent: -9999px;
    flex-shrink: 0;
}

.header-phone {
    color: #666666;
    font-size: 22px;
    line-height: 26px;
    text-decoration: none;
    margin-top: 8px;
    margin-left: auto;
    white-space: nowrap;
    letter-spacing: 0.075em;
    font-family: var(--main-font-family-3);
}

.header-email {
    display: none;
}

.brandBar {
    background-color: #3f3f3f;
    min-height: 84px;
    width: 100%;
    padding: 10px 0;

    .container {
        display: flex;
        align-items: center;
        padding: 0 46px 0 19px;
    }
}

.brandBar-logo {
    display: block;
    width: 220px;
    min-height: 64px;
    margin-right: 24px;
    flex-shrink: 0;
    align-self: stretch;
    position: relative;
}

.brandBar-logoImage {
    display: block;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.brandBar-text {
    margin: 0;
    color: white;
    font-weight: 300;
    padding: 10px 0;
}

@media (max-width: 767px) {
    .logo {
        width: 202px;
        height: 34px;
    }

    .header-phone {
        display: block;
        width: 17px;
        height: 20px;
        font-size: 0;
        margin: 0 0 0 auto;
        background: url("../images/icon--phone.svg") center center no-repeat;
    }

    .header-email {
        display: block;
        width: 20px;
        height: 20px;
        margin-left: 17px;
        font-size: 0;
        background: url("../images/icon--email.svg") center center no-repeat;
    }

    .brandBar {
        padding: 11px 0 17px 0;

        .container {
            flex-direction: column;
            align-items: center;
            padding: 0 20px;
        }
    }

    .brandBar-logo {
        margin: auto;
    }

    .brandBar-logoImage {
        max-height: 120px;
        height: auto;
        width: auto;
        min-height: unset;
        min-width: unset;
        max-width: 100%;
        position: relative;
        margin: auto;
    }

    .brandBar-text {
        text-align: center;
    }
}