.top-bar {
    height: auto;
    min-height: 104px;
}

.top-bar .logo {
    padding: 8px 0;
    overflow: visible;
}

.top-bar .logo .site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 86px;
    text-decoration: none;
}

.top-bar .logo .site-logo img {
    display: block;
    width: 86px;
    height: 86px;
    max-width: none;
    max-height: none;
    object-fit: cover;
    border-radius: 8px;
}

.site-logo-text {
    color: #08233f;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
    white-space: nowrap;
}

.site-logo-text {
    font-size: 28px;
}

.nav-bar .menu-brand {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .top-bar {
        min-height: 92px;
    }

    .top-bar .logo {
        display: grid;
        grid-template-columns: 70px max-content;
        grid-template-rows: auto auto;
        align-items: center;
        justify-content: center;
        column-gap: 12px;
        row-gap: 4px;
        padding: 10px 0;
        text-align: left;
    }

    .top-bar .logo .site-logo {
        display: contents;
    }

    .top-bar .logo .site-logo img {
        grid-column: 1;
        grid-row: 1 / 3;
        width: 70px;
        height: 70px;
    }

    .site-logo-text {
        grid-column: 2;
        grid-row: 1;
        font-size: 24px;
    }

    .top-bar .logo .logo-phone {
        grid-column: 2;
        grid-row: 2;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 0;
        padding: 0;
        color: #08233f;
        background: transparent;
        border: 0;
        border-radius: 0;
        font-size: 15px;
        font-weight: 900;
        line-height: 1;
        text-decoration: none;
    }

    .top-bar .logo .logo-phone:hover,
    .top-bar .logo .logo-phone:focus {
        color: #2f8ecf;
        text-decoration: underline;
    }
}

@media (max-width: 380px) {
    .top-bar .logo {
        grid-template-columns: 62px max-content;
        column-gap: 10px;
    }

    .top-bar .logo .site-logo img {
        width: 62px;
        height: 62px;
    }

    .site-logo-text {
        font-size: 22px;
    }

    .top-bar .logo .logo-phone {
        font-size: 14px;
    }
}

.nav-bar .menu-brand:hover,
.nav-bar .menu-brand:focus {
    color: #7cc7ea;
}
