.footer{
    margin-top: 0px;
    display: flex;
    /*background-color: var(--footer-background-white);/**/
    background-color: var(--products-background);
    padding: 20px;
}

.footerContent{
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 50%;
    /*border: red 1px solid;*/
    margin: auto;
    color: var(--text-white);
    font-size: 14px;
    background-color: var(--products-background);
    border-radius: 25px;
}

.sideToSide{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.footerStoreLogo img{
    width: 200px;
    object-fit: cover;
}

.footerStoreRedirect{
    display: flex;
    width: 100%;
    margin-top: 10px;
    text-decoration: none;
}

.footerStoreRedirect>*{
    font-weight: bold;
    color: var(--text-white);
}

.footerStoreRedirect>*:hover{
    color: var(--titles-white);
}

.footerStoreTitle{
    font-size: 1.5em;
    font-weight: bold;
    text-align: left;
    color: var(--titles-white);
    margin-bottom: 10px;
}

/*Socials*/
.footerSocials{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.footerSocialsContainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.footerSocialsItem{
    margin: 0 10px;
    filter: var(--navbar-buttons);
    transition: all 0.3s ease;
}
.footerSocialsItem:hover{
    scale: 1.1;
    transition: ease 0.3s all;
}

/*Mobile*/

@media (max-width: 768px) {
    .sideToSide{
        flex-direction: column;
        align-items: center;
    }
    
    .footerContent{
        width: 90%;
    }

    .footerStoreItem{
        margin-bottom: 20px;
    }
    
    .footerStoreLogo img{
        width: 150px;
        margin: auto;
    }
    
    .footerStoreTitle{
        font-size: 1.2em;
        text-align: center;
    }

    .footerStoreRedirect{
        flex-direction: column;
        align-items: center;
    }
}