.footer-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  height: fit-content;
}

.footer-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem;
  max-width: 320px;
}

.footer-icon img {
  height: 3rem;
}

.footer-icon-bold {
  font-weight: 500;
  font-size: 17px;
  text-align: center;
}

.footer-icon-light {
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  color: #888888;
}

.footer-wrapper {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  background: linear-gradient(270deg, #0f437a1c 0%, #0f437a07 100%) 0% 0%
    no-repeat padding-box;
}

.footer-logo {
  max-width: 100%;
  width: 70%;
  margin-bottom: 1.5rem;
}

.footer-column-title {
  color: #F59D24;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 18px;
}

.footer-column-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-under {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid #dadada;
}

.footer-under-col p {
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-under-col img {
  max-width: 100%;
}

.footer-under-social {
  display: flex;
  gap: 1rem;
}

.footer-under-social img {
  width: 2rem;
}

.footer-signature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.footer-newsletter-wrapper {
  background-size: cover;
  padding: 2rem;
  color: white;
}

.footer-newsletter-title {
  font-weight: 700;
  font-size: 30px;
  margin-top: 1rem;
}
.footer-newsletter-wrapper form {
  margin-top: 1rem;
}

.footer-newsletter-wrapper input {
  padding: 1rem 1rem;
  border-radius: 1rem;
  font-family: inherit;
}

.footer-newsletter-wrapper button {
  padding: 0.9rem 2rem;
  border-radius: 1rem;
  font-family: inherit;
}

.footer-newsletter-wrapper input[type="email"] {
  border: none;
  outline: none;
  margin-bottom: 0.5rem;
}

.footer-newsletter-wrapper input[type="checkbox"] {
  margin-right: 0.5rem;
}

.footer-newsletter-wrapper input::placeholder {
  color: #F59D24;
}
#contactForm input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 8px;
  display: inline-block;
  box-sizing: border-box;
  background-color: transparent;
  border-radius: 5px;
  box-shadow: 0 0 0 1.5px white;
  cursor: pointer;
  position: relative;
}

#contactForm input[type="checkbox"]:checked {
  background-color: white;
}
#contactForm input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid black;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.footer-newsletter-wrapper label {
  font-size: 15px;
  top: -3px;
  position: relative;
}

.footer-newsletter-wrapper.mobile {
    display: none;
}

@media screen and (min-width: 1024px) {
  .footer-icons {
    flex-direction: row;
    padding: 2rem calc((100% - 65%) / 2);
    margin-top: 3rem;
    margin-bottom: 3rem;
  }

  .footer-icon-seperator {
    align-self: stretch;
    width: 1px;
    background-color: #dadada;
  }

  .footer-wrapper {
    padding: 6rem calc((100% - 85%) / 2);
  }

  .footer-logo {
    width: 45%;
  }

  .footer-under {
    padding: 2rem calc((100% - 85%) / 2);
    flex-direction: row;
  }

  .footer-under-col.col-1 {
    width: 60%;
  }

  .footer-under-col.col-2 {
    width: 40%;
  }

  .footer-signature {
    padding: 2rem calc((100% - 85%) / 2);
  }

  .footer-newsletter-wrapper {
    padding: 6rem calc((100% - 80%) / 2) 6rem calc((100% - 40%) / 2);
  }

  .footer-newsletter-title {
    font-size: 36px;
  }

  .footer-newsletter-subtitle {
    font-size: 20px;
  }

  .footer-newsletter-wrapper input {
    font-size: 20px;
    border-radius: 0.5rem;
  }

  .footer-newsletter-wrapper button {
    font-size: 20px;
    border-radius: 0.5rem;
    margin-left: 30px;
  }

  .footer-newsletter-wrapper input[type="email"] {
    width: 60%;
  }

  .footer-newsletter-wrapper input[type="checkbox"] {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .footer-newsletter-title {
    font-size: 25px;
  }
  .footer-newsletter-wrapper {
    padding: 1.5rem;
    min-height: 130vw;
    text-align: center;
  }

  .footer-newsletter-wrapper.mobile {
    display: block;
  }

  .footer-newsletter-wrapper.desktop {
    display: none;
  }
  .footer-newsletter-wrapper button {
    margin-bottom: 20px;
  }
  .footer-icons {
    padding: 3rem 0;
  }
  .footer-wrapper {
    padding: 3rem 1rem;
  }
  .footer-under {
    padding: 2rem 1rem;
  }
}