@charset "UTF-8";
/* global */
input:focus,
textarea:focus {
  outline: none !important;
  border-color: #F76C21 !important;
}

/* Request quote */
.pum-container {
  padding: 20px !important;
  border-radius: 8px !important;
  background: #fff;
  max-width: 550px !important;
}
.pum-container p label {
  font-size: 13px;
  font-weight: 600;
}
.pum-container p span {
  display: block;
  padding: 5px 0 0;
}

/* contact */
.contact-from .wpcf7 h3 {
  display: none;
}

/* From */
.wpcf7 h3 {
  padding-bottom: 20px;
}
.wpcf7 p {
  margin: 0;
}
.wpcf7 label {
  display: block;
  font-weight: 600;
  color: #242a56;
  font-size: 14px;
}
.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgb(125.2950819672, 134.3442622951, 200.7049180328);
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #F76C21;
  outline: none;
}
.wpcf7 textarea {
  resize: vertical;
  max-height: 120px;
}
.wpcf7 .wpcf7-submit {
  background: #242a56;
  color: #fff;
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}
.wpcf7 .wpcf7-submit:hover {
  background: #F76C21;
}
.wpcf7 .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 14px 18px !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: 2px solid #242a56;
  background: rgb(143.2704918033, 151.0655737705, 208.2295081967);
  color: #242a56;
  box-shadow: 0 6px 18px rgba(36, 42, 86, 0.1);
  animation: fadeIn 0.3s ease-in-out;
}
.wpcf7 .wpcf7-response-output::before {
  font-weight: bold;
  margin-right: 6px;
}
.wpcf7 {
  /* Error / Invalid */
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-color: #F76C21;
  background: rgb(254.4504347826, 244.9017391304, 239.7495652174);
  color: #242a56;
}
.wpcf7 form.invalid .wpcf7-response-output::before,
.wpcf7 form.unaccepted .wpcf7-response-output::before,
.wpcf7 form.failed .wpcf7-response-output::before {
  content: "⚠";
  color: #F76C21;
}
.wpcf7 {
  /* Success */
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #242a56;
  background: rgb(154.0557377049, 161.0983606557, 212.7442622951);
  color: #242a56;
}
.wpcf7 form.sent .wpcf7-response-output::before {
  content: "✔";
  color: #242a56;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=custom.css.map */
