/*
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-content-strip {
  overflow: hidden;
  background-color: #ebebeb;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

@media only screen and (min-width: 992px) {
  .block-content-strip {
    background-color: transparent;
    height: calc(100vh - 165px);
  }
}

.block-content-strip__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  display: block;
}

.block-content-strip__content-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
}

@media only screen and (min-width: 992px) {
  .block-content-strip__content-overlay {
    width: 50%;
  }
}

.block-content-strip__content {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  padding-right: 0;
}

@media only screen and (min-width: 1025px) {
  .block-content-strip__content {
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
    padding-right: 9.375rem;
  }
}

.block-content-strip__heading {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  position: relative;
  margin-top: 1.25rem;
}

@media only screen and (min-width: 992px) {
  .block-content-strip__heading {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-content-strip__heading {
    font-size: 2.25rem;
  }
}

.block-content-strip__heading:before {
  content: '';
  position: absolute;
  width: 5rem;
  height: 0.25rem;
  background-color: #06758c;
  top: -1.25rem;
  left: 0;
}

.single-product .block-content-strip__heading:before,
.brand-applied-acoustics .block-content-strip__heading:before {
  background-color: #e46b00;
}

.brand-modulus .block-content-strip__heading:before {
  background-color: #bf181a;
}

.block-content-strip__heading span {
  color: #06758c;
}

.single-product .block-content-strip__heading span,
.brand-applied-acoustics .block-content-strip__heading span {
  color: #e46b00;
}

.brand-modulus .block-content-strip__heading span {
  color: #bf181a;
}

.block-content-strip__copy {
  margin-top: 2.5rem;
  font-size: 1rem;
  color: #626262;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.8;
}

@media only screen and (min-width: 1400px) {
  .block-content-strip__copy {
    font-size: 1.125rem;
  }
}

.block-content-strip__buttons {
  margin-top: 2.5rem;
}

.block-content-strip__image-wrap {
  border-radius: 50%;
  overflow: hidden;
  display: block;
}

.block-content-strip__image-wrap img {
  width: 100%;
}

@media only screen and (min-width: 992px) {
  .block-content-strip--reverse .block-content-strip__content-overlay {
    left: auto;
    right: 0;
  }
}

@media only screen and (min-width: 992px) {
  .block-content-strip--reverse .block-content-strip__content {
    padding-top: 12.5rem;
    padding-bottom: 12.5rem;
    padding-left: 6.25rem;
    padding-right: 0;
  }
}

/*# sourceMappingURL=block-content-strip.css.map */
