footer{
    display: flex;
    flex-direction: column;
}

.footer-top{
    padding: 80px 120px;
    height: 220px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-top div{
    width: 33%;
    padding: 0 30px;
    height: 100%;
}

.footer-top div:nth-of-type(1){
    text-align: center;
}

.footer-logo{
    max-width: 200px;
}

.footer-top h3{
    padding-bottom:30px ;
}
.footer-top div p{
    padding: 7px 0;
    margin: 5px 0;
}

.footer-navigation li{
    list-style: none;
    padding-bottom: 15px;
    display: block;
}

.footer-navigation a{
    text-decoration: none;
}

.Copyright{
    padding: 0 120px;
    background-color: #7b1c1b;
    font-weight: normal;
    text-align: center;
}
.Copyright span{
    color: #fff;
}
.Copyright a{
    color: #94bcf8;
}

@media (max-width:1050px) {
    .footer-top{
        padding: 40px 30px;
    }
    .footer-top div {
        padding: 0 12px;
    }
}

@media (max-width:890px) {
    .footer-top{
        flex-direction: column;
        align-items: center;
        height: auto;
        margin: auto;
    }
    .footer-top div {
        width: 80%;
        margin-bottom: 20px;
    }
    .footer-top div {
        width: 80%;
        margin-bottom: 20px;
    }
    .Copyright span{
        font-size: 13px;
        padding: 0;
        margin: 10px 15px;
        display: block;
        line-height: 20px;
    }
    .Copyright{
        padding: 0;
    }
}