li{
    list-style-type: none;
}
.footer {
    background-image: linear-gradient(red, #8e3333, #d4a8a8);
    color: #fff;
    padding: 30px 0;
    width: 100%;
  }
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    padding: 0 50px;
  }
  .footer-column {
    flex: 1;
    min-width: 300px;
    margin-bottom: 20px;
  }
  .footer-column-form {
    flex: 1;
    max-width: 300px;
    margin-bottom: 20px;
  }
  .footer-heading {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .footer-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }
  .footer-input {
    width: 100%;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
  }
  .footer-button {
    cursor: pointer;
    font-size: 20px;
    border: none;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    margin-left: -50px;
  }
  .footer-column i {
    font-size: 2rem;
  }
  .address {
    display: flex;
    font-size: 16px;
    align-items: center;
    gap: 20px;
    color: #fff;
    margin-bottom: 20px;
  }
  .mail {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 16px;
  }
  .contact {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 16px;
  }
  .footer-links {
    display: flex;
  
    flex-direction: column;
    gap: 30px;
  }
  .footer-links li a {
    color: #fff;
    font-size: 16px;
  }
  .footer-form {
    display: flex;
    align-items: center;
  }
  .footer-heading-form {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
  }
  .footer-social {
    padding: 40px;
    height: fit-content;
    display: flex;
    color: #fff;
    justify-content: space-between;
    width: 462px;
    font-size: 1.5rem;
  }
  .footer-social a i {
    font-size: 2rem;
    color: #fff;
  }
  @media (max-width: 768px) {
    .heading {
      text-align: center;
    }
    .footer-social {
      width: 100%;
    }
    .footer-columns {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
    }
    .footer-links li {
      text-align: center;
    }
    .info-us {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .contact {
      margin-left: -70px;
    }
  }