.footer {
  height: 193px;
  background: #000000;
  box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.16);
}

.footer .responsive-container {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.footer .responsive-container .container {
  display: flex;
}

.footer-nav {
  display: flex;
  align-items: center;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer-nav ul li {
  color: #C6C6C6;
  display: flex;
  align-items: center;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #C6C6C6;
}

.footer-nav ul li:hover {
  cursor: pointer;
  text-decoration: underline;
  color: var(--primary-color);
}

.footer-nav ul li:not(:last-child)::after {
  content: '';
  height: 10px;
  display: block;
  border-right: 1px dashed #666666;
  margin: 0 22px;
}

.footer-nav::after {
  content: '';
  width: 1px;
  height: 103px;
  border-right: 1px dashed #C6C6C6;
}

.footer-nav,
.footer-contact {
  width: 50%;
}

.footer .container {
  width: 100%;
}

.footer-contact {
  position: relative;
  display: flex;
  justify-content: center;
}

.footer-contact img {
  margin-left: -85px;
  width: 85px;
  height: 85px;
}

.footer-contact .text1 {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #C6C6C6;
  margin-bottom: 13px;
}

.footer-contact .text2,
.footer-contact .text3,
.footer-contact .text4,
.footer-contact .text5 {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #C6C6C6;
  margin-bottom: 5px;
  white-space: nowrap;
}

.copyright {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  font-size: 10px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #999999;
}