@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

#main-footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0;
    font-family: 'Roboto', sans-serif;
}

#footer-widgets {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-widget {
    width: 45%;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.footer-widget ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-widget ul li a:hover {
    color: #ccc;
}

#footer-bottom {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}

#footer-info {
    color: #fff;
    font-size: 14px;
    display: inline-block;
}

.footer-nav {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    display: inline-block;
    margin: 0 10px;
}

.footer-nav li a {
    color: #fff;
    text-decoration: none;
}

.footer-nav li a:hover {
    color: #ccc;
}

@media (max-width: 600px) {
    #footer-widgets {
        flex-direction: column;
    }

    .footer-widget {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-widget ul {
        flex-direction: column;
    }

    .footer-widget ul li {
        margin-bottom: 10px;
    }

    .footer-nav li {
        display: block;
        margin: 10px 0;
    }
}
