.footer {
  font-size: 16px;
  background-color: #D8BCEB; /*main*/
  padding-top: 62px;
  color: black; /*if dark main keep white, if light, go black*/
  width: 100%;
  box-sizing: border-box;
}

.footer__title {
  color: black; /*if dark main keep white, if light, go black*/
}

.footer__info {
  display: flex;
}

.footer__info>div {
  flex: 1;
}

.footer__title {
  margin-bottom: 15px;
  font-size: 20px;
}

.footer__info a {
  color: black; /*if dark main keep white, if light, go black*/
  text-decoration: none;
}

.footer__info a:hover {
  text-decoration: underline;
}

.footer__info p {
  margin: 6px 0;
}

.footer__space-top {
  padding-top: 10px;
}

.button-dark--footer {
  margin-top: 20px;
}

.footer table tr td {
  padding: 0 22px 10px 0;
}

.footer__logo {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  color: #191919; /*if dark main keep white, if light, go black*/
  text-decoration: none;
}

.footer__logo img {
  height: 34px;
  filter: brightness(0) invert(1); /*remove brightness to make purlple*/
}

.footer__copyright {
  padding-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;

}

.footer__copyright-text {
  font-size: 13px;
  opacity: 0.7;
}

.footer__icons-list ul {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 36px;
}

.footer__icons-list li {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  background: white; /*if dark main keep white, if light, go black*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__icon {
  display: block;
  height: 21px;
  width: 21px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  filter: brightness(0%); 
}



.footer__icon.footer__icon--facebook {
  background-image: url('../images/facebook.png');
}

.footer__icon.footer__icon--instagram {
  background-image: url('../images/instagram.png');
}

.footer__icon.footer__icon--twitter {
  background-image: url('../images/twitter.png');
}

.footer__icon.footer__icon--tiktok {
  background-image: url('../images/tiktok.png');
}

.footer__icon.footer__icon--web {
  background-image: url('../images/web.png');
}

.footer__separator {
  background-color: black;
  width: 100%;
  height: 1px;
  margin: 50px 0 30px 0;
  opacity: 0.2;
}

@media screen and (max-width: 1024px) {
  .footer__info {
    flex-wrap: wrap;
  }

  .footer__info>div {
    flex: auto;
  }
}

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

  .footer {
    padding-top: 35px;
  }

  .footer__info {
    flex-direction: column;
  }

  .footer__title {
    margin-bottom: 22px;
  }

  .footer__info>div {
    margin-bottom: 30px;
  }

  .footer__separator {
    margin: 0 0 30px 0;
  }

  .footer__copyright {
    flex-direction: column;
  }

  .footer__copyright-text {
    line-height: 20px;
    margin-top: 15px;
  }
}