footer{
    position: relative;
    width: 100%;
    height: 80px;
}
#footer-wrapper{
    position: absolute;
    transform: translate(-50%, 0%);
    left: 50%;
    top: 0%;
    width: 90%;
    height: 60px;
    max-width: 1200px;
    background-color: #282a2c;
    border-radius: 5px;
}
#footer-wrapper *{
    color: white;
    font-weight: 300;
    font-size: 1em;
}
#footerMenuWrapper{
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 25px;
}

#footerMenuWrapper  a{
    margin: 0 25px 0;
}
#footer-privacy-policy{
    position: absolute;
    transform: translate(0,-50%);
    right: 50px;
    top: 50%;
}

@media screen and (max-width:900px) {
    footer{
        height: 120px;
    }
    #footer-wrapper{
        height: 100px;
    }
    #footerMenuWrapper  a{
        margin: 0 20px 0;
    }
    #footerMenuWrapper{
        position: relative;
        display: flex;
        height: 50%;
        align-items: center;
        padding: 0 0px;
    }
    #footer-privacy-policy{
        position: absolute;
        transform: translate(0,-50%);
        right: unset;
        left: 20px;
        top: 75px;
    }
}