/*! Place your custom styles here */
.footers {
    /* text-align: center; */
    font-size: 11px; 
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 3px;
}
@media (max-width: 768px) {
    .footers {
        text-align: center;
        font-size: 11px;
        display: flex;
        flex-wrap: wrap;
        align-content: flex-end;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: row;
    }
}