/*
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-animated {
  position: relative;
  overflow: hidden;
  background-color: #FFF;
}

.block-content-strip-animated .container {
  position: relative;
  z-index: 99;
}

.block-content-strip-animated__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.block-content-strip-animated__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-animated__heading {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-content-strip-animated__heading {
    font-size: 2.25rem;
  }
}

.block-content-strip-animated__heading:before {
  content: '';
  position: absolute;
  width: 5rem;
  height: 0.25rem;
  background-color: #06758c;
  top: -1.25rem;
  left: 0;
}

.single-product .block-content-strip-animated__heading:before,
.brand-applied-acoustics .block-content-strip-animated__heading:before {
  background-color: #e46b00;
}

.brand-modulus .block-content-strip-animated__heading:before {
  background-color: #bf181a;
}

.block-content-strip-animated__heading span {
  color: #06758c;
}

.single-product .block-content-strip-animated__heading span,
.brand-applied-acoustics .block-content-strip-animated__heading span {
  color: #e46b00;
}

.brand-modulus .block-content-strip-animated__heading span {
  color: #bf181a;
}

.block-content-strip-animated__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-animated__copy {
    font-size: 1.125rem;
  }
}

.block-content-strip-animated__buttons {
  margin-top: 2.5rem;
}

.block-content-strip-animated__image-wrap {
  border-radius: 50%;
  padding-bottom: 80%;
  overflow: hidden;
  display: block;
  margin: 2.5rem auto 1.25rem;
  transform: translateZ(0);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  width: 80%;
}

@media only screen and (min-width: 768px) {
  .block-content-strip-animated__image-wrap {
    width: 50%;
    padding-bottom: 50%;
  }
}

@media only screen and (min-width: 992px) {
  .block-content-strip-animated__image-wrap {
    margin: 0;
    width: 100%;
    padding-bottom: 100%;
  }
}

.block-content-strip-animated__image-wrap img {
  width: 100%;
}

/*# sourceMappingURL=block-content-strip-animated.css.map */
