/*
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-featured-case-study {
  background-color: #1a242d;
  color: #FFF;
}

.single-product .block-featured-case-study .e-button,
.brand-applied-acoustics .block-featured-case-study .e-button {
  box-shadow: 0px 0px 0px 2px #e46b00;
}

.brand-modulus .block-featured-case-study .e-button {
  box-shadow: 0px 0px 0px 2px #bf181a;
}

.single-product .block-featured-case-study .e-button:before,
.brand-applied-acoustics .block-featured-case-study .e-button:before {
  background-color: #e46b00;
}

.brand-modulus .block-featured-case-study .e-button:before {
  background-color: #bf181a;
}

.block-featured-case-study__heading {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  position: relative;
  color: #FFF;
  margin-bottom: 3.75rem;
  margin-top: 1.25rem;
}

@media only screen and (min-width: 992px) {
  .block-featured-case-study__heading {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-featured-case-study__heading {
    font-size: 2.25rem;
  }
}

.block-featured-case-study__heading:before {
  content: '';
  position: absolute;
  width: 5rem;
  height: 0.25rem;
  background-color: #FFF;
  top: -1.25rem;
  left: 0;
}

.block-featured-case-study__heading span {
  color: #06758c;
}

.single-product .block-featured-case-study__heading span,
.brand-applied-acoustics .block-featured-case-study__heading span {
  color: #e46b00;
}

.brand-modulus .block-featured-case-study__heading span {
  color: #bf181a;
}

.block-featured-case-study__image img {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  display: block;
}

@media only screen and (min-width: 992px) {
  .block-featured-case-study__image img {
    max-width: 100%;
  }
}

.block-featured-case-study__label {
  font-size: 0.875rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #06758c;
}

.single-product .block-featured-case-study__label,
.brand-applied-acoustics .block-featured-case-study__label {
  color: #e46b00;
}

.brand-modulus .block-featured-case-study__label {
  color: #bf181a;
}

@media only screen and (min-width: 992px) {
  .block-featured-case-study__label {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-featured-case-study__label {
    font-size: 1.125rem;
  }
}

.block-featured-case-study__lists {
  margin-top: 2.5rem;
}

@media only screen and (min-width: 992px) {
  .block-featured-case-study__lists {
    margin-top: 3.75rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-featured-case-study__lists {
    margin-top: 5rem;
  }
}

.block-featured-case-study__project-quote {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

@media only screen and (min-width: 992px) {
  .block-featured-case-study__project-quote {
    font-size: 1.25rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-featured-case-study__project-quote {
    font-size: 1.5rem;
  }
}

.block-featured-case-study__project-quote-details {
  font-size: 0.9375rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin-top: 1.5rem;
}

@media only screen and (min-width: 992px) {
  .block-featured-case-study__project-quote-details {
    font-size: 1.125rem;
    margin-top: 1.875rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-featured-case-study__project-quote-details {
    font-size: 1.375rem;
    margin-top: 2.5rem;
  }
}

.block-featured-case-study__list {
  padding: 0;
  list-style-type: none;
  margin-top: 1rem;
}

.block-featured-case-study__list li {
  position: relative;
  padding-left: 1.5625rem;
}

.block-featured-case-study__list li:before {
  content: '';
  width: 1rem;
  height: 0.125rem;
  background-color: #06758c;
  position: absolute;
  top: 0.8125rem;
  left: 0;
}

.single-product .block-featured-case-study__list li:before,
.brand-applied-acoustics .block-featured-case-study__list li:before {
  background-color: #e46b00;
}

.brand-modulus .block-featured-case-study__list li:before {
  background-color: #bf181a;
}

.block-featured-case-study__list li a {
  color: #FFF;
  transition: all 0.2s ease-out;
  font-size: 0.9375rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0.3125rem;
}

@media only screen and (min-width: 992px) {
  .block-featured-case-study__list li a {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-featured-case-study__list li a {
    font-size: 1.125rem;
  }
}

.block-featured-case-study__list li a:hover {
  color: #06758c;
  text-decoration: none;
}

.single-product .block-featured-case-study__list li a:hover,
.brand-applied-acoustics .block-featured-case-study__list li a:hover {
  color: #e46b00;
}

.brand-modulus .block-featured-case-study__list li a:hover {
  color: #bf181a;
}

.block-featured-case-study__project-name {
  color: #FFF;
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-bottom: 3.125rem;
}

@media only screen and (min-width: 992px) {
  .block-featured-case-study__project-name {
    font-size: 1.75rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-featured-case-study__project-name {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=block-featured-case-study.css.map */
