.footer-bottom {
    background: #0c0c0c;
    padding: 25px 0;
    font-size: 13px;
    color: #777;
    width: 100%;
}

.footer-bottom .container {
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 50px;
    column-gap: 15px;
}

.footer-bottom .facebook i {
    color: #9e9e9e;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px;
}

.footer-bottom .facebook a:hover {
    text-decoration: none;
}

.footer-bottom .facebook i:hover {
    background: #f0f2f5;
    color: #0866ff;
    border-radius: 50%;
    text-decoration: none;
    filter: none;
}

.footer-bottom .credits {
    display: flex;
    column-gap: 15px;
}

.footer-bottom .credits .item {
    border-left: 1px solid #9e9e9e;
    padding-left: 15px;
}

.footer-bottom .credits .item:first-child {
    border-left: 0;
    padding-left: 0;
}

.footer-bottom .by a {
    color: #9e9e9e;
}

.footer-bottom .by a:hover {
    text-decoration: none;
}

@media (max-width: 580px) {
    .footer-bottom .container {
        flex-direction: column;
    }

    .footer-bottom .credits {
        flex-direction: column;
    }

    .footer-bottom .credits .item {
        border-left: 0;
        padding: 15px 0 0;
        text-align: center;
    }
}