.footer{
    background-color:var(--bg-header);
    width:100%;
    min-height:50px;
    margin:0 auto;
    z-index:30;
    padding:10px;
    position: relative;
}
.my--container-footer{z-index:40;position: relative;}
.my--container-footer p{
    font-size: 0.8rem;
    margin:0;
    text-align: center;
}

.footer-menu{
    margin:0; 
    padding:0; 
    font-size:0.8rem;
    z-index:40;
    text-align: center;
}
.footer-menu-item{
    list-style-type: none;
    display:inline-block;
    padding:0;
}

/*.cta-link-footer{border:#f00 solid 1px;margin:0;}*/
.cta-link-footer{
    color:#1D91D1; 
    position: relative;
    display: block;
    font-size: 0.80rem;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 1px;
    padding:5px;
}
.cta-link-footer::before{
    content: "";
/*    color:#F9EB1B;*/
    background-color: #20325f;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: width 0.4s ease-in-out;
}
.cta-link-footer:hover::before{width:100%;}
.cta-link-footer:hover{color:#F9EB1B;}

/*
.cta-bottoni{
    position: relative;
    display: inline-block;
    padding:10px;
    font-size: 0.80rem;
    font-weight:600;
    text-transform: uppercase;  
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 1px;  
    
    background-color:#1d91d1;
}
.cta-bottoni::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: width 0.4s ease-in-out;
    background-color:#f9eb1b;
}
.cta-bottoni:hover::before{width: 100%;}*/