/* Display a Simple Footer (e. GT Landing / Demo Pages) */
footer{
    width: 100%;
    min-height: 161px;
    background-color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer__container{
    width: var(--mw-content);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

footer .footer__container a .gradtrackerLogo {
    width: 217px;
    cursor: pointer;
}

footer .footer__container span {
    color: var(--white);
    font-family: 'Raleway-Regular';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 20px 0 10px 0;
}

footer .footer__container span a{
    color: var(--blue);
}

/* phones */
@media(max-width: 600px){
    footer{
        min-height: 172px;
    }
    footer .footer__container a .gradtrackerLogo {
        width: 195px;
    }
    footer .footer__container span{
        text-align: center;
    }
}