.navigation-wrapper {
  display: contents;
}
 
.navigation-container1 {
  display: contents;
}
 
.navigation-container2 {
  display: none;
}
 
.navigation-container3 {
  display: contents;
}

.footer-wrapper {
  display: contents;
}
 
.footer-container1 {
  display: contents;
}
 
.footer-container2 {
  display: none;
}
 
.footer-container3 {
  display: contents;
}

.contact-container1 {
  width: 100%;
  display: block;
  min-height: 100vh;
}
 
.contact-thq-crm-checkbox-text-elm {
  color: var(--color-on-surface-secondary);
  font-size: var(--font-size-xs);
}
 
.contact-container2 {
  display: none;
}
 
.contact-container3 {
  display: contents;
}
 
.contact-container4 {
  display: none;
}
 
.contact-container5 {
  display: contents;
}
/* Mobile fix for contact form */

.contact-form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* 2 columns desktop */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* 1 column mobile */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    flex-direction: column;
    width: 100%;
  }
}
