.footer {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*max-width: 1280px;*/
  height: 150px;
  width: 50%;
  background: white;
  border-radius: 6px;
}
.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 20px;
}
.footer-row .footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}
.footer-col .links {
  /*margin-top: 10px;*/
  font-size: 12px;
}
.footer-col .links li {
  list-style: none;
  margin-bottom: 10px;
}
.footer-col .links li a {
  text-decoration: none;
  color: black;
}
.footer-col .links li a:hover {
  color: #EF0C73;
}
.footer-col p {
  margin: 20px 0;
  color: #bfbfbf;
  max-width: 300px;
}
@media (max-width: 768px) {
  .footer {
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 35%;
    border-radius: 0;
  }
  .footer .footer-row {
    padding: 20px;
    gap: 1rem;
  }
}