.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 6.5rem;
  padding-right: 6.5rem;
  background-color: #ffffff;
  color: #222222;
  height: auto;
  border-radius: 3rem 3rem 0rem 0rem;
  z-index: 999;
  box-shadow: 0px -19px 33px -45px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 0px -19px 33px -45px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px -19px 33px -45px rgba(0, 0, 0, 0.09);
}
.footer .wrap-content {
  display: flex;
  flex-direction: column;
  /* background-color: red; */
  width: 30%;
}
.footer .wrap-content p {
  font-size: 1rem;
  margin-bottom: -2px;
}
.footer .wrap-content p:nth-child(2) {
  font-size: 0.8rem;
  line-height: 12px;
  max-width: 300px;
}
.footer .wrap-content p:nth-child(2) a {
  text-decoration: none;
  color: #222222;
  opacity: 0.7;
}
.footer .wrap-content p:nth-child(2) a:hover {
  opacity: 1;
  color: rgba(172, 139, 54, 1);
  transition: all 400ms ease;
}
.footer .icon-footer {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .icon-footer img {
  margin-left: 1.5rem;
  width: 5rem;
  height: 5rem;
}
.footer ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  /* background-color: red; */
  width: 30%;
}
.footer ul li {
  list-style: none;
}
.footer ul li a {
  font-size: 1.2rem;
  transition: all 400ms ease;
}
.footer ul li a svg {
  width: 1.2rem;
  height: 1.2rem;
  opacity: 1;
}
.footer ul li a:hover svg {
  filter: invert(55%) sepia(70%) saturate(373%) hue-rotate(5deg) brightness(88%)
    contrast(93%);
  transition: all 400ms ease;
}
