html, body {
    height: 100%;
    margin: 0;

}

body {

    display: flex;
    flex-direction: column;
    font-family: Calibre, sans-serif;
}

header {
    min-height: 200px;
    position: relative;
}

.logo-phi {
    top: 100px;
    max-width: 220px;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


.lead {
    font-weight: 600 !important;
    line-height: 34px !important;
    font-size: calc(1.2rem + 1.2vw) !important;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #226795;
}

main {
    min-height: 50vh;
}

footer {
    background-color: #E6E6E6;
    margin-top: auto;
    padding: 25px 0;
    color: #333;
    border-top: 1px solid #ddd;
}

footer .row > div {

}

footer a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;

}

footer p {
    font-size: 1rem;
}

p strong {
    margin-bottom: 15px;
    display: inline-block;
}

strong {
    color: #226795;
    font-weight: 500 !important;
    font-size: 1.1rem;
}

@media (max-width: 400px) {
    .lead {
        font-size: 1.4rem !important;
        line-height: 28px !important;
    }

}

@media (max-width: 550px) {
    .row {
        margin-left: 25px !important;
    }
}


