/*
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-quote-carousel {
  background-color: #1a242d;
  position: relative;
}

.block-quote-carousel__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center top;
  background-color: #1a242d;
}

.block-quote-carousel__background img {
  opacity: 0.2;
}

.block-quote-carousel__quote-block {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}

@media only screen and (min-width: 992px) {
  .block-quote-carousel__quote-block {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-quote-carousel__quote-block {
    padding-left: 12.5rem;
    padding-right: 12.5rem;
  }
}

.block-quote-carousel__wrapper {
  margin-top: 2.5rem;
}

@media only screen and (min-width: 992px) {
  .block-quote-carousel__wrapper {
    margin-top: 3.75rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-quote-carousel__wrapper {
    margin-top: 5rem;
  }
}

.block-quote-carousel__title {
  color: #FFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
}

@media only screen and (min-width: 992px) {
  .block-quote-carousel__title {
    font-size: 2.375rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-quote-carousel__title {
    font-size: 2.5rem;
  }
}

.block-quote-carousel__main-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #FFF;
}

@media only screen and (min-width: 992px) {
  .block-quote-carousel__main-text {
    font-size: 1.25rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-quote-carousel__main-text {
    font-size: 1.75rem;
  }
}

.block-quote-carousel__sub-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #FFF;
  margin-top: 1.875rem;
}

@media only screen and (min-width: 992px) {
  .block-quote-carousel__sub-text {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-quote-carousel__sub-text {
    font-size: 1.125rem;
    margin-top: 3.75rem;
  }
}

.block-quote-carousel .glide__arrow--left {
  left: 0;
}

.block-quote-carousel .glide__arrow--right {
  right: 0;
}

/*# sourceMappingURL=block-quote-carousel.css.map */
