/* FOOTER */

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(16, 16, 16);
    height: 50px;
    margin-top: 1rem;
    color: var(--white);
    margin-bottom: 0;
}

.container-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 1rem;
    
    height: 100%;
    width: 1130px;
  }

.footer-right-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin: 0 0.5rem;
}
.footer-left-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0.5rem
}

footer h4 {
    margin: 2rem 1.5rem;
    color: white;
    margin: 1rem;
    font-size: 16px;
    font-weight: 500;
}

footer a {
    text-decoration: none;
    margin: 1rem;
}

@media (max-width: 1000px){

    .footer-right-container {
        
        display: none;
    }
}

@media (max-width: 600px){
    
    .footer-left-container {
       
        margin: 0 0.5rem;
    }
    footer h4 {
        color: white;
        margin: 0.3rem;
        font-size: 14px;
        font-weight: 500;
    }
}

@media (max-width: 400px){
    footer a {
        display: none;
    }
}



  @media (max-width: 1200px){
    .container-footer{
      width: 970px;
    }
  }
  
  @media (max-width: 990px){
    .container-footer{
      width: 750px;
    }
  }
  @media (max-width: 775px){
    .container-footer {
      width: 100%;
    }
  }