footer {
  background-color: #FFD1DC;
  margin: 0;
  padding: 50px 5%;
}

.footers {
  max-width: 1400px;
  margin: auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;

  align-items: start;
}

/* common column styling */
.navigation,
.support,
.social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.navigation h2,
.support h2,
.social h2 {
  font-family: "Oswald", sans-serif;
  color: #ff4d88;
  margin-bottom: 10px;
}

.navigation a,
.support a {
  text-decoration: none;
  color: #ff4d88;
  transition: 0.3s;
  font-family: "Roboto", sans-serif;
}

.navigation a:hover,
.support a:hover {
  color: black;
}

/* social icons */
.social-icons {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}

.social-icons a {
  font-size: 18px;
  color: #ff4d88;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  color: black;
  transform: scale(1.15);
}

/* Tablet */
@media (min-width: 769px) and (max-width: 992px) {
  .footers {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .contact-footer {
    align-items: right;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footers {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .navigation,
  .support,
  .social {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
  .contact-footer {
    align-items: center;
  }
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-footer h2 {
  font-family: "Oswald", sans-serif;
  color: #ff4d88;
}

.contact-footer form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-footer input,
.contact-footer textarea {
  padding: 10px;
  border: 2px solid #ff4d8895;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
}

.contact-footer textarea {
  min-height: 60px;
  resize: none;
}

.contact-footer a {
  background: #ff4d88;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  text-align: center;
  width: 50%;
  font-family: "Roboto", sans-serif;
}

.contact-footer a:hover {
  background: black;
}

@media (max-width: 768px){
  
}