﻿.footer {
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
}

    .footer .logos, .footer .copyright {
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        overflow: hidden;
        gap: 10px;
        flex-direction: row-reverse;
    }

    .footer .logos {
        flex-direction: row;
        gap: 5rem;
    }

    .footer .copyright {
        padding-bottom: 1.5rem;
    }

    .footer .logos img {
        width: 250px;
        height: 100%;
    }

    .footer .copyright p {
        margin: 0 !important;
        color: #3335;
        font-family: "Montserrat", regular;
    }

/* Responsive */

@media (max-width: 999px) {
    .footer .logos {
        flex-direction: row;
        gap: 1rem;
    }

        .footer .logos img {
            width: 160px;
        }

    .footer .copyright {
        flex-direction: column-reverse;
        gap: 20px;
        margin-top: 20px;
    }

    .copyright hr {
        display: none;
    }

    .footer .copyright p {
        font-size: 18px;
    }
}

@media (max-width: 555px) {
   
    .footer .copyright p {
        font-size: 13px;
    }
}