#call-action {
    justify-content: center;
    align-items: center;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
    width: 100%;
    left: 0;
    height: 60px;
    background-color: #004586;
    position: fixed;
    bottom: 0;
    color: white;
    display: flex;
    font-size: 2rem;
    font-weight: 600;
    z-index: 20;
    text-decoration: none;
    display: flex;
  }

  #call-action a {
    text-decoration: none;
    color: white;
    font-size: 2rem;
    font-weight: 600;
  }
  
  #call-action img {
    height: 3rem;
  }
  
  #call-action:link { 
    text-decoration: none; 
  } 
  #call-action:visited { 
    text-decoration: none; 
  } 
  #call-action:hover { 
    text-decoration: none; 
  } 
  #call-action:active { 
    text-decoration: none; 
  }

  .footer-legal {
    display: block;
    margin: 0px 0 50px 0px;
    padding: 20px 10px;
    background-color: #004586;
    color: white;
    font-weight: 300;
    text-align: center;
  }
  
  #call-action-img-container {
    position: relative;
    display: inline;
  }
  
  .call-overlay {
    position: absolute;
    right: 0;
  }
  
  #call-overlay-1 {
    animation: ondes-1 3s ease infinite;
  }
  
  #call-overlay-2 {
    animation: ondes-2 3s ease infinite;
  }
  
  #call-overlay-3 {
    animation: ondes-3 3s ease infinite;
  }
  
  @keyframes ondes-1 {
    0%{
      opacity: 1;
    }
  
    33% {
      opacity: 1;
    }
  
    66% {
      opacity: 0;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  @keyframes ondes-2 {
    0%{
      opacity: 0;
    }
  
    33% {
      opacity: 0;
    }
  
    66% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  @keyframes ondes-3 {
    0%{
      opacity: 0;
    }
  
    33% {
      opacity: 0;
    }
  
    66% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }