footer{
    min-height: 30vh;
    background-color: #fafafa;
    justify-content: space-between;
    padding: 0 10vh;
    color: #000;
    box-shadow: 0 -2px 4px #ddd;
}
.footer__container{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2vh 0;
}
.footer__center img{
    height: 10vh;
    
}
.footer__center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}
.footer__center div{
    padding-top: 1vh;
    display: flex;
    margin: auto;
    width: 100%;
    justify-content: space-around;
}
.footer__center i{
    font-size: 40px;
    color: #091779;
    margin: auto;
}
.footer__center i:hover{
    cursor: pointer;
    color: #091679ad;
}
footer h4{
    font-weight: bold
}
.footer__extras{
    color: #222;
    width: 100%;
    height: 8vh;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #bbb;
    align-items: center;
    font-size: 18px;
}
.footer__extras a{
    color: #6E17EB;
}
@media(max-width: 1200px){
    footer{
        padding-bottom: 5vh;
    }
    .footer__container{
        flex-direction: column;
    }
    footer div{
        padding: 3vh 0;
        text-align: center;
    }
    .footer__extras{
        flex-direction: column;
        height: auto;
    }
}