footer{
    background-color: #183444;
    color: #fff;
    padding: 4rem 1rem;
    position: relative;
    /* bottom: 0; */
    width: 100%;
    margin-top: auto;
    /* ✅ Automatically positions footer */
}
footer a{
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover{
    color: #cccccc;
}
footer .container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}
footer .footer-main{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}
footer .brand_footer{
    margin-bottom: 0rem;
}
footer .footer-column{
    /* flex-basis: 200px;
    flex-grow: 1; */
    margin-right: 2rem;
}
footer .footer-column a{
    font-size: .8rem;
    font-weight: 400;
}
footer .footer-heading{
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .8rem;
    margin-top: 0px;
}
footer .footer-link{
    display: block;
    width: max-content;
    padding-bottom: 5px;
    padding-right:0px;
    padding-left: 0px;
}
footer .footer-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
}
footer .copyright{
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .footer-social{
    font-size: 25px;
    margin-left: .5rem;
}
footer .footer-social:first-child {
    margin-left: 0px;
}
footer .footer-column-main{
    display: flex;
}
/* Mobile menu */
@media all and (max-width: 1230px){
    footer .footer-heading{
        font-size: .8rem;
    }
    footer .footer-column-main{
        display: flex;
        margin-bottom: 2rem;
        flex: 1 1 100%;
        max-width: 100%;
        order: 1;
        align-items: stretch;
        align-content: stretch;
        justify-content: flex-end;
    }
    footer .footer-column{
        flex: 1 1 33.33%;
        max-width: 33.33%;
    }
    footer #one{
        flex: 1 1 100%;
        max-width: 100%;
        order: 2;
        margin-bottom: 2rem;
    }
    footer .footer-main{
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        flex: 1 0 auto;
        width: 100%;
    }
    footer .footer-bottom{
        flex-wrap: wrap;
    }
}
@media all and (max-width: 500px){
    footer .container{
        padding: 0px !important;
    }
    footer .footer-column{
        margin-right: 1rem !important;
    }
    footer #partners_footer {
        display: inline;
    }
}