/* Form Styles */
form input[type='text'],
form input[type='email'],
form textarea,
select {
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
}

label {
  display: block;
  margin-bottom: 6px;
}

input[type='submit'] {
  background-color: #1e345d;
  color: #ffffff;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: var(--button-corner);
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  display: inline-block;
}

input[type='submit']:focus,
input[type='submit']:hover {
  background-color: #f38b00;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Salesforce Web-to-Lead Form Styles */
.salesforce-form-container {
  background-color: #e2ebf2;
  border-radius: 15px;
  padding: 40px;
}

.form-acknowledgement a {
  display: inline;
  text-decoration: underline;
}

.form-acknowledgement a:focus,
.form-acknowledgement a:hover {
  color: var(--links-hover-color);
  text-decoration: underline;
}

.form-acknowledgement label span {
  line-height: var(--body-line-height);
}

.form-field {
  margin-bottom: 15px;
}

@media only screen and (min-width: 1200px) {
  .form-columns-2 .form-field {
    width: 50%;
    float: left;
  }

  .form-columns-2 .form-field:first-child {
    padding-right: 20px;
  }
}

.form-required {
  color: red;
  font-size: smaller;
  vertical-align: super;
}

.actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.form-submit-button {
  background-color: #0082cb;
  color: #ffffff;
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: var(--button-corner);
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  display: inline-block;
}

.form-submit-button:focus,
.form-submit-button:hover {
  background-color: #f38b00;
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Layout & Spacing */
body.no-padding {
  margin: 0;
  padding: 0;
}

.embed-responsive img {
  width: 100%;
  margin: auto;
  display: block;
}

.no-border {
  border-width: 0px;
  border: 0px;
}

.logo-img {
  height: auto;
  width: 150px;
  border-width: 0px;
  border: 0px;
}

/* Typography */
.text-72 {
  font-size: 72px;
  text-align: center;
}

@media (max-width: 800px) {
  .text-72 {
    font-size: 48px;
  }
}

.text-48 {
  font-size: 48px;
}

.text-36 {
  font-size: 36px;
}

.text-30 {
  font-size: 30px;
}

.text-30-right {
  font-size: 30px;
  text-align: right;
}

.text-18 {
  font-size: 18px;
}

.text-16 {
  font-size: 16px;
}

/* Colors */
.text-white {
  color: #ffffff;
}

.text-primary-orange {
  color: #f38b00;
}

.text-primary-blue {
  color: #0082cb;
}

.text-secondary-blue {
  color: #27518c;
}

/* Width Utilities */
.width-500 {
  width: 500px;
}

.width-calc {
  width: calc(98% - 500px);
}

/* Flexbox & Alignment */
.inline-flex {
  display: inline-block;
  vertical-align: middle;
  fill: #f38b00;
}

/* Spacing with CSS Variables */
.spacing-margin-top {
  --margin-top: 25px;
  --margin-top-mobile: 25px;
}

.spacing-margin-bottom {
  --margin-bottom-mobile: 20px;
}

.spacing-margin-bottom-11 {
  --margin-bottom-mobile: 11px;
}

.spacing-hero {
  --padding-top: 28.2em;
  --padding-top-mobile: 30px;
  --padding-right-mobile: 30px;
  --padding-bottom: 5em;
  --padding-bottom-mobile: 30px;
  --padding-left-mobile: 30px;
  --margin-top: 300px;
  --margin-top-mobile: 200px;
}

.spacing-form {
  --margin-top: 33px;
}

.row-number-21 .spacing-form {
  --margin-top: 75px;
  margin-right: 0 !important;
}

@media (min-width: 1200px) {
  .spacing-form {
    margin-right: 100px;
  }
}

.vidyard-embed-centered {
  width: 100%;
  margin: auto;
  display: block;
}

h2 {
  line-height: 1.375em !important;
}

h3 {
  line-height: 1.154em !important;
}

#recaptcha-1,
#recaptcha-2 {
  margin: 30px 0;
}