﻿.footer {
    /*background: linear-gradient(180deg, rgba(38,166,154,1) 0%, rgba(38,166,154,1) 40%, rgba(112,211,201,1) 70%);*/
    background-image: repeating-linear-gradient(140deg, rgba(0,0,0,0.03) 0px, rgba(0,0,0,0.03) 5px,transparent 10px, transparent 20px),linear-gradient(180deg, rgba(38,166,154,1) 10%, rgba(145,231,222,1) 70%, rgba(112,211,201,1) 80%);
    color: white;
    padding: 20px 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    border-top: 2px solid white;
}

.img-container-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.footer-subcontainer-sedes{
   display: flex;
   gap: 10px;
   align-items: center;
}

.footer-sedes-container{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-sedes{
    display:flex;
    flex-direction: column;
    gap:20px;
}

.vertical-divider {
    height: 100%;
    display: flex;
    align-items: center;
}

.esloganFooter {
    display: inline-block;
    font-weight: 900;
    background: linear-gradient(90deg, rgba(20,50,150,1), #26A69A, white);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}