/* --------------------------------  */

.footer {
  padding-bottom: 40px;
  position: relative;
  z-index:0;
}
.footer .center {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 10px;
  justify-content: center;
}
.footer .center p{
  font-size: 14px;
}
.footer .center img {
  width: fit-content;
  margin: auto;
  background: #e8eeec;
  padding: 0 10px;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  row-gap: 22px;
}
.footer .container::after {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
  height: 1px;
  background: #000000;
  z-index: -1;
}

.icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icons img {
  width: 35px;
}

.tearm {
  display: flex;
  flex-wrap: wrap;
}
.tearm li:nth-child(2) a {
  border-left: 2px solid;
  border-right: 2px solid;
}
.tearm a {
  line-height: 1;
  padding: 0 4px;
  font-size: 14px;
  display: inline-block;
}
.tearm a:hover {
  color: var(--color-primary);
}