footer{
    min-height: 200px;
    display: flex;
    flex-direction: column;
}
footer .top{
    flex: 50%;
    background-image: url(../img/footer-shading-desktop.png);
}
footer .top ul{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0px 200px;
}
footer .top ul li{
    list-style: none;
}
footer .top ul li a{
    text-decoration: none;
    color: #ededed;
    padding: 10px;
    text-transform: uppercase;
    transition: all .2s ease-out;
}
footer .top ul li a:hover{
    color: #fcac00;
}
footer .top ul li a img{
    width: 100%;
    height: 70px;
    object-fit: cover;
}
footer .bottom{
    background-color: #ededed;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer .bottom h3{
    height: 30px;
    text-align: center;
    border-bottom: 1px solid rgb(202, 202, 202);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    font-size: 14px;
    font-weight: 400;
}
footer .bottom ul{
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}
footer .bottom ul li{
    list-style: none;
    margin-right: 30px;
}
footer .bottom ul li:not(:first-child){
    margin-left: 30px;
}
footer .bottom ul li a{
    text-decoration: none;
    color: #5c1229;
    transition: all .2s ease-out;
}
footer .bottom ul li a:hover{
    color: #941e43;
}
footer .bottom ul li a i{
    font-size: 40px;
}
