/*
Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value. By default, the base pixel value used to calculate the rem value is taken from the `$global-font-size` variable.
@access private
@param {Number} $value - Pixel value to convert.
@param {Number} $base [null] - Base for pixel conversion.
@returns {Number} A number in rems, calculated based on the given value and the base pixel value. rem values are passed through as is.
*/
/*
Removes the unit (e.g. px, em, rem) from a value, returning the number only.
@param {Number} $num - Number to strip unit from.
@returns {Number} The same number, sans unit.
*/
/*
Converts one or more pixel values into matching rem values.
@param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses.

@param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base.

@returns {List} A list of converted values.
*/
.block-contact-form {
  background-color: #1a242d;
}

.block-contact-form__heading {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  position: relative;
  color: #FFF;
  margin-top: 1.25rem;
}

@media only screen and (min-width: 992px) {
  .block-contact-form__heading {
    font-size: 2.25rem;
  }
}

.block-contact-form__heading:before {
  content: '';
  position: absolute;
  width: 5rem;
  height: 0.25rem;
  background-color: #FFF;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.block-contact-form__heading span {
  color: #06758c;
}

.single-product .block-contact-form__heading span {
  color: #e46b00;
}

.block-contact-form__copy {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #FFF;
  margin-top: 1.875rem;
}

.block-contact-form__form {
  margin-top: 3.75rem;
}

.block-contact-form input[type=submit] {
  font-size: 0.9375rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #1a242d;
  transition: all 0.3s ease-out;
  border: 2px solid #06758c;
  border-radius: 3.125rem;
  padding: 0.625rem 1.25rem;
  display: inline-block;
  overflow: hidden;
  position: relative;
  margin-right: 0.625rem;
  transform: translateZ(0);
  background-color: transparent;
  color: #FFF;
}

.single-product .block-contact-form input[type=submit] {
  border: 2px solid #e46b00;
}

@media only screen and (min-width: 992px) {
  .block-contact-form input[type=submit] {
    margin-right: 1.25rem;
    font-size: 1.125rem;
    padding: 0.9375rem 1.875rem;
  }
}

.block-contact-form input[type=submit]:hover {
  background-color: #06758c;
}

.single-product .block-contact-form input[type=submit]:hover {
  background-color: #e46b00;
}

/*# sourceMappingURL=block-contact-form.css.map */
