.bg-footer {
  background: var(--bg-footer-light);
}

.bg-footer-dark {
  background: var(--bg-footer-dark);
}

.light * .button-d {    
  background: var(--bg-footer-light) !important;
  color: var(--text); 
}

.light * .button-d {
  background: var(--bg-footer-dark) !important;
  color: white;
}

.dark * { 
  background: var(--bg-footer-dark) !important;
  color: white !important; 
}

.dark * .button-d {
  background: white !important;
  color: var(--bg-footer-dark) !important;
}


.border-top {
  border-top: 1px solid var(--light-border);
}

.lower-footer-h {
  min-height: 4rem;
}

.footer-logo {
  width: 6rem;
}

.form-container-w {
  min-width: 30rem;
}

.mail-form {
  padding: 0.4rem 0.4rem 0.4rem 1.5rem;
  border-radius: 19px;
}

.footer-20-container {
  width: 18%;
}

@media screen and (max-width: 992px) {
  .footer-20-container {
    width: 45%;
  }

  .form-container-w {
    min-width: 100%;
  }
}

@media screen and (max-width: 786px) {
  .footer-20-container {
    width: 100%;
  }
}