html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.footer{

    background: rgb(229,230,228);
    background: linear-gradient(60deg, rgba(229,230,228,1) 0%, rgba(229,230,228,1) 20%, rgba(236,237,235,1) 40%, rgba(243,243,242,1) 70%, rgba(31,42,86,0.4) 100%);
    display: flex;
    flex-direction: column;
}

.footer-bottom{
    border-top: 2px solid rgba(31, 42, 86, 0.7);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
}

.footer-sections{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
    margin-top: 70px;
}

.flex-footer{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.footer-section{
    width: 30%;
}

.footer-title{
    color: black;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Rem', sans-serif;
    font-weight: bold;
}

.footer-link{
    color: #3b3b3b;
    font-family: 'Rem', sans-serif;
    display: block;
    margin-top: 10px;
    transition: 0.3s all ease-in-out;
}

.footer-link:hover{
    transition: 0.3s;
    color: rgba(59, 59, 59, 0.7);
}

.copyright{
    margin-top: 20px;
    margin-bottom: 30px;
    font-family: 'Rem', sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

@media (max-width: 1000px) {
    .footer-link{
        font-size: 12px;
    }
}
