/*
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-products-carousel {
  position: relative;
  overflow: hidden;
  background-color: #FFF;
}

.block-products-carousel .glide__slides {
  padding-top: 1.25rem;
}

.block-products-carousel .glide__slide {
  height: auto;
  opacity: 0.3;
  transition: opacity 0.3s ease-out;
  display: flex;
}

.block-products-carousel .glide__slide:hover {
  opacity: 1;
}

.block-products-carousel .glide__slide--active {
  opacity: 1;
}

.block-products-carousel__carousel {
  margin-top: 1.875rem;
  margin-bottom: 1.25rem;
}

@media only screen and (min-width: 992px) {
  .block-products-carousel__carousel {
    margin-top: 5rem;
    margin-bottom: 2.5rem;
  }
}

.block-products-carousel__carousel-card-wrap {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  flex: 0 0 calc(100% / 3);
}

.block-products-carousel__carousel-card {
  background-color: #F5F5F5;
  text-align: center;
  padding: 2.5rem 0.9375rem 1.25rem;
  display: block;
  position: relative;
  transition: all 0.3s ease-out;
  height: 100%;
  width: 100%;
}

.block-products-carousel__carousel-card:hover {
  text-decoration: none;
  box-shadow: 0px 0px 8px 0px rgba(98, 98, 98, 0.2);
  transform: translateY(-10px) !important;
  background-color: #FFF;
}

@media only screen and (min-width: 992px) {
  .block-products-carousel__carousel-card {
    padding: 2.5rem;
  }
}

.block-products-carousel__carousel-card-logo {
  margin-top: 1rem;
}

.block-products-carousel__carousel-card-logo img {
  max-height: 1.5rem;
}

@media only screen and (min-width: 992px) {
  .block-products-carousel__carousel-card-logo img {
    max-height: 2.5rem;
  }
}

.block-products-carousel__carousel-card-banner {
  background-color: #626262;
  color: #FFF;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.4375rem 0.9375rem;
}

.block-products-carousel__carousel-card-title {
  font-size: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-top: 1.875rem;
  color: #1a242d;
  line-height: 1.3;
}

@media only screen and (min-width: 992px) {
  .block-products-carousel__carousel-card-title {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-products-carousel__carousel-card-title {
    font-size: 1.125rem;
  }
}

.block-products-carousel__carousel-card-parent {
  font-size: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #626262;
  margin-top: 0.5rem;
}

@media only screen and (min-width: 992px) {
  .block-products-carousel__carousel-card-parent {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-products-carousel__carousel-card-parent {
    font-size: 1.125rem;
  }
}

.block-products-carousel__heading {
  font-size: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

@media only screen and (min-width: 992px) {
  .block-products-carousel__heading {
    font-size: 1.75rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-products-carousel__heading {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=block-products-carousel.css.map */
