.nuoman_about_contact {
  position: relative;
  padding: 5.875rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nuoman_about_contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1.25rem);
  z-index: 0;
}

.nuoman_about_contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  z-index: 0;
}

.nuoman_about_contact>.container {
  position: relative;
  z-index: 1;
}

.nuoman_about_contact .contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.nuoman_about_contact .contact-title {
  max-width: 68.75rem;
  color: #FFF;
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1475;
}

.nuoman_about_contact .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5625rem 0.75rem 0.625rem 1.25rem;
  color: #FFF;
  background: var(--color-primary, var(--primary-color));
  font-family: var(--font-family);
  font-size: var(--font-16);
  font-weight: 500;
  line-height: 1.219;
  transition: background 0.3s ease;
}

.nuoman_about_contact .contact-btn:hover {
  color: #FFF;
  background: var(--btn-hover);
}

.nuoman_about_contact .contact-btn svg {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
}