﻿.footer {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 auto;
}

    .footer .FooterRow {
        display: flex;
        width: 90%;
        justify-content: space-between;
        max-width: 960px;
    }

        .footer .FooterRow:first-of-type {
            margin-bottom: 15px;
        }

        .footer .FooterRow .LogoColumn {
            width: 50%;
        }

        .footer .FooterRow .NavigationColumn {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            width: 40%;
        }

    .footer h4 {
        font-weight: bold;
        font-size: 0.9em;
    }

    .footer .FooterRow .NavigationColumn ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
        margin-top: 15px;
        font-size: 0.8em;
    }

        .footer .FooterRow .NavigationColumn ul li {
            list-style: none;
            background: none;
            padding: 0px;
            margin: 0px;
            margin-bottom: 15px;
        }

            .footer .FooterRow .NavigationColumn ul li i {
                font-size: 18px;
            }

    .footer .FooterRow.small {
        font-size: 0.7em;
    }

@media (max-width:640px) {
    .footer .FooterRow {
        width:100%;
        max-width:100%;
        flex-direction:column;
        align-items:center;
        justify-content:center;
    }    

    .footer .FooterRow .NavigationColumn {
        align-items:center;
        text-align:center;
        margin-top:15px;
    }

    .footer .FooterRow.small div {
        margin-bottom:10px;
    }

    .footer .OperatedColumn {
        order:1;
    }
    .footer .GeneralLinksColumn {
        order:0;
        font-size:1.15em;
    }
    .footer .CopyrightColumn {
        order:2;
    }
}
