footer{
    display: flex;
    flex-direction: column;
}
.footer-curve{
    display: none;
}
.footer-separator{
    display: flex;
    width: 100%;
    position: relative;
    background-color: var(--wp--preset--color--gris);
    align-items: center;
    padding: 3rem 0 2rem;
}
.footer-line{
    display: flex;
    width: calc(50% - 77px);
    height: 2px;
    background-color: var(--wp--preset--color--rouge);
}
.footer-hola{
    display: none;
}
.footer-line:first-child{
    margin-right: 2rem;
}
.footer-line:nth-child(3){
    margin-left: 2rem;
    position: relative;
}
.footer-svg{
    display: flex;
    height: 150px;
    width: 200px;
    background: url(../img/svg/logo-visiter-barcelone.svg) no-repeat;
    background-size: contain;
}
.footer-links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--wp--preset--color--gris);
    padding-bottom: 0.5rem;
    color: var(--wp--preset--color--blanc);
    font-size: var(--wp--preset--font-size--s-text);
}
.footer-links div{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--wp--preset--color--gris);
    padding-bottom: 2rem;
    gap: 0.5rem;
    color: var(--wp--preset--color--blanc);
    font-size: var(--wp--preset--font-size--s-text);
}
.footer-links a{
    display: flex;
    align-items: center;
    color: var(--wp--preset--color--blanc);
    font-size: var(--wp--preset--font-size--s-text);
}
.footer-menu{
    background-color: var(--wp--preset--color--noir);
    color: var(--wp--preset--color--blanc);
    display: flex;
    justify-content: center;
    padding: 1rem;
    align-items: center;
}
.footer-menu ul{
    display: flex;
    align-items: center;
    margin: 0;
    gap: 0.5rem;
    padding-left: 0.5rem;
}
.footer-menu li {
    display: flex;
    align-items: center;
    color: var(--wp--preset--color--blanc);
    font-weight: 300;
    font-size: var(--wp--preset--font-size--s-text);
}
.footer-menu li:first-child {
    color: var(--wp--preset--color--blanc);
    font-weight: 300;
    font-size: var(--wp--preset--font-size--s-text);
}
.footer-menu li::after, .footer-links a::after {
    content: "•";
    color: var(--wp--preset--color--blanc);
    font-weight: 300;
    font-size: var(--wp--preset--font-size--l-text);
    padding-left: 0.5rem;
}
.footer-links a::after {
    content: "|";
    color: var(--wp--preset--color--blanc);
}
.footer-menu li:last-child::after, .footer-links a:last-child::after {
    content: " ";
}
.footer-menu-flag{
    font-size: var(--wp--preset--font-size--xs-text);
}
.footer-menu a span{
    color: var(--wp--preset--color--blanc);
}
/* LOADER */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--wp--preset--color--sable);
    z-index: 998;
    transition: all 0.3s ease-in-out;
}
#loader {
    width: 129px;
    height: 124px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/svg/logo-visiter-barcelone.svg) no-repeat;
}
.loader-flower{
    position: absolute;
    width: 510px;
    height: 510px;
    animation: spin 4s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/svg/flower-loader.svg) no-repeat;
    transition: all 0.5s ease-in-out;
}
@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (min-width: 821px) {
    .footer-curve{
        display: flex;
        background: url(../img/svg/curve-grey.svg) no-repeat;
        width: 100%;
        height: 163px;
        transform: translateY(3px);
        background-size: contain;
    }
    .footer-hola{
        display: none;
        display: flex;
        height: 96px;
        width: 121px;
        background: url(../img/svg/hola-rose.svg) no-repeat;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    .footer-svg{
        width: 154px;
    }
}