.bg-blue {
    background: #356CA5;
}

.header {
    vertical-align: super;
    display: flex;
    min-height: 10rem;
    max-height: max-content;
}

.title {
    font-size: 3rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    text-align: left;
    margin-top: 2rem;
}

.brand {
    vertical-align: super;
    margin-top: 2rem;
}

.brand_logo {
    vertical-align: center;
    margin-top: 2rem;
    height: 4rem;
    float: right;
}

.max_content {
    height: max-content;
}

.footer {
    min-height: 2rem;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(0, 0, 0);
}

button {
    color: #356CA5;
}

.min-height-input {
    min-height: 100%
}

.card {
    box-shadow: 0 6px 10px rgba(0, 0, 0, .08), 0 0 6px rgba(0, 0, 0, .05);
    transition: .3s transform cubic-bezier(.155, 1.105, .295, 1.12), .3s box-shadow, .3s -webkit-transform cubic-bezier(.155, 1.105, .295, 1.12);
    cursor: pointer;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);
}