/**
 * The breakpoint keys.
 * @var breakpoints
 * @since 1.0.0
 */
/**
 * The grid breakpoints.
 * @var grid
 * @since 1.0.0
 */
/**
 * Transition speed and curves.
 * @var transitions
 * @since 1.0.0
 */
/**
 * Colors
 */
/**
 * Returns a transition duration by name.
 * @function transition-duration
 * @since 1.0.0
 */
/**
 * Returns a transition equation by name.
 * @function transition-equation
 * @since 1.0.0
 */
/**
 * Converts a value to vw;
 * @function rvw
 * @sinc 1.0.0
 */
/**
 * Convenience method to output a calc css property that adds 2 numbers.
 * @function calc-add
 * @sinc 1.0.0
 */
/**
 * Convenience method to output a calc css property that substracts 2 numbers.
 * @function calc-add
 * @sinc 1.0.0
 */
/**
 * Convenience method to output a calc css property that multiplies 2 numbers.
 * @function calc-add
 * @sinc 1.0.0
 */
/**
 * Convenience method to output a calc a relative vw value.
 * @function calc-rvw
 * @sinc 1.0.0
 */
/**
 * Converts a photoshop tracking value to letter-spacing value.
 * @function tracking
 * @sinc 1.0.0
 */
/**
 * Indicates whether the number is a valig length;
 * @function is-valid-length
 * @since 1.0.0
 */
/**
 * Removes unit from value.
 * @function strip-unit
 * @since 1.0.0
 */
/**
 * Replaces a string.
 * @function replace
 * @since 1.0.0
 */
/**
 * Parses rvw units.
 * @function replace
 * @since 1.0.0
 */
/**
 * @function breakpoint-get
 * @since 1.0.0
 */
/**
 * @mixin media-breakpoint-up
 * @since 1.0.0
 */
/**
 * @mixin media-breakpoint-down
 * @since 1.0.0
 */
.block-promo-grid {
  margin-top: calc(45px + 50 * ((100vw - 376px) / 1544));
  margin-bottom: calc(45px + 50 * ((100vw - 376px) / 1544));
}
@media (min-width: 1920px) {
  .block-promo-grid {
    margin-top: 95px;
    margin-bottom: 95px;
  }
}
.block-promo-grid .promo-grid-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .block-promo-grid .promo-grid-wrapper {
    flex-direction: row;
  }
}
.block-promo-grid .promo-grid-item {
  flex: 0 0 100%;
  padding-left: calc(12px + 3 * ((100vw - 376px) / 1544));
  padding-right: calc(12px + 3 * ((100vw - 376px) / 1544));
  margin-bottom: calc(20px + 5 * ((100vw - 376px) / 1544));
}
@media (min-width: 768px) {
  .block-promo-grid .promo-grid-item {
    flex: 0 0 50%;
  }
}
.block-promo-grid .promo-grid-item .image .layer {
  max-width: 100%;
  width: auto;
}
@media (min-width: 768px) {
  .block-promo-grid .promo-grid-item .image .layer {
    width: 100%;
  }
}