/*
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-team-member__title {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: #1a242d;
}

@media only screen and (min-width: 992px) {
  .block-hero-team-member__title {
    font-size: 2.375rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-hero-team-member__title {
    font-size: 2.875rem;
  }
}

.block-hero-team-member__sub-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
}

@media only screen and (min-width: 992px) {
  .block-hero-team-member__sub-title {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-hero-team-member__sub-title {
    font-size: 1.75rem;
  }
}

.block-hero-team-member__bio {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #626262;
  margin-top: 1.875rem;
}

@media only screen and (min-width: 992px) {
  .block-hero-team-member__bio {
    margin-top: 2.5rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-hero-team-member__bio {
    font-size: 1.125rem;
    margin-top: 3.75rem;
  }
}

.block-hero-team-member__quote {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #1a242d;
  font-size: 1.25rem;
  margin-top: 1.25rem;
}

@media only screen and (min-width: 992px) {
  .block-hero-team-member__quote {
    font-size: 1.5rem;
    margin-top: 1.875rem;
  }
}

@media only screen and (min-width: 1400px) {
  .block-hero-team-member__quote {
    font-size: 1.75rem;
    margin-top: 3.75rem;
  }
}

.block-hero-team-member__logos {
  margin-top: 1.25rem;
}

.block-hero-team-member__logos img {
  max-height: 2.5rem;
  margin-right: 0.9375rem;
}

.block-hero-team-member__image {
  margin-top: 2.5rem;
}

@media only screen and (min-width: 992px) {
  .block-hero-team-member__image {
    margin-top: 0;
  }
}

.block-hero-team-member__navigation {
  display: inline-flex;
  justify-content: space-between;
  margin-top: 1.875rem;
  align-items: center;
  width: 80%;
}

.block-hero-team-member .glide__arrow {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
}

.block-hero-team-member .glide__arrow.disabled {
  cursor: not-allowed;
  opacity: 0.1;
  pointer-events: none;
}

/*# sourceMappingURL=block-hero-team-member.css.map */
