/*
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-hero {
  background-color: #eee;
  position: relative;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.block-hero:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.block-hero .container {
  position: relative;
  z-index: 1;
}

.single-product .block-hero .e-button,
.brand-applied-acoustics .block-hero .e-button {
  box-shadow: 0px 0px 0px 2px #e46b00;
}

.brand-modulus .block-hero .e-button {
  box-shadow: 0px 0px 0px 2px #bf181a;
}

.single-product .block-hero .e-button:before,
.brand-applied-acoustics .block-hero .e-button:before {
  background-color: #e46b00;
}

.brand-modulus .block-hero .e-button:before {
  background-color: #bf181a;
}

.single-product .block-hero .e-breadcrumbs span span,
.brand-applied-acoustics .block-hero .e-breadcrumbs span span {
  color: #e46b00;
}

.brand-modulus .block-hero .e-breadcrumbs span span {
  color: #bf181a;
}

.block-hero .e-breadcrumbs span span .breadcrumb_last {
  color: #FFF;
}

.block-hero__inner {
  padding-top: 6.25rem;
  padding-bottom: 3.125rem;
  position: relative;
  z-index: 1;
}

.block-hero__buttons {
  margin-top: 2.5rem;
}

.block-hero__buttons span {
  color: #FFF;
}

.block-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center top;
}

.block-hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: #FFF;
  position: relative;
  font-size: 1.75rem;
  margin-top: 1.25rem;
}

@media only screen and (min-width: 992px) {
  .block-hero__title {
    font-size: 2.5rem;
  }
}

.block-hero__title:before {
  content: '';
  position: absolute;
  width: 5rem;
  height: 0.25rem;
  background-color: #06758c;
  top: -1.25rem;
  left: 0;
}

.single-product .block-hero__title:before,
.brand-applied-acoustics .block-hero__title:before {
  background-color: #e46b00;
}

.brand-modulus .block-hero__title:before {
  background-color: #bf181a;
}

.block-hero__copy {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #FFF;
}

@media only screen and (min-width: 992px) {
  .block-hero__copy {
    font-size: 1.125rem;
  }
}

.block-hero__scroll-link {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  z-index: 9;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  transition: all 0.3s ease-out;
  display: block;
  padding: 3.75rem;
}

.block-hero__scroll-link:hover {
  color: #FFF;
  text-decoration: none;
  bottom: 1.25rem;
}

.block-hero__scroll-link:before {
  content: '';
  width: 0.0625rem;
  height: 2.5rem;
  background-color: #FFF;
  position: absolute;
  top: calc(100% - 20px);
  left: 50%;
  transform: translateX(-50%);
}

.block-hero__scroll-link:after {
  content: '';
  width: 0.0625rem;
  height: 3.75rem;
  background-color: #06758c;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.single-product .block-hero__scroll-link:after,
.brand-applied-acoustics .block-hero__scroll-link:after {
  background-color: #e46b00;
}

.brand-modulus .block-hero__scroll-link:after {
  background-color: #bf181a;
}

.block-hero--full-height {
  height: auto;
}

@media only screen and (min-width: 1025px) {
  .block-hero--full-height {
    height: calc(100vh - 165px);
  }
}

.block-hero--full-height .block-hero__inner {
  padding-top: 6.25rem;
  padding-bottom: 3.125rem;
}

@media only screen and (min-width: 1025px) {
  .block-hero--full-height .block-hero__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/*# sourceMappingURL=block-hero.css.map */
