.footer {
  max-width: 1600px;
  padding: 20px;
  border-radius: 12px;
  background: var(--secondary-bg-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__link-list {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer__link-list a {
  display: inline-block;
  padding: 9px 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}

.footer__link-list a:hover,
.footer__link-list a:active,
.footer__link-list a:focus {
  color: var(--primary-text-color);
}

.footer__languages-list {
  position: relative;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer__languages-item > a {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: var(--primary-bg-color);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-text-color);
  line-height: normal;
  transition: border-color var(--primary-transition);
}
.footer__languages-item > a img {
	border-radius:50%;
}

.footer__languages-item > a:hover,
.footer__languages-item > a:active,
.footer__languages-item > a:focus {
  border-color: var(--primary-text-color);
}

.footer__payment {
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer__bottom {
  width: 100%;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__age {
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 140px;
  background-color: #eb3d3a;
  padding: 8px;
  justify-content: center;
  align-items: center;
  color: var(--primary-text-color);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.footer__copy * {
  margin: 0;
}

.footer__copy {
  max-width: 323px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #6a6a9d;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.16;
}
