.product_form {
  padding: 68px 0 58px;
}
.product_form .nav {
  position: relative;
  z-index: 2;
}
.product_form .nav::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #f4f4f4;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.product_form .nav ul {
  display: flex;
}
.product_form .nav li {
  text-align: center;
  border: 1px solid #f4f4f4;
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #f4f4f4;
  color: #8c8c8c;
  font-size: 25px;
  font-weight: 500;
  min-width: 302px;
  padding: 15px;
}
.product_form .nav li.active {
  color: #232323;
  pointer-events: none;
  background-color: #fff;
}
.product_form .nav li:hover {
  color: #232323;
}
.product_form .intro {
  max-width: 904px;
  margin: 78px auto 0;
}
.product_form .intro h2 {
  font-size: 3rem;
  font-weight: 500;
}
.product_form .intro .desc {
  color: #2d2d2d;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 20px;
}
.product_form .items {
  margin-top: 94px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1rem;
}
.product_form .items .item {
  gap: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_form .items .item .icon {
  width: 76px;
  min-width: 76px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/icon-bg.svg) no-repeat center / contain;
}
.product_form .items .item .icon i {
  width: 60%;
  aspect-ratio: 1;
  background: no-repeat center / contain;
}
.product_form .items .item .info .title {
  font-size: 25px;
  font-weight: 500;
}
.product_form .items .item .info .desc {
  color: #2d2d2d;
  font-size: 17px;
}
.product_form .form {
  border-radius: 8px;
  background-color: #daeae5;
  margin-top: 3rem;
}
.product_form .form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 52px 5.078125% 42px;
  gap: 22px 0;
}
.product_form .form form span {
  width: 100%;
}
.product_form .form form .col2 {
  width: 48.347826%;
}
.product_form .form form .label {
  max-width: max-content;
  cursor: pointer;
  color: #383838;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.product_form .form form .label i {
  color: var(--subtheme_color);
}
.product_form .form form input,
.product_form .form form select,
.product_form .form form textarea {
  display: block;
  width: 100%;
  border: 2px solid transparent; 
  color: var(--title_color);
  font-size: 19px;
  transition: all 0.3s;
  padding: 14px 20px;
}
.product_form .form form input::placeholder,
.product_form .form form select::placeholder,
.product_form .form form textarea::placeholder {
  color: #afafad;
}
.product_form .form form input:focus,
.product_form .form form select:focus,
.product_form .form form textarea:focus {
  border-color: var(--theme_color);
}
.product_form .form form textarea {
  height: 134px;
}
.product_form .form form .btn {
  text-align: left;
  display: flex;
  max-width: max-content;
  min-width: 180px;
  padding: 17px 47px;
  margin-left: auto;
  margin-top: 8px;
  color: #fff;
  background: url(../img/arrow-line-r-w.svg) no-repeat right / contain;
  background-color: var(--theme_color);
  background-size: 21px;
  background-position-x: 77%;
}
div.wpcf7 .ajax-loader{
  background-repeat: no-repeat;
}
.product_form .form form .btn .label {
  color: #fff;
  font-size: 18px;
  margin: 0 auto;
}
.product_form .form form .btn input {
  display: none;
}