/*!**********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[4]!./theme/src/scss/page/about.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************************/
/*
 * WARN: THIS FILE SHOULD ONLY BE FILLED WITH SCSS-SPECIFIC VARIABLE OVERRIDES.
 *
 * This file will be imported for each page to help managing the styles. To help
 * make the styling slimmer, and lesser doubled styling for the same components,
 * actual CSSes should be imported only on the `_theme.scss` file only.
 */
/*
 * This specific file introduces new variable to the theme that are not actually
 * exists in the theme, such as new component and such.
 */
/*
 * Little context for the line height calculation. In the design spec, the line
 * height of each font is actually defined, this is why I, chez14, add the line
 * height to the this part as well.
 *
 * Since the unit that being used in the original design are in px, we need to
 * convert this to rem, to make it responsive. REM are actually defined in the
 * device settings, hence for people with visually challenged limitations, if
 * they set the font really big, our website's font big too.
 *
 * That being said, people said 1 rem usually set to 16px. Hence all pixels here
 * are calculated by dividing them to 16, then times 1rem to convert them to
 * rem.
 *
 * ==================================================
 *
 * Notes for "Why do you use Mixins". My reasoning is:
 * 1. There's a lot of pitfals for @extend that may cause alot of trouble. I.e.
 *    older browser support problem, source ordering problem, @extend chaining
 *    that causes problematic things, and more. Please check following
 *    StackOverflow discussion to learn more:
 *    https://stackoverflow.com/q/18008700.
 *
 * 2. By using Mixins, we can use the same stylesheets, and apply them to
 *    certain components, for example, the cards, without extending it.
 */
.our-team__prev-arrow, .our-team__next-arrow {
  color: #BDBBB4;
  font-size: 1.875rem;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateY(-50%);
  bottom: 50%;
  position: absolute;
}
.our-team__prev-arrow {
  left: 0;
}
.our-team__next-arrow {
  right: 0;
}
.our-team__item {
  text-align: center;
}
.our-team__item__details {
  padding-top: 1.5rem;
}
.our-team__item img {
  margin: 0px auto;
  max-width: 100%;
  height: auto;
}
.our-team__title {
  text-align: center;
  margin-bottom: 3.875rem;
}

.about-content .about-content__text-beside-image {
  margin-bottom: 3rem;
  overflow-x: hidden;
}
.about-content .about-content__text-beside-image .row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  --bs-gutter-y: 3rem;
}
.about-content .about-content__image-bridging {
  margin-bottom: 3rem;
  overflow-x: hidden;
}
.about-content .about-content__image-bridging .row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  --bs-gutter-y: 3rem;
}
.about-content--carousel {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.about-content--about-description h5 {
  margin-bottom: 3rem;
}
.about-content--text-beside-image .h3 {
  margin-bottom: 3rem;
}
