footer {
    background-color: #031a22;
    color: #fff;
    padding: 40px 0;
}

footer nav {
    width: 60%;
    font-weight: 700;
    font-size: 2em;
}

footer nav a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

footer nav a:hover {
    color: #f1cc00;
}

footer p {
    font-size: 1.8em;
    line-height: 1.4;
}

footer p:first-child {
    width: 625px;
}

footer p:last-child {
    text-align: right;
}

.footer__bottom {
    margin-top: 40px;
}

footer p > a {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-decoration: underline;
    color: #fff;
}

footer p > a:hover {
    color: #f1cc00;
}
@media (max-width: 790px) {
    footer {
        text-align: center;
    }
    footer .flex{
        display: block;
    }
    .footer__logo{
        width: 100%;
    }
    footer nav{
        width: 100%;
        margin-top: 2em;
    }
    footer nav a{
        display: block;
        padding: 1em;
    }
    footer p,footer p:first-child,footer p:last-child{
        width: 100%;
        padding-bottom: 1.5em;
        text-align: center;
    }
}