footer {
  background: url(../../images/footer-img/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;

  color: white;
  position: relative;
  isolation: isolate;

  display: flex;
  justify-content: center;
  align-items: center;

  min-width: 100%;
  padding: 1rem;
}


footer main {
  display: flex;
  flex-direction: column;

  row-gap: 1.5rem;
}

footer .nav-cont {
  display: none;
}

footer .copyRight {
  text-align: center;
  font-size: 14px;
}

footer .silver-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

footer .silver-container img {
  max-width: 10rem;
}

footer .silver {
  display: flex;
  align-items: center;
  gap: 2rem;
}


@media screen and (min-width: 990px){

  footer {
    padding: 0 1rem;
  }

  footer main {
    margin: 5rem 0 4rem;
  }

  footer .nav-cont {
    display: contents;
  }

  footer ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 4rem;
    row-gap: 1rem;
  }

  footer li {
    font-family: 'Good Times Rg';
    font-size: clamp(1.2rem, 1.2rem + 1vw , 1.6rem);
  }

}

@media screen and (min-width: 1920px){

  footer {
    padding: 0;
  }

  footer ul {
    column-gap: 5rem;
  }
}