/*================ FOOTER ===================*/

footer {
    height: 150px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: var(--gradient-drk);
    padding: 0 15%;
}

.footer-left {
    width: 50%;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-right {
    width: 50%;
    height: 150px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.footer-links {
    margin-top: 20px;
    margin-bottom: 5px;
}

.footer-links a {
    color: var(--gray-md);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: .9em;
}

.footer-links a:hover {
    color: var(--blue-lt);
}

.footer-links span {
    color: var(--gray-md);
    font-family: 'Lato', sans-serif;
    margin: 2px;
}

.footer-text p {
    color: var(--gray-md);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: .9em;
}





/*Mobile Footer*/


@media (max-width: 992px){
    .footer-left, .footer-right {
        width: 100%;
    }

    .footer-right {
        margin-top: -60px;
    }

    footer {
        height: 300px;
        padding: 20px 0;
    }

    footer .logo img {
        width: 170px;
    }

    .footer-links a, .footer-text p {
        font-size: .8em;
    }

    .footer-left .footer-links a {
        font-size: .9em;
    }
  }