footer{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: var(--footer-height);
    padding: var(--page-spacing);
    background: var(--primary);
    background: linear-gradient(90deg, var(--primary) 5%, var(--secondary) 30%, var(--primary) 95%);
}
footer div.info{
    position: relative;
    display: flex;
    justify-content: space-between;
    width: auto;
}
footer div.info:first-of-type{
    align-items: center;
}
footer div.info a.logo{
    width: 5rem;
    margin-right: 5rem;
}
footer div.info a.logo img{
    width: 5rem;
    background: white;
    border-radius: 50%;
    padding: 2px;
}
footer div.info div.payment-methods{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 15rem;
}
footer div.info h4{
    width: 100%;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
    margin-bottom: .3rem;
}
footer div.info div.payment-methods h4{
    font-family: 'Simonetta-Regular';
    font-weight: 100;
    font-size: 1.43rem;
}
footer div.info div.payment-methods h4 b{
    font-family: 'Simonetta-Black';
    font-weight: 900;
}
footer div.info div.payment-methods a{
    text-decoration: none;
}
footer div.info div.payment-methods a svg{
    width: 3rem;
    border-radius: 50%;
}
footer div.info address{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-style: normal;
}
footer div.info address h4{
    font-family: 'Simonetta-Regular';
    font-weight: 100;
    font-size: 2.18rem;
}
footer div.info address h4 b{
    font-family: 'Simonetta-Black';
    font-weight: 900;
}
footer div.info address a{
    text-decoration: none;
    color:white;
    padding-left: 2rem;
    background-repeat: no-repeat;
    background-size: 1.3rem;
    background-position: center left;
    font-family: 'lora';
    font-size: 1.25rem;
    width: 100%;
}
footer div.info address a:first-of-type{
    background-image: url('../images/icons/mail.webp');
}
footer div.info address a:last-child{
    background-image: url('../images/icons/whatsapp-footer.svg');
}
footer div.info div.social{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: auto;
    margin-left: 2rem;
}
footer div.info div.social a{
    width: auto;
    height: 2.3rem;
}
footer div.info div.social a svg,
footer div.info div.social a img{
    height: 2rem;
}

@media only screen and (max-width: 768px) {
    footer,
    footer div.info,
    footer div.info:first-of-type{
        flex-direction:column;
        justify-content: space-between;
        align-items: center;
    }
    footer,
    footer div.info,
    footer div.info:first-of-type{
        height: auto;
    }
    footer div.info a.logo{
        margin:0 0 2rem 0;
    }
    footer div.info,
    footer div.info div.payment-methods,
    footer div.info address{
        width: 100%;
    }
    footer div.info div.payment-methods{
        justify-content: space-evenly;
    }
    footer div.info address{
        margin: 2rem 0;
    }
    footer div.info address a{
        margin:1rem 0;
        width: fit-content;
    }
    footer div.info div.social{
        width: 100%;
        flex-direction: row;
        justify-content: space-evenly;
        margin: 0;
    }
}