/* [project]/src/styles/DesireTechSection.css [client] (css) */
.desire-tech-section {
  background-color: #000;
  border-top: 1px solid #54b24833;
  justify-content: center;
  width: 100%;
  padding: 80px 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.desire-tech-section:before {
  content: "";
  opacity: .1;
  z-index: 1;
  background-image: url("/img/discussionsection/discussion-banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.desire-tech-container {
  text-align: center;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  display: flex;
  position: relative;
}

.desire-tech-title, .desire-tech-title span {
  font-size: 42px;
  font-family: var(--font-heading);
  word-wrap: break-word;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.25;
}

.desire-tech-subtitle {
  font-size: 18px;
  font-family: var(--font-body);
  color: #fff;
  opacity: .9;
  box-sizing: border-box;
  width: 100%;
  max-width: 600px;
  margin-bottom: 45px;
  font-weight: 500;
  line-height: 1.6;
}

.desire-tech-btn {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 18px;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  border-radius: 50px;
  padding: 18px 55px;
  font-weight: 500;
  transition: all .3s;
}

.desire-tech-btn:hover {
  background-color: #46a13b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #54b24866;
}

.desire-tech-btn.white-btn {
  color: #54b248;
  background-color: #fff;
  align-items: center;
  gap: 12px;
  padding: 15px 45px;
  font-weight: 600;
  display: flex;
}

.desire-tech-btn.white-btn:hover {
  background-color: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #fff3;
}

@media (max-width: 768px) {
  .desire-tech-section {
    padding: 40px 0;
  }

  .desire-tech-container {
    box-sizing: border-box;
    width: 100%;
    padding: 0 20px;
  }

  .desire-tech-title {
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 26px !important;
  }

  .desire-tech-subtitle {
    margin-bottom: 30px;
    padding: 0 10px;
    font-size: 14px !important;
  }

  .desire-tech-btn {
    width: auto;
    min-width: 240px;
    padding: 12px 25px;
    font-size: 16px;
  }
}

/*# sourceMappingURL=src_styles_DesireTechSection_css_65f1660e._.single.css.map*/