#footer{
    border-top: 1px solid #efefef;
    padding: 80px 0;
}
#footer .footer_container{
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    padding: 20px 40px;
    margin: 0 auto;
}
#footer .footer_container .footer_info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#footer .footer_container .footer_info .developed_by{
    font-size: 16px;
    color: #636363;
}
#footer .footer_container .footer_info .developed_by a{
    text-decoration: underline;
}
#footer .footer_container .footer_nav{
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
#footer .footer_container .footer_nav ul{
    padding: 0;
    margin: 0;
}
#footer .footer_container .footer_nav ul li{
    list-style: none;
    margin: 20px 0;
}
@media (max-width: 546px) {
    #footer .footer_container{
        flex-direction: column-reverse;
        gap: 50px;
    }
    #footer .footer_container .footer_info{
        gap: 40px
    }
}