.header {
    background: #ffffff;
    border-bottom: 1px solid #e6ebf0;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 30px;

    display: grid;
    grid-template-columns: 380px 1fr 180px;
    align-items: center;
    column-gap: 30px;
}

.logo {
    justify-self: start;
    line-height: 0;
}

.logo-image {
    display: block;
    width: 380px;
    height: auto;
}

.service-area {
    justify-self: center;

    text-align: center;

    color: #64748b;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .2px;
    line-height: 1.3;

    white-space: nowrap;
}

.client-login {
    justify-self: end;

    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color .2s ease;
}

.client-login:hover {
    color: #2f80ed;
}

.footer {
    padding: 38px 20px;
    background: #1d4f91;
    color: #ffffff;
    text-align: center;
    line-height: 1.8;
}

.footer strong {
    font-size: 20px;
}

@media (max-width: 900px) {

    .header .container {
        grid-template-columns: 1fr;
        row-gap: 12px;
        justify-items: center;
        padding: 16px 20px;
    }

    .logo {
        justify-self: center;
    }

    .logo-image {
        width: 300px;
    }

    .service-area {
        white-space: normal;
        font-size: 16px;
    }

    .client-login {
        justify-self: center;
        font-size: 15px;
    }

}