/*!*******************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/blocks/jh-flip-cards/jh-flip-cards.scss ***!
  \*******************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,700;1,800&family=Poppins:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,700;1,800&family=Roboto:ital,wght@0,400;0,500;1,400;1,500&display=swap);
/*!***********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/blocks/jh-flip-cards/jh-flip-cards.scss (1) ***!
  \***********************************************************************************************************************************************/
/** Do not define variables outside of abstracts, if you find them breaking your build find the offender and move it into the abstracts folder **/
/**
 * Switch for palettes with a quartenary color.
 *
 * This must be included with the palette in order for the `with-extended-palette`
 * function to work properly.
 */
/**
 * Conditionally use colors based on whether the palette includes a quartenary value.
 *
 * @param {string} $if-has-4 The value to use if the palette has a quartenary color.
 * @param {string} $if-has-3 The value to use if the palette does not has a quartenary color.
 */
/**
 * Returns the calculation used for the full-width base.
 */
/**
 * Styles the overview banner gradient based on the supplied color and direction.
 *
 * @param string $direction The gradient direction (top, bottom, left, right).
 */
.mb-none {
  margin-bottom: 0 !important;
}

.mb-unit {
  margin-bottom: 1rem !important;
}

.mb-small {
  margin-bottom: 1rem !important;
}

.mb-medium {
  margin-bottom: 1.5rem !important;
}

.mb-large {
  margin-bottom: 2rem !important;
}

.mb-larger {
  margin-bottom: 2.875rem !important;
}

.mb-xlarge {
  margin-bottom: 4rem !important;
}

.mb-xxlarge {
  margin-bottom: 8rem !important;
}

/**
 * Adds focus ring outline.
 * https://remysharp.com/til/css/focus-ring-default-styles
 */
/**
 * Remove browser default button styles
 */
/**
 * Breakpoints
 */
/**
 * Vertical rhythm.
 *
 * @param {String} $spacing Vertical spacing value in pixels.
 */
/**
 * Returns the calculation used for the full-width base.
 */
/**
 * Styles the overview banner gradient based on the supplied color and direction.
 *
 * @param string $direction The gradient direction (top, bottom, left, right).
 */
/* Flip card animation. */
.flip-card {
  perspective: 1000px;
}

.flip-card__inner {
  display: flex;
  min-height: 100%;
  transform-style: preserve-3d;
  transition: 0.8s transform;
}
.flip-card:hover .flip-card__inner, .flip-card:focus .flip-card__inner {
  transform: rotateY(-180deg);
}

.flip-card__front,
.flip-card__back {
  backface-visibility: hidden;
  min-width: 100%;
}

.flip-card__back {
  transform: rotateY(-180deg) translate(100%, 0);
}

/* Flip card styles. */
.flip-card__front,
.flip-card__back {
  align-items: center;
  background-color: #FFFFFF;
  border-bottom: 5px solid var(--brand-color-primary);
  border-radius: 40px 40px 0px 0px;
  box-shadow: 0px 2px 8px 0px rgba(57, 61, 71, 0.6);
  color: #393D47;
  display: flex;
  flex-flow: column wrap;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  gap: 1rem;
  line-height: 1.62;
  min-height: 100%;
  padding: 2rem;
}
.flip-card__front p,
.flip-card__back p {
  margin-block: 0;
}

.flip-card__back {
  align-items: start;
}

.flip-card__image {
  margin: 0;
  max-width: 50%;
}
.flip-card__image img {
  display: block;
}

.flip-card__title {
  color: #393D47;
  font-family: "Poppins", sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.28;
  text-align: center;
}

.flip-card__icon {
  align-self: end;
  margin-top: auto;
}

/*# sourceMappingURL=jhFlipCardsBlock.css.map*/