footer{
    background-color: var(--blue);
    padding: 4.6rem 0 2.9rem 0;
}
footer ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3.75rem;
    padding-left: 0;
}
footer ul li{
    list-style-type: none;
    color: var(--white);
}
footer ul li:not(:last-child){
    margin-right:4rem;
}
footer hr{
    color: #3A5785;
}
footer p,footer a{
    font-size: 1.7rem;
    color: var(--white);
    text-align: center;
}
footer a:hover{
    transform: translate(0px, -1px);
}
footer .description{
    font-size: 1.4rem;
    line-height: 2;
    font-weight: 400;
    color: var(--white);
    max-width: 90.6rem;
    text-align: center;
    margin: 3.15rem auto 3.5rem auto;
}
@media screen and (max-width: 767px) {
    footer{
        padding-top: 2.9rem;
    }
    footer ul{
        flex-direction: column;
        margin-bottom: 2.9rem;
    }
    footer ul li{
        text-align: center;
        font-size: 1.7rem;
    }
    footer ul li:not(:last-child){
        margin-bottom: 2rem;
        margin-right: 0rem;
    }
    footer .description{
        margin: 2.9rem 0;
    }
}