.nandco-contact-form .gap-30 {
  gap: 30px;
}
@media (max-width: 768px) {
  .nandco-contact-form .mb-gap-0 {
    gap: 0px !important;
  }
}
.nandco-contact-form .nandco-row {
  display: flex;
  margin-bottom: 12px;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .nandco-contact-form .nandco-row {
    flex-wrap: wrap;
  }
}
.nandco-contact-form .nandco-col {
  margin-bottom: 10px;
}
.nandco-contact-form .w-50 {
  width: 50%;
}
.nandco-contact-form .w-100 {
  width: 100%;
}
@media (max-width: 768px) {
  .nandco-contact-form .mb-100 {
    width: 100% !important;
  }
}
.nandco-contact-form label {
  background-color: rgba(0, 0, 0, 0);
  color: rgb(255, 255, 255);
  cursor: default;
  display: block;
  font-family: "Poppins", sans-serif; /* Simplified font stack */
  font-size: 16px;
  font-weight: 400;
  height: 16px;
  line-height: 16px;
  margin-bottom: 8px;
  padding-right: 20px;
  width: 300px;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}
.nandco-contact-form input[type=submit] {
  align-items: center;
  appearance: auto;
  background-color: rgb(255, 255, 255);
  border-radius: 50px 50px 50px 50px;
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  cursor: pointer;
  display: flex;
  font-family: "Poppins", sans-serif; /* Added fallback font */
  font-size: 14px;
  font-weight: 400;
  justify-content: center;
  padding: 18px 40px;
  text-align: start;
  transition: border-color 0.4s ease, background-color 0.4s ease;
  -webkit-font-smoothing: antialiased;
  pointer-events: auto;
  touch-action: manipulation;
  margin-top: 20px;
}
.nandco-contact-form input:not([type=submit]) {
  appearance: none;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(232, 230, 230);
  border-radius: 8px;
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  cursor: text;
  display: inline-block;
  height: 55px;
  line-height: 19.6px;
  margin: 0;
  padding: 3px 3px 3px 22px;
  text-overflow: ellipsis;
}
.nandco-contact-form select {
  align-items: center;
  appearance: none;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(232, 230, 230);
  border-radius: 8px;
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  cursor: pointer;
  display: block;
  font-family: "Poppins", sans-serif; /* Simplified font stack */
  font-size: 14px;
  font-weight: 400;
  height: 55px;
  line-height: 19.6px;
  max-width: 100%;
  min-height: 55px;
  min-width: 100%;
  overflow-x: visible;
  overflow-y: visible;
  padding-inline-end: 48px;
  padding-inline-start: 22px;
  pointer-events: auto;
  position: relative;
  text-align: start;
  text-overflow: ellipsis;
  -webkit-font-smoothing: antialiased;
}
.nandco-contact-form textarea {
  appearance: none;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(232, 230, 230);
  border-radius: 8px;
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  cursor: text;
  display: block;
  font-family: "Poppins", sans-serif; /* Simplified font stack */
  font-size: 14px;
  font-weight: 400;
  height: 108px;
  line-height: 19.6px;
  max-width: 100%;
  min-width: 100%;
  overflow-y: auto;
  padding: 10.5px 10px 3px 16px;
  resize: none;
  word-spacing: 0px;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background: transparent;
  border: none;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  gap: 8px;
  position: relative;
}
.hamburger-icon > span:nth-child(2) {
  width: 75%;
}
@media (max-width: 768px) {
  .hamburger-icon > span:nth-child(2) {
    width: 100%;
  }
}
.hamburger-icon span {
  display: block;
  height: 3px;
  background-color: #4682b4;
  border-radius: 5px;
  transition: all 0.3s;
  width: 100%;
}
.hamburger-icon:hover span {
  background-color: #000;
}

#primary-nav-container {
  position: fixed;
  top: 0;
  right: -460px;
  height: 100vh;
  width: 460px;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}
#primary-nav-container .modal-close {
  width: 100%;
  height: 24px;
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
#primary-nav-container .modal-close svg {
  cursor: pointer;
}
@media (max-width: 768px) {
  #primary-nav-container {
    right: -100%;
    width: 100%;
  }
}
#primary-nav-container ul {
  list-style: none;
  padding: 40px;
  margin: 0px;
}
#primary-nav-container ul li {
  margin-bottom: 20px;
}
#primary-nav-container ul li a {
  text-decoration: none;
  color: #333;
  font-size: 24px;
  font-weight: 500;
  transition: color 0.3s;
  font-family: "Poppins";
}
#primary-nav-container ul li a:hover {
  color: #000;
}

.menu-open #primary-nav-container {
  right: 0;
}

#menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 130, 180, 0.7);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-open #primary-nav-container {
  right: 0;
}

.menu-open #menu-overlay {
  display: block;
  opacity: 1;
}

ul.nandco-footer-menu {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0px;
  margin: 0px;
}
ul.nandco-footer-menu li {
  padding: 10px;
}
@media (max-width: 768px) {
  ul.nandco-footer-menu li {
    width: 100%;
  }
}
ul.nandco-footer-menu li a {
  text-decoration: none !important;
  background-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  color: rgb(0, 0, 0);
  cursor: pointer;
  direction: ltr;
  display: block;
  font-family: "Poppins", sans-serif; /* Simplified font stack */
  font-size: 16px;
  font-weight: 600;
  height: 25px;
  list-style: none; /* Combined list-style properties */
  margin: 0;
  outline: none;
  padding: 0;
  pointer-events: auto;
  text-align: left;
  transition: all 0s ease; /* Combined transition properties */
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
}

.wpcf7 .wpcf7-not-valid-tip, div.wpcf7-response-output {
  color: #fff !important;
}

.wpcf7-spinner {
  margin-top: 20px;
}

.vc-contact-us {
  transform: rotate(270deg);
}
@media (max-width: 768px) {
  .vc-contact-us {
    display: none !important;
  }
}

#ast-scroll-top {
  background: white;
  border-radius: 50%;
  padding: 24px;
  color: black;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
#ast-scroll-top span.ast-icon {
  font-size: 24px !important;
}

.nandco-lm-container {
  position: absolute !important;
  bottom: 100px !important;
}

.nandco-content-container {
  position: absolute !important;
  top: 100px !important;
}

/*# sourceMappingURL=softound-customizations-public.css.map */
