/* Start custom CSS for contact, class: .elementor-element-c7fda53 *//* Form wrapper */
.cf7-custom-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Row */
.cf7-row {
  display: flex;
  gap: 16px;
}

/* Two columns */
.cf7-col {
  flex: 1;
}

/* Full width column */
.cf7-col-full {
  flex: 1;
}

/* All inputs, textarea */
.cf7-custom-form input[type="text"],
.cf7-custom-form input[type="email"],
.cf7-custom-form input[type="tel"],
.cf7-custom-form textarea {
  width: 100%;
  padding: 18px 16px;
  background-color: #f5f6f7;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  box-sizing: border-box;
  outline: none;
}

.cf7-custom-form textarea {
  height: 180px;
  resize: vertical;
}

/* Placeholder color */
.cf7-custom-form input::placeholder,
.cf7-custom-form textarea::placeholder {
  color: #9aa0a6;
}

/* Submit button */
.cf7-custom-form .wpcf7-submit {
  background-color: #1a56db;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: auto;
}

.cf7-custom-form .wpcf7-submit:hover {
  background-color: #1446b8;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .cf7-row {
    flex-direction: column;
  }
}/* End custom CSS */