

#footer-outer {
  width: 100%;
  background-color: var(--dark);
  border-top: 2px solid black;
}

#footer {
  width: 70vw;
  margin: auto;
  color: var(--background);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
}

#payment-methods {
  display: flex;
  flex-direction: row;
  padding: 2em;
}

#payment-methods img {
  padding: 1em;
  width: 5em;
  height: 5em;
}

#socials-container {
  display: flex;
  flex-direction: column;
  text-align: center;
}

#socials {
  display: flex;
  flex-direction: row;
  padding: 2em;
}

.social-icon img {
  width: 2em;
  height: 2em;
  padding: 1em;
}

#footer-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

#footer-logo {
  width: 10em;
  object-fit: contain;
}

#footer-ks {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footer-links {
  padding: 0.2em;
  margin: 0;
}

#footer-top {
  font-size: 0.9rem;
}

#footer-links {
  margin-top: 0.5em;
}

#footer-links a {
  padding: 0 0.2em;
}

#footer-links a {
  color: var(--white);
  font-size: 0.9rem;
  padding: 1em;
  font-weight: bold;
  transition: 0.3s;
  opacity: 1;
}

#footer-links a:hover {
  opacity: 0.7;
}



@media only screen and (max-width: 1050px) {

  #footer {
    flex-direction: column;
    padding-top: 1em;
  }

  #footer-ks {
    flex-direction: row;
  }

  #footer-ks, #footer-wrap {
    width: 100%;
    justify-content: space-between;
  }

  #payment-methods, #socials {
    padding: 0;
  }

  #payment-methods img {
    padding: 1em 2em 1em 0;
  }

  .social-icon img {
    padding: 1em 0 1em 2em;
  }

  #footer-links a {
    padding: 1em 0 1em 2em;
    font-size: 1.2rem;
  }

  #footer-links a {
    padding: 0.5em;
  }

  #footer-links a:last-child {
    padding-right: 0;
  }

}

@media only screen and (max-width: 600px) {


  #footer-links {
    padding: 0;
    width: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
  }

  #footer-links a {
    padding: 0;
  }

  #footer {
    width: 80vw;
  }

  #footer-ks {
    flex-direction: column;
  }

  #footer-top {
    margin-bottom: 0.5em;
  }

}