#footer-wrapper {
    width: 100%;
    background-color: #1f2227;
    color: white;
    height: 100px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 0;
    margin: 0;

    position: fixed;
    bottom: 0px;
    left: 0px;
}

#footer-wrapper > div > div {
    text-align: center;
}

.description {
    height: 100px;
    line-height: 33px;
    margin: auto;
}

.footer-link {
    margin: auto;
    height: 100px;
    line-height: 100px;
}

.footer-link > a {
    color: white;
    text-decoration: none;
    transition: all 250ms;
    padding: 15px;
    border-radius: 15px;
    border: 3px solid white;
}

.footer-link > a:hover {
    background-color: white;
    color: #1f2227;
}

@media (orientation: portrait) {
    #footer-wrapper > .row > .col-3 {
        display: none;
        width: 0%;
    }
}

@media (max-width: 750px) {
    #footer-wrapper > .row > .col-3 {
        display: none;
        width: 0%;
    }

    #footer-wrapper > .row > .col-6 {
        width: 100%;
    }
}