footer {
  background-color: var(--primary-color);
  width: 100%;
  /* position: relative; */
  /* bottom: 0; */
}

.footer-container {
  max-width: var(--max-content-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #adadad;
}

.footer-container a {
  width: fit-content;
}
footer .brand-logo {
  display: flex;
  align-items: center;
  font-size: 1.25em;
  color: inherit;
  text-decoration: none;
}

footer .brand-logo span {
  color: rgb(219, 144, 3);
}

footer ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  width: fit-content;
}

footer ul li {
  font-size: 0.6rem;
}
footer a {
  color: inherit;
  text-decoration: none;
  padding: 1rem;
}

footer a:hover {
  color: #dad8d8;
}

.tc {
  display: flex;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.tc-logo {
  width: 3.8rem;
}
.img-tc-logo {
  width: 3.8rem;
}

.tc-text {
  font-size: 0.6rem;
  margin-left: 0.8rem;
  line-height: 1.6rem;
}

@media screen and (max-width: 684px) {
  .tc {
    flex-direction: column;
  }
  .tc-logo {
    margin: 0 auto;
  }
  .img-tc-logo {
    width: 3rem;
  }
  footer ul {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 640px) {
  .footer-container {
    flex-direction: column;
  }
  .tc-text {
    text-align: center;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 428px) {
  .form-wrap {
    padding: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 376px) {
  footer ul {
    flex-direction: column;
  }
  footer ul li {
    text-align: center;
    line-height: 1.8rem;
  }
}
