.footer{
    width: 100%;
    /* height: 100px; */
    padding: 0 0 30px 0;
    background-color: var(--darkWhite2);
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    align-items: center;
    overflow: hidden;
}

.footer img{
    width: 50px;
    max-height: 50px;
}

.footer-text{
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
}

.footer-img{
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-img img{
    width: 60px;
    height: 60px;
}

@media screen and (max-width:600px) {
    .footer{
        padding: 0 0 25px 0;
        /* height: 80px; */
    }
    .footer-img img{
        width: 50px;
        height: 50px;
    }
}